Results 1 to 10 of 17
Hi! i just want to make a question...because i ve melt on pc trying to find it and i didnt manage!!!
i have 2 operating systems, Windows XP and Linux ...
- 03-13-2004 #1Just Joined!
- Join Date
- Mar 2004
- Posts
- 5
hello everyone!
Hi! i just want to make a question...because i ve melt on pc trying to find it and i didnt manage!!!
i have 2 operating systems, Windows XP and Linux Red Hat.
And i created a Fat32 partition so i can transport files between the 2 operating systems.
How can I see the files in this partition from the Linux enviroment???
which is the root to go?
Thanks all and have a nice day!
- 03-13-2004 #2Linux Newbie
- Join Date
- Feb 2003
- Location
- Swansea (UK)
- Posts
- 221
use this step by step procedure:
1.> Find the name of your windows partition
2.> Create a folder in /mnt for your windows partition
3.> Open the terminal and if your not already root do:4.> Now do this in the terminalCode:su root
5.> Open your folder and your windows files should now be thereCode:mount /dev/YourPartitionName/ mnt/YourFolderName
- 03-13-2004 #3Linux Newbie
- Join Date
- Aug 2001
- Location
- USA, Texas
- Posts
- 217
Just wanted to add a little something. You probably need to add the filesystem type to the mount command.
Code:mount -t ntfs /dev/YourPartitionName/ mnt/YourFolderName
[ [ SykkN alloc ] initWithThePowerTo: destroyYouAll ];
/* Don\'t make me use it! */
- 03-14-2004 #4Linux Newbie
- Join Date
- Feb 2003
- Location
- Swansea (UK)
- Posts
- 221
Do take into account that the partition type is FAT32
Originally Posted by sykkn
- 03-14-2004 #5Linux Newbie
- Join Date
- Aug 2001
- Location
- USA, Texas
- Posts
- 217
oops. Good catch ICeMaN. Change the "-t ntfs" to "-t vfat".
Originally Posted by ICeMaN [ [ SykkN alloc ] initWithThePowerTo: destroyYouAll ];
/* Don\'t make me use it! */
- 03-14-2004 #6Linux Newbie
- Join Date
- Feb 2003
- Location
- Swansea (UK)
- Posts
- 221
whil we are on the topic i want to ask a question. Does Redhat Linux 8.0 have ntfs read/write support?
- 03-14-2004 #7
I don't think so, but you shouldn't try to use it as it could kill the whole NTFS partition...
Kriss
- 03-14-2004 #8Linux Newbie
- Join Date
- Feb 2003
- Location
- Swansea (UK)
- Posts
- 221
would this still happen if i was only reading from the partition?
- 03-14-2004 #9
No. Only writing to it is dangerous.
kriss
edit: spelling
- 03-15-2004 #10Just Joined!
- Join Date
- Feb 2004
- Location
- Bucharest - RO
- Posts
- 64
Another solution to the problem, the solution i use, is the one that edits the fstab file.So, if you want linux automaticaly mount the fat32 partition when it starts, open the fstab file and add a line with
Code:/dev/YourPartition /YourPath/YourFolderName vfat defaults 1 1


Reply With Quote
