From the df man page:
This version of df cannot show the space
available on unmounted filesystems, because on most kinds
of systems doing so requires very nonportable intimate
knowledge of filesystem structures.
To see your partitions, use the command "fdisk -l /dev/hdb"
To mount the FAT32 partitions, use this command (as root):
mount /dev/hdbx /any/existing/folder -t vfat
x is the partition number that you'll see when you run fdisk.
To mount without being root or to mount automatically on startup you add entries in the /etc/fstab file:
/dev/hdbx /any/existin/folder vfat user,umask=0 0 0
The user option is to allow users to mount, umask=0 sets permissions for Windows partitions since thay don't support it.
|