To mount a partition on a drive, you need a mount point (i.e. a directory to mount it to). I'd suggest putting it in /mnt. Su to root, and create the mount point: mkdir /mnt/hdb1 (or whatever you want to call it).
To mount that partition: mount /dev/hdb1 /mnt/hdb1. That says mount the device (partition) at this mount point. Then you can use your file manager to browse the files on that partition.
Add that mount point to /etc/fstab: <device> <mount> <filesystem type) <options): such as: /dev/hdb1 /mnt/hdb1 ext2 defaults 1 1. Then you can mount it simply with: mount /dev/hdb1 (system knows from fstab where to mount it), or mount /mnt/hdb1 (system knows from fstab which device to mount).
PS: you need a mount point for each partition. If there's only one partition on a drive, one mount point will do. If there are 5 partitions on the drive, you need 5 mount points.
Last edited by bigrigdriver; 04-21-2006 at 11:32 PM.
|