I have a EEE with a 8gb harddrive and to get a little more space I want my SD card to be mounted all the time to ~/sdcard/. I got this to work properly but the problem is that I don't have the rights to do anything with sdcard/
Code:
ls: cannot open directory sdcard/: Permission denied
I've changed the directory right to:
chown jonas:jonas sdcard
&
chmod 777 sdcard
And changed the rights to /deb/sdb1 where I mount the SD card from..
But when I mount it the sdcard directory get's this rights:
Code:
d--------- 2 root root 16384 1970-01-01 01:00 sdcard
I've tryed diffrent combinations in fstab but still the same frustating result.
Currently it looks like this:
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/sda1 / ext3 errors=remount-ro 0 1
/dev/sda6 /home ext3 defaults 0 2
/dev/sda5 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/sdb1 /home/jonas/sdcard vfat rw,users,owner,umask=777 0 0
I'm going mad about this. Why doesn't I get normal user rights?
uname -a
Linux lillen 2.6.26-2-686 #1 SMP Sun Jun 21 04:57:38 UTC 2009 i686 GNU/Linux @ a asus eee 701sd if it does matter.
Please help me.