Results 1 to 2 of 2
Hi,
I am new to Linux so please forgive me if this is a silly question and/or I do not include enough information.
Anyways, I am using a computer which ...
- 11-24-2006 #1Just Joined!
- Join Date
- Nov 2006
- Posts
- 5
accessing the MS windows partition from Linux
Hi,
I am new to Linux so please forgive me if this is a silly question and/or I do not include enough information.
Anyways, I am using a computer which has both a MS Windows and a Linux partition on the hard drive. I was wondering if there is an application which makes it possible to access information and files from the Windows partition without having to exit Linux and reboot.
Thanks for any information you can offer and please let me know if you need more information to help me out!
Paul
- 11-24-2006 #2
you can mount Windows partitions in Linux. all Linux distros support read/write access for FAT32 and read access for NTFS partitions.
in terminal/konsole, execute this
you must be root to execute fdisk command.Code:fdisk -l <--- its small 'L'
note down FAT32 and NTFS partition names... /dev/hda1 or /dev/sda1 etc...
create mount points and mount partitions.
Windows drive is in /media/windows_c folder now.Code:mkdir /media/windows_c mount -t ntfs /dev/<name> /media/windows_c
in case, partition is FAT32, replace 'ntfs' with 'vfat'.
if you couldn't mount, post the output of 'fdisk -l' command here.
casperIt is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First


Reply With Quote
