but i can't. it's locked. i can only do that as root.
how can i access this as LL under Fedora?
If you check the /etc/fstab file, the second last column has a set options. For example here is an entry from my fstab file
/dev/cdrom /mnt/cdrom udf,iso9660 noauto,owner,kudzu,ro 0 0
The "noauto,owner,kudzu,ro" part is the set of options that modify the behavior of the mounted file. To see all the options that you can pass, check the man mount (8). Specifically check the arguments that can be passed with the `-o ` flag.
The short answer is that you can make an entry in the /etc/fstab files as dev/hda9 /mnt/LLHOME2 ext3 noauto,owner,noexec,rw,users 00
(of course you have to change the above line to suit your purpose). What will happen is your /mnt/LLHOME2 will not be mounted at boot time (due to the noauto option). However you will be able to mount /mnt/LLHOME2 by running the command `mount /mnt/LLHOME2`. This will mount your second home directory with your current user permissions. To automate the whole process you can put a line `mount /mnt/LLHOME2` in your .bashrc file.
HTH -- / \__ ( @\___ Raj Shekhar / O My home : http://geocities.com/lunatech3007/ / (_____/ My blog : http://lunatech.journalspace.com/ /_____/ U
_______________________________________________ ilugd mailinglist -- [EMAIL PROTECTED] http://frodo.hserus.net/mailman/listinfo/ilugd Archives at: http://news.gmane.org/gmane.user-groups.linux.delhi http://www.mail-archive.com/[EMAIL PROTECTED]/
