mounting NTFS/fat32 partitioned hard drive (win2k) /when fedora4 runs on seperate HD
Linux - HardwareThis forum is for Hardware issues.
Having trouble installing a piece of hardware? Want to know if that peripheral is compatible with Linux?
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
mounting NTFS/fat32 partitioned hard drive (win2k) /when fedora4 runs on seperate HD
hi all. having trouble mounting my windows hard drive. i installed linux about 2 months ago for the first time, upgraded it, didn't use it much, and then the family moved, so getting back to it, my brain is a bit fuzzy on the exact details. hence, my hesitation.
I have 2 hard drives. 1 for linux and 1 for windows. the windows hard drive, for linux, is A, the linux Hard drive, for linux, is B. Grub is on A1.
I do believe that A1 in linux for me is my windows C partitioned drive - this is NTFS file system
I do believe that A2 in linux for me is my windows D partitioned drive - this says FAT32 for the file system.
when i run the mount command in linux, I type in what they tell me to type in.
"mount -a"
to mount everythign (and checking that fstab file in question, i don't see any reference to my windows hard drive in there. ) That didn't work. I also tried to mount with the
"mount -t vfat /dev/hda1 /dosc"
command. That didn't work. Realizing the drive was ntfs anyway, I replaced vfat in my command line with ntfs. that didn't work. i also tried
"mount -t vfat /dev/hda2/dosd"
command. no dice. i replaced the vfat in that command line with fat32, and then with just plain old fat. again, no dice. in each case, when i write the command line with the vfat in there , I get something coming back to me that essentially says that no such file system is found. i check the log, and it says the same thing essentially. that's understandable b/c i don't infact have vfat. but according to linux admin for beginners, an old osbourne book that has linux redhat 7 to go with it, fat32 and fat are other valid options to type in the command for where it asks for file system types. but when i type in fat32, fat, the response that comes back to me is no such file system, and
"don't you mean vfat?"
when i type in ntfs, it doesn't recognize that as a file system, period.
I NEED to mount my windows hard drive. 1 partition will have to do if there is absolutely no other option, but i'd much rather mount both partitions, if there is any way possible.
If your windows partition is not listed in fstab, it will never be mounted by using "mount -a". Instead, you'll have to specify it manually, which you are already trying:
Code:
mount -t ntfs /dev/hda1 /dosc
What is te exact error you are getting? Are you sure /dev/hda1 is your windows C partition?
For your windows D partition, vfat is type if it is fat32. Your used command probably contains a typo:
Code:
mount -t vfat /dev/hda2/dosd
should be
Code:
mount -t vfat /dev/hda2 /dosd
Do your mount points exist, ie is there already a directory called /dosd and /dosc?
Finally, you must be root to mount filesystems.
well, i am in root, as it took me a long time how to do that when i forgot the root password, so after hours on that, I KNOW i'm in root.
in my commands, i did it a few times. there is no typo mistake. i noted the space-bar keystroke that is required when i first put in the command. yes, mount points do exist. i think they were made when i tried to do all this. anyway, they are there, but are completely empty.
exact errors? I can't tell you that until i get back to my home computer, write them down, and then restart the computer to get internet access in windows. (the whole point in this grand task is to get my newly aquired external modem working in linux. to do that, i need the correct drivers installed. to do that, i need to access what i downloaded through the mounted drive. see my handicap here?)
i just got to work to start my work day, so..
meanwhile, i got some advice on fedoraforum. does this look like it may be the right path? I haven't checked it out yet myself other than a cursury read-through.
here it is:
-----------------------------------------------------------
knowing how these things work, i know it can usually take a while, piecing different info from different sources together until i get the complete answer i'm looking for. so, that's why i put it here. I'll now look into these links myself, as well.
If your kernel does not have the filesystem support compiled pr supported, then installing those kernel modules will help.
However, especially for fat32, it is strange that your distro doesn't ship with support. Try installling the relevant modules as listed on that site and see if that helps, and post errors if that still fails.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.