Hi, first I will confess that i am a linux noob
Im having troubles with my EEEPC mod (Internal usb hub + 4gb datatraveler to act as a HD + bluetooth).
On boot everything works like a charm, the usb mounts as /home as I've configured during the instalation. But when I return from a Suspend, the drive seems to return as a read-only device. I cannot write o create folders on my user Home folder. Please help me figuring out this,
These are my Fstab, Mtab and the 01-ina.rule created to always mount the pendrive in the same position.
My FSTAB
Code:
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda1
UUID=fc124318-7b33-47e1-ab82-68c8cc6f982a / ext3 noatime,defaults,errors=remount-ro 0 0
# /dev/sdc1
# UUID=5a32cf9c-a43c-4ef8-9c8d-08d866d15024 /home ext3 noatime,defaults,errors=remount-ro 0 0
/dev/usf /home ext3 rw,users,auto,noatime 0 0
tmpfs /var/log tmpfs defaults,noatime 0 0
tmpfs /tmp tmpfs defaults,noatime 0 0
tmpfs /var/tmp tmpfs defaults,noatime 0 0
THE RULE (/etc/udev/rules.d/01-ina.rules):
Code:
# Rules to ensure USB storage devices have persistent names and are mounted
# at boot.
# USB FIXED
BUS=="usb", KERNEL=="sd*", SYSFS{serial}=="89900000000000000000007C", NAME="usf", OPTIONS+="last_rule", RUN+="/bin/mount /dev/usf"
THE MTAB:
Code:
/dev/sda1 / ext3 rw,noatime,errors=remount-ro 0 0
proc /proc proc rw,noexec,nosuid,nodev 0 0
/sys /sys sysfs rw,noexec,nosuid,nodev 0 0
varrun /var/run tmpfs rw,noexec,nosuid,nodev,mode=0755 0 0
varlock /var/lock tmpfs rw,noexec,nosuid,nodev,mode=1777 0 0
udev /dev tmpfs rw,mode=0755 0 0
devshm /dev/shm tmpfs rw 0 0
devpts /dev/pts devpts rw,gid=5,mode=620 0 0
lrm /lib/modules/2.6.24-12-generic/volatile tmpfs rw 0 0
securityfs /sys/kernel/security securityfs rw 0 0
/dev/usf /home ext3 rw,noatime 0 0