Is UNIX hardware sensitive?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Is UNIX hardware sensitive?
# 1  
Old 10-24-2005
Is UNIX hardware sensitive?

Our server at work is a UNIX SCO system. The motherboard in the server went bad, and since the machine (IBM 300GL) is outdated, the PC repair place can't get a part to fix it. They told us that we can have our hard drive (we need to save the data) moved to a new machine, but they are unsure if moving the hard drive will cause it to crash, like Windows XP does.

Does anyone know if the hard drive will crash if it is moved, or will it be safe?

Thanks
# 2  
Old 10-25-2005
It is highly unlikely putting that hard drive in a new system will allow it to boot properly. The drivers and devices would be all messed up.

Your best bet is to install the same version of Unix on a different system, then attach your hard drive from the dead machine as a 2nd hard drive. That will allow you to copy the data off of it.

I've never used SCO Unix before so I don't know the exact steps. I'm sure your PC repair place won't know it either. You are probably in a situation where you need to hire a consultant with SCO experience for a day or two to set up the new server and copy your data over.

One other possibility is if you have a recent backup tape of that hard drive you could just build a new SCO server and restore your data from the backup. But from the info in your post it sounds like you probably don't have a backup tape to do that.
# 3  
Old 10-25-2005
You can build a Linux kernel, I'm pretty sure, that will support the SCO file system.

Also, see this web discussion.

Quote:
For now you can do the following:
simply create a SCO filesystem on a raw partition manually, Linux will be
able to mount that filesystem, and so will SCO.

"mdev hd" is a script that runs fdisk, then divvy, then mkfs (among other
things)

The easiest way to go would be to run mkdev hd to add a new hard drive,
(this creates the /dev/hdxxx device files for you) then determine the
device name for your new raw partition (or whole drive for that metter,
you actually do not need any partitions at all, not even one that takes up
the whole drive)

then dd if=/dev/zero of=/dev/hd10 (for whole 2nd ide drive for instance)
then mkfs -f HTFS /dev/hd10
then mkdir /d2
then mount -f HTFS /dev/hd10 /d2
then to copy your "u" filesystem,
cd /u; tar cf - . | (cd /d2 ;tar xf -)
then in Linux:
mkdir /d2
modprobe sysv
mount -t sysv /dev/hdb /d2

Note: if Linux can't read the HTFS filesystem, you may need to try
substituting one of the following until it works. I know for a fact Linux
reads Xenix just fine, but Xenix fs has yucky limitations like 14
character name length

AFS Acer Fast Filesystem
DTFS Desktop Filesystem
EAFS Extended Acer Fast Filesystem
HTFS High Throughput Filesystem
S51KB AT&T UNIX(R) System V 1KB Filesystem
XENIX XENIX(R) filesystem
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Unix : hardware to learn

Hello, As many people, i learned Windows & Linux on x86 hardware. But i'd like to learn on my own, Unix. Unlike Linux, it seems impossible to take any hardware and install, on the fly, any Unix OS. So, i'd like to know : how could someone learn by himself Unix ? Share your... (11 Replies)
Discussion started by: XZed
11 Replies

2. HP-UX

Hardware RAID in HP Unix rp3440

Hi Gurus, Can anyone tell me the Hardware RAID configuration in HP Unix rp3440 model server containing HP UX B.11.11 OS version. Thanks in Advance. BR, Prasanth (3 Replies)
Discussion started by: prasanth438
3 Replies

3. Shell Programming and Scripting

Hardware and Software Configuration in UNIX..

Hi, Anybody please let me know the command to find the Hardware and Software components used in any HP-UNIX or Sun Solaris UNIX server ? I need to get all the configuration of the UNIX server. Thanks, Rohit.. (1 Reply)
Discussion started by: ronix007
1 Replies

4. UNIX for Advanced & Expert Users

UNIX distribution for hardware checking

Hello, does anyone knows about any distribution that can make (or provides the tools) all kind of hardware tests? Tests like I/O, CPU execution, RAM, etc... Any kind of "tools" that does this via a Linux Live-CD would be appreciated as well. Thanks a lot. (1 Reply)
Discussion started by: Zarnick
1 Replies

5. HP-UX

HP-Unix Hardware benchmarking

Hi everyone, I'm working on one HP-Unix application which we have to port completely onto Windows xp. Before that I have to compare performance of two different machines. My HP-Unix is running on HP-C8000 workstation and windows XP machine is intel Xeon. Now the problem is to evaluate the... (0 Replies)
Discussion started by: dgatkal
0 Replies

6. UNIX for Advanced & Expert Users

How do I view my hardware specs in my unix machine ?

I am trying to view the hardware specifications through ssh (4 Replies)
Discussion started by: kfir
4 Replies

7. UNIX for Dummies Questions & Answers

Hardware for UNIX/Free BSD

Hi! I'm planning to start to set up a Webserver. All software has to be freeware. I'm also planning to use Free BSD/UNIX for this project. Apache as Webserversystem and so on... Therefor I would like to have some info about what kind of hardware I need. I'm planning to buy a computer... (9 Replies)
Discussion started by: kargooliw
9 Replies

8. AIX

AIX and SUN unix commands for hardware monitoring

Hello again, I would like to know if the following commands: diag, errpt, lscfg, lspv, lsvg, lsps, lslv for AIX and prtdiag, psrinfo, sysdef for SUN are native to these systems or if they are in fact scripts that are added after the unix installation. Thank you in advance. Have a nice day (4 Replies)
Discussion started by: VeroL
4 Replies

9. UNIX for Dummies Questions & Answers

Unix user ID's case-sensitive?

It has been quite a while since I used UNIX. I am developing a security system and I was wondering if UNIX and/or LINUX user ID's are case-sensitive. i.e. can user 'daveb' and 'Daveb' exist on the same system with completely different authorizations/priorities, etc.? (3 Replies)
Discussion started by: dmilleville
3 Replies

10. UNIX for Dummies Questions & Answers

UNIX Hardware Recommendations pls

Hello, I'm a Computer Engineering student at Portland State University and am seriously trying to broaden my horizons in UNIX. My goal is to eventually become an excellent sys admin, but alas...I'm just starting off on this path. I am relatively new (though not unexposed) to UNIX and... (2 Replies)
Discussion started by: Cyron5
2 Replies
Login or Register to Ask a Question