Quote:
Originally Posted by pratporetw
And am not willing to mount at /mnt because mounting there wont mount the drive at GUI (as i have seen).
|
The GUI doesn't care what what your mount points are, but might be sensitive to
how they're mounted (e.g. automatically by udisks vs. manually – and scripted mount commands are manual for this purpose). You can always create "bookmarks" or symbolic links if the GUI doesn't show the mount-points for some reason.
Quote:
|
I was wondering if someone could solve my "Permission Denied !" Problem.
|
Normally
only root can ever mount or unmount file-systems. The automatic and GUI mounting infrastructure jump through a few hoops to hide this.
The correct place to mount file-systems is in /etc/fstab. Add lines like:
Code:
/dev/sda2 /mnt/C ntfs defaults 0 0
/dev/sda3 /mnt/D ntfs defaults 0 0
to mount the file-systems on boot. You must create /mnt/{C,D} directories once manually first.
There are refinements that can be made, such as using UUIDs instead of device names, and tweaking the mount options for file ownership and permissions (see the "mount" and "fstab" manual pages), but that's the basic starting point for setting up persistent mounts.