Hi all
I'm quite new to Linux and when I got a laptop on my hand I decided to test Linux Mint, works very well so far.
However when I made the install I made a partition for files mounted in /files, tough that would be nice, but now I need to be root to access it. From some use of Google I have read about solutions including use of chown or to mount to folder in home by editing fstab.
So my problem is what to do? editing fstab seems to be best option. but what should I change or add?
$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=ed0dd4cb-75b2-4b89-9996-732dc9d50952 / ext3 relatime,errors=remount-ro 0 1
# /files was on /dev/sda5 during installation
UUID=0cdea019-6092-4199-addf-45aa9a4fc54e /files ext3 relatime 0 2
# /win was on /dev/sda1 during installation
UUID=660C851C0C84E7FF /win ntfs defaults,nls=utf8,umask=007,gid=46 0 1
# swap was on /dev/sda6 during installation
UUID=c2a922c8-0d9a-4565-ab12-823ab3afe81e none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto,exec,utf8 0 0
Thanks in advance from a beginner.










