I installed Mandrake 10.1 within XP so I assume Mandrake just created a separate partition. I have many PDF books on learning Linux in Windows and wanted to be able to access them while I'm in Mandrake. How would I do that? Thanks.
Printable View
I installed Mandrake 10.1 within XP so I assume Mandrake just created a separate partition. I have many PDF books on learning Linux in Windows and wanted to be able to access them while I'm in Mandrake. How would I do that? Thanks.
- Question answered below -
You should be able to read your NTFS partition, but maybe not write to it as it is a bit shakey, and I'm not too sure how well Mandrake 10.1 can hold it's own with writing to it.
If you simply just want to read your PDFs, you'll need to mount your NTFS partition. From a terminal/command line, try doing the following:
Once you've got that, you can continue with this:Code:su
<enter root password>
fdisk -l (to list your partitions and find out the device name of your hard drive and NTFS partition)
If you want it to automount during startup, you'll need to edit your fstab:Code:mkdir /mnt/*windows*
mount /dev/*partition* /mnt/*windows*
Once you're in there, press "a" on your keyboard to insert a line at the very end and try entering this:Code:vi /etc/fstab
You'll just need to change a few things in that line that will suit your setup accordingly. After you've got that line in, you can press "escape" on your keyboard. Then press ":" and type "wq", which should write and quit the editor. Hope this helps.Code:/dev/hdb1 /mnt/windows vfat umask=0000,dmask=0000,uid=0002,gid=users,users 0 0
That's one of the most complete walkthroughs I've seen in so few words....Must jot that down for next time!
Just dropping in to say - I'd be very surprised if Mandrake hadn't already mounted your partitions for you. look in the /mnt/ directory and you should see folders corresponding to your partitions. Mandrake is great for automagically setting this up. If it hasn't go to the Mandrake Control Centre and to the partitions section. You should be able to mount [partitions with a few mouse cllicks there, setting which mount on boot etc.
Haha, thanks. Couldn't think of an easier until you brought up that point about the Control Centre... :roll:Quote:
Originally Posted by bigtomrodney
Well, I guess just as long as it'll help someone. :D
lol :lol:
Thanks anyway!