Code: Select all
man mount
man fstab
qcspinner wrote:How can I quickly access files from my Windows partition. I used to have Mandrake, which had an nt directory already set up. Is there something similar for gentoo or do I actually have to learn how all this computer stuff works?
Code: Select all
man mount
man fstab
mkdir /mnt/nt
mount /dev/your/windows/partion /mnt/nt
nano /etc/fstab

Code: Select all
#man passwd
#grep matt /etc/passwd
matt:x:1000:100::/home/matt:/bin/bash
Code: Select all
/dev/hda1 /mnt/XP ntfs umask=0222 0 0

Unless you specificaly enabled ntfs write support in the kernel, it wont matter what your perms are! also adding ro to the list of options is a better method to prevent writing. remember root can do anything(sorta). ro also prevent low-level stuff from changing on drives ware writing is possable.Unne wrote:(0222 = read/execute permissions for everyone, write permissions for no one, since NTFS-writing = dangerous)
Code: Select all
/dev/hda2 /mnt/c NFTS user,umask=0222 0 0 $Code: Select all
mount /dev/hda2 /mnt/c
NTFS should be lowercase. Also, you are bypassing fstab by mounting like that. Specify either the mountpoint or the /dev file.qcspinner wrote:This is in my fstab:
when I try to mount from my user:Code: Select all
/dev/hda2 /mnt/c NFTS user,umask=0222 0 0 $
it says: mount: only root can do thatCode: Select all
mount /dev/hda2 /mnt/c