Results 1 to 3 of 3
hi all,
i'm new to linux, i have it installed dual with windows, after installation i couldn't access or even see windows drive from linux, so is there any solution ...
- 04-24-2007 #1Just Joined!
- Join Date
- Apr 2007
- Posts
- 1
problem viewing widnows drive from linux
hi all,
i'm new to linux, i have it installed dual with windows, after installation i couldn't access or even see windows drive from linux, so is there any solution ?
- 04-25-2007 #2Linux Enthusiast
- Join Date
- Jul 2005
- Location
- Maryland
- Posts
- 521
Welcome to the forums Eman!
Of course there is a solution. If you search these forums for "mount ntfs" you will find many examples. In general, you will first need to know where Windows is installed, which you can find out by typing (in terminal):
(look for lines that include: " HPFS/NTFS" or "W95 FAT32").Code:/sbin/fdisk -l
For example:
orCode:/dev/hda1 1 1966 15785248 7 HPFS/NTFS
Then try to mount the partition this way:Code:/dev/hda5 7160 9733 20669008+ b W95 FAT32
if the filesystem is NTFS,Code:mkdir /mnt/windows mount -t ntfs /dev/hda1 /mnt/windows
or
if the filesystem is FAT 32.Code:mount -t vfat /dev/hda5 /mnt/windows
You may need to install drivers to be able to mount NTFS partitions (for reading or writing). Please search the forums first. If you get stuck and don't know what to do, then
ask and we will help.
- 04-25-2007 #3


Reply With Quote
