Sponsored Content
Full Discussion: Is UNIX hardware sensitive?
Top Forums UNIX for Dummies Questions & Answers Is UNIX hardware sensitive? Post 87556 by Neo on Tuesday 25th of October 2005 01:52:02 PM
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
 

10 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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

5. 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

6. 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

7. 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

8. 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

9. 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

10. 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
HD(4)							     Linux Programmer's Manual							     HD(4)

NAME
hd - MFM/IDE hard disk devices DESCRIPTION
The hd* devices are block devices to access MFM/IDE hard disk drives in raw mode. The master drive on the primary IDE controller (major device number 3) is hda; the slave drive is hdb. The master drive of the second controller (major device number 22) is hdc and the slave hdd. General IDE block device names have the form hdX, or hdXP, where X is a letter denoting the physical drive, and P is a number denoting the partition on that physical drive. The first form, hdX, is used to address the whole drive. Partition numbers are assigned in the order the partitions are discovered, and only nonempty, nonextended partitions get a number. However, partition numbers 1-4 are given to the four partitions described in the MBR (the "primary" partitions), regardless of whether they are unused or extended. Thus, the first logi- cal partition will be hdX5. Both DOS-type partitioning and BSD-disklabel partitioning are supported. You can have at most 63 partitions on an IDE disk. For example, /dev/hda refers to all of the first IDE drive in the system; and /dev/hdb3 refers to the third DOS "primary" partition on the second one. They are typically created by: mknod -m 660 /dev/hda b 3 0 mknod -m 660 /dev/hda1 b 3 1 mknod -m 660 /dev/hda2 b 3 2 ... mknod -m 660 /dev/hda8 b 3 8 mknod -m 660 /dev/hdb b 3 64 mknod -m 660 /dev/hdb1 b 3 65 mknod -m 660 /dev/hdb2 b 3 66 ... mknod -m 660 /dev/hdb8 b 3 72 chown root:disk /dev/hd* FILES
/dev/hd* SEE ALSO
chown(1), mknod(1), sd(4), mount(8) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 1992-12-17 HD(4)
All times are GMT -4. The time now is 07:58 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy