LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   How can I access Windows XP C drive from Linspire (https://www.linuxquestions.org/questions/linux-newbie-8/how-can-i-access-windows-xp-c-drive-from-linspire-187076/)

waheedrafiq 05-28-2004 04:30 PM

How can I access Windows XP C drive from Linspire
 
how can i access Windows XP C drive from Linspire 0S can someone please help me its base on linux system and O is there a free DVD-RW/CD-RW software for LInux if so where can i download this from.

Peacedog 05-28-2004 04:35 PM

you'll need to use samba from the linux side. you'll need to share the c:\ drive from the windows side, however, i don't reccommend this unless your not taking the box online. for samba and instructions look here

http://www.samba.org/

for the windows side look here

http://www.practicallynetworked.com/

for cdrw software look here

http://www.xcdroast.org/

http://www.k3b.org/

good luck.

mcd 05-28-2004 06:01 PM

are you trying to access a Windows C: drive on another machine, or another hard drive?

to mount a separate partition on the same machine, you just need to know the filesystem and the partition designation. XP is almost certainly NTFS filesystem, and the designation will be something like /dev/hda1. open a terminal and type

su root
(password)
emacs /etc/fstab
mkdir /mnt/windows


and add/edit the following line:

/dev/hda1 /mnt/windows ntfs ro,umask=000 0 0

(make sure /dev/hda1 corresponds to your windows drive, hda1 will be the first partition on the primary master ide drive, if you know what that means)



now press ctrl-x then ctrl-s to save, and ctrl-x then ctrl-c to exit, and you should be able to access that mount by typing any of these:

mount -a
mount /dev/hda1
mount /mnt/windows


and if you want it to mount automatically at bootup, add "auto" before "ro,umask" etc.

waheedrafiq 05-30-2004 08:56 AM

its ok thanks for your help , just to let the rest of the world know you can access windows XP C drive from Linspire file manager under drivers\dos\ there it is all your C drive on Windows XP OS


All times are GMT -5. The time now is 12:15 AM.