|
i dont know where your windows partion is mounted, or if you know how to mount drives yet ill assume windows is on /dev/hda1 and linux on /deb/hdb3
mkdir /mnt/windows
mount /dev/hda1 /mnt/windows
cp /mnt/windows/temp/NV... /whereyou/wantit
you can add your windows partition to your /etc/fstab by adding a line like this
/dev/hdc3 /mnt/hdc3 vfat
/dev/hda1 /mnt/windows vfat
this will mount your windows partition at boot so you wont have to mount it each time you want something also, the mkdir command is a one time thing you will not need it when you mount your drive after the first tiem, all it does is make an empty directory with the name you provide it, vfat is correct for fat fat12 fat16 and fat32 ntfs should be the right flag for an ntfs partiton but remember that ntfs write support is experimental
|