Juanito
Group: Members
Posts: 1601
Joined: Sep. 2005 |
|
Posted: Aug. 30 2008,05:56 |
|
...and if you did want to mount the four partitions, you could do something like this:Code Sample | $ sudo mkdir /mnt/sda1 $ sudo mkdir /mnt/sda2 $ sudo mkdir /mnt/sda3 $ sudo mkdir /mnt/sda4 $ sudo mount -t vfat /dev/sda1 /mnt/sda1 $ sudo mount -t vfat /dev/sda2 /mnt/sda2 $ sudo mount -t vfat /dev/sda3 /mnt/sda3 $ sudo mount -t vfat /dev/sda4 /mnt/sda4 |
Note that the "vfat" part assumes your partitions are formatted fat, if they are formatted ext2, you would use "ext2" in place of "vfat"
|