TyphoonMentat
Group: Members
Posts: 183
Joined: Oct. 2003 |
|
Posted: Feb. 12 2004,19:33 |
|
Linux has an entirely different system to that of Windows. All hard drives (well, technically hard drive partitions) are referred to with the syntax /dev/hdxY, where x is the letter for the hard drive (e.g. your first hard drive is a, so it's /dev/hda), and Y is the number of the partition (a little more complicated, but generally it goes 1,2,5,6). You access them by "mounting" them in Linux, which essentially links one of the hard drives to a directory. For instance, to mount my first hard drive's first partition, I'd type: mount /dev/hda1 /mnt/hda1
If you want to learn more, see these: http://www.linux-mag.com/2000-11/newbies_01.html
http://www.justlinux.com/nhf....es.html
|