Results 1 to 10 of 13
OK, so I have a problem... I've got a dual boot system set up (XP under NTFS, and ext3 for my Red Hat), and a slave drive with all my ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 06-09-2005 #1Just Joined!
- Join Date
- May 2005
- Location
- Drifting alone in Space...
- Posts
- 36
Getting files from NTFS to Linux
OK, so I have a problem... I've got a dual boot system set up (XP under NTFS, and ext3 for my Red Hat), and a slave drive with all my music, and stuff on it. I want to figure out how to mount an NTFS drive under linux. My friend told me that you can't do it, so I threw a 12 gig FAT32 drive in there, but it won't mount in either. Basicly, I need a drive that I can access under both Windows and Linux. If anyone knows how to help me out with this, it would be much appreciated.
Thanks a lot.
- 06-09-2005 #2
www.samba.org
samba will do it.Today I fell and felt better, Just knowing this matters, I just feel stronger and SHARPER!!!, Found a box of sharp objects, What a beautiful THING!!! Box of Sharp Objects - The Used
- 06-09-2005 #3
The FAT32 drive should do the trick...what method did you use to try mounting it?
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 06-09-2005 #4Just Joined!
- Join Date
- May 2005
- Location
- Drifting alone in Space...
- Posts
- 36
Thanks a lot!
- 06-09-2005 #5Just Joined!
- Join Date
- May 2005
- Location
- Drifting alone in Space...
- Posts
- 36
Well, it should mount as hdd, but it keeps telling me that the path is incorrect... I'm a linux Newbie, so I don't know much about how to do this...
Originally Posted by Flatline
- 06-09-2005 #6
Could you run
and post the output? I'm sure we can get that drive mounted pretty quickly (look into samba anyway, though - it's a GREAT piece of software).Code:fdisk -l
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 06-09-2005 #7Just Joined!
- Join Date
- May 2005
- Location
- Drifting alone in Space...
- Posts
- 36
I can't download it... I'm at school (No net at home)
Originally Posted by Flatline
Is there any command or somthing I'm supposted to run? I tried formatting the drive as "vfat" when I installed Red Hat, but it said that it couldn't, and then it restarted the install... I can still mount removeable media (CD Drive, and floppy), but that's it...
- 06-09-2005 #8
As long as your BIOS picks the drive up, RedHat should see the device. That's why I said you should run the fdisk -l command. It will list the /dev/hd* detected on your system so you can see what to specify for the mount command (for instance, if you had two CD drives, hdd would already be taken, and if there's no media in the drives it would kick back an error).
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson
- 06-09-2005 #9Just Joined!
- Join Date
- May 2005
- Location
- Drifting alone in Space...
- Posts
- 36
aah, I see now... and when it lists the drives, how would I go about mounting them?
- 06-09-2005 #10
In most distros you don't even have to specify a filesystem type anymore, so the command is pretty simple. Say you wanted to mount a FAT32 partition that shows up as /dev/hda5 on the directory /storage. First create the directory with
then mount the drive withCode:mkdir /storage
If it asks for a filesystem type, you could useCode:mount /dev/hda5 /storage
Code:mount -t vfat /dev/hda5 /storage
There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence.
- Jeremy S. Anderson


Reply With Quote
