LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   dual boot (https://www.linuxquestions.org/questions/linux-newbie-8/dual-boot-231789/)

shadowsurfer 09-17-2004 10:20 AM

dual boot
 
is it possible to check or to copy file in my dual boot system ( using one HD linux and windows) can i access my file vice versa

rjtucke 09-17-2004 10:33 AM

In my setup, it is possible to access windows files from linux, but afaik, windoze is not advanced enough to see linux partitions.

rjtucke

shadowsurfer 09-17-2004 10:43 AM

how can i access windows file from linux can you give me some intruction.. tnx

MartinN 09-17-2004 10:49 AM

Hi shadowsurfer

Depends on what version of Windows you use. If it's Windows 95, 98 or ME, then the filesystem for Windows is called FAT32. If it's Windows 2000 or XP, then the filesystem is probably NTFS and that can be read but not written by Linux (read-only).

Martin

shadowsurfer 09-17-2004 11:04 AM

im using fat32 only win 98 se

shadowsurfer 09-17-2004 11:40 AM

what will i do can you give me specific instructions

MartinN 09-20-2004 12:39 AM

Hi again!

Sorry for the late response. I can't give you very specific instructions, since my dual boot Linux/Win 98-machine is *errh* temporarily out of service. (The computer I'm typing on now is Linux only.)

To mount a partition, you must have a place to mount it, this 'place' is just an empty directory. You must also know who should be able to read and write to the FAT partition.

If you only want to mount it once, root could issue a command to mount it:
# mount -t vfat /dev/hda3 /mnt/win

The '-t vfat' is for mounting a vfat partition. Next parameter is the partition to mount. If you don't know the partition name where Windows lives, you could see this with the command:
# /sbin/fdisk -l

The last parameter to the mount command is an empty directory to mount at. This directory could be pretty much anywhere in the file system.


To mount a partition automatically every time you boot into Linux, you must edit the file /etc/fstab and add a line with the mount options. This is a little more complicated. Since there is no "file owner" concept in FAT you must add parameters to the mount about who should be able to read and write. I can't give you the correct options, but try searching a little here:
http://www.linuxquestions.org/questi...+windows+mount

Good luck! If this doesn't help, come back here and ask more. I'll try to be a little quicker replying next time ;)
Martin


All times are GMT -5. The time now is 10:05 AM.