Results 1 to 6 of 6
Just partitioned my HDD and installed Mandrake. 1st experince w/ Linux, very excited w/ installation success. Winxp partition is FAT32, Linux partition is native Linux. Can see FAT32 network drives, ...
- 09-08-2007 #1Just Joined!
- Join Date
- Sep 2007
- Posts
- 4
File system access
Just partitioned my HDD and installed Mandrake. 1st experince w/ Linux, very excited w/ installation success. Winxp partition is FAT32, Linux partition is native Linux. Can see FAT32 network drives, can see USB FAT32's but can't seem to find the FAT32 partition that resides on the same HDD w/ Linux. I'm sure I'm missing something obvious... How can I navigate to this partition?
- 09-08-2007 #2Linux User
- Join Date
- Jan 2007
- Location
- cleveland
- Posts
- 452
welcome to the forum
first, to find the name of the partition:
fdisk /dev/hda
p
q
or if you use scsi, it'll be sda;
suppose the partition is /dev/hda1--
then mount it somewhere:
mount -t vfat /dev/hda1 /mnt
cd /mnt
most of this has to be done as rootthe sun is new every day (heraclitus)
- 09-08-2007 #3
post the output of
as root and alsoCode:fdisk -l
Code:cat /etc/fstab
life is the greatest opportunity that the nature had given you
- 09-10-2007 #4Just Joined!
- Join Date
- Sep 2007
- Posts
- 4
bash: fdisk: command not found
fdisk /dev/hda
returns
bash: fdisk: command not found
Now using Fedora, was using Mandrake at original post.
- 09-10-2007 #5
try
if that doesn't work try it after logging as rootCode:sudo /sbin/fdisk -l
life is the greatest opportunity that the nature had given you
- 09-10-2007 #6Just Joined!
- Join Date
- Sep 2007
- Posts
- 4
Got it! thanks.


Reply With Quote