S sirstevo May 31, 2002 #1 When I'm in linux, how can I see/access my Windows partitions? I can't cd .. from the root directory!
When I'm in linux, how can I see/access my Windows partitions? I can't cd .. from the root directory!
SNGX1275 Posts: 10,615 +468 Jun 1, 2002 #2 If they are NTFS you have to do some mucking around with the kernel. If they are FAT or FAT32 then its simplier, although I am not learned enough in linux to help you out on here, several other members are.
If they are NTFS you have to do some mucking around with the kernel. If they are FAT or FAT32 then its simplier, although I am not learned enough in linux to help you out on here, several other members are.
Phantasm66 Posts: 4,909 +8 Jun 8, 2002 #3 There's a good chance your kernel already has FAT/FAT32 write and right access compiled in. NTFS read access is usally off by default. There is NTFS write access as well but its not recommended and has caused data corruption. try this: create a mount point for your windows partition mkdir /mnt/windows then try to mount it: mount -t vfat /dev/hda1 /mnt/windows where hda1 is your windows partition.
There's a good chance your kernel already has FAT/FAT32 write and right access compiled in. NTFS read access is usally off by default. There is NTFS write access as well but its not recommended and has caused data corruption. try this: create a mount point for your windows partition mkdir /mnt/windows then try to mount it: mount -t vfat /dev/hda1 /mnt/windows where hda1 is your windows partition.