The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
Google UNIX.COM



View Single Post in UNIX Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 10-23-2006
Corona688 Corona688 is offline
Registered User
 

Join Date: Aug 2005
Location: Saskatchewan
Posts: 923
In UNIX, filesystems don't appear on drive letters, they appear in device files. /dev/hda1 might be the first partition of the first IDE drive, for example. These device files are attached to directories on the directory tree with the 'mount' command, usually according to /etc/fstab. The root directory itself, /, is mounted when the kernel boots.

So there's the root partition, which contains files and directories, and filesystems that you can mount upon directories in the root partition.

You can see what partitions are mounted on what directories with df
Reply With Quote