![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| can not mount the selected partition | sayed_021 | SUN Solaris | 1 | 02-18-2008 09:11 AM |
| I've created a partition with GNU Parted, how do I mount the partition? | jtp51 | UNIX for Dummies Questions & Answers | 1 | 09-18-2006 08:01 AM |
| / partition is mounted but not present in mount | npn35 | SCO | 3 | 09-11-2006 06:47 AM |
| how to mount other partition? | stdout | SUN Solaris | 6 | 02-08-2006 01:35 AM |
| can't mount a partition | nabulus | SUN Solaris | 3 | 02-19-2005 11:38 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
| Forum Sponsor | ||
|
|
|
||||
|
I found it myself at last:
for anyone interested here is the solution: if you know which hard drive the partition is on then use fdisk on that drive ('fdisk /dev/hda' for me) and type 'p' to get a list of partition info. next you need to locate which poartition, I need to access hda1. quit fdisk and make a directory to use as a mount point ('/home/win' for me) edit the fstab to include the line /dev/hda1 /home/win vfat defaults 0 0 and voila next time I boot, it is recognised. If I just want to mount it once, I type: mount -t vfat /dev/hda1 /home/win or mount -t [filesystem] [device] [mount point] Happy days,
__________________
regards, -ghoti |
|
|||
|
Hi,
Have you tried adding the following to your /etc/fstab file: /dev/hda1 /mnt/msdos msdos auto I think the msdos file type should work okay for fat16 filesystems. For fat32 filesystems you'll need to add vfat for the fs type. i.e. a partition named /dev/.hda8 add the following to fstab: /dev/hda8 /mnt/fat32 vfat auto Of course you'll need to ensure that the mount directories have been created before mounting the directories. To mount the fat16 partition you'd type: mount /mnt/msdos or mount /dev/hda1 I hope this helps. Andy |
|
||||
|
cheers,
The above solution is working fine for me, and I set file type to vfat (fat was not recognised as an option to mount) but it works fine for me. When I tried DOS as a filesystem, it was rejected, I see now that I should have used MSDOS. Cheers for the tip,
__________________
regards, -ghoti |
|
|||
|
That's okay.
Supported modules for your system's kernel can be found in: /lib/modules/kernelversion* * kernel version can be found from the /proc/system/kernel/osrelease file. The exact location for modules can vary, on my system fs modules are in /lib/modules/2.4.6/fs Andy |
|||
| Google The UNIX and Linux Forums |