Re: automount
- From: roN <NOspam@xxxxxxxxxxx>
- Date: Thu, 29 Jun 2006 08:09:17 -0700
blackcat wrote:
roN wrote:Exactly, I was thinking bout writing such a script too but I'm sure there
Hi,user,users,gid=users,umask=0002,utf8=true 0 0
I just upgraded from susse 10.0 to 10.1 and it seems like my USB disk
doesn't get automounted on boot :( Why not? How to enable?
My /etc/fstab looks like:
[fstab]
/dev/hda6 / reiserfs acl,user_xattr 1 1
/dev/hda2 /windows/C vfat users,gid=users,umask=0002,utf8=true 0 0
/dev/hda5 swap swap defaults 0 0
proc /proc proc defaults 0 0
sysfs /sys sysfs noauto 0 0
debugfs /sys/kernel/debug debugfs noauto 0 0
usbfs /proc/bus/usb usbfs noauto 0 0
devpts /dev/pts devpts mode=0620,gid=5 0 0
/dev/sda1 /media/HARDBOX vfat
[/fstab]
I had the same problem. In the end I just wrote a small mywdmount script
in /etc/init.d for my small WD usb drive :
#!/bin/bash
#
# mount external drive WD
#
# $Log$
#
# $Id$
#
case "$1" in
start)
/bin/mount -t reiserfs -o
rw,auto,acl,user_xattr /dev/sda1 /media/WD_Passport
;;
stop)
/bin/umount /media/WD_Passport
;;
esac
exit 0
And installed a soft link in /etc/init.d/rc5.d :
S13mywdmount -> ../mywdmount
It does the job, but it was not necessary under SuSE 10.0. There can be a
better way.
must be a way to do it automatically.
Help appreciated!
Thanks!
--
chEErs roN
I'm root, I'm allowed to do this! ;)
keep on rockin'
.
- References:
- automount
- From: roN
- Re: automount
- From: blackcat
- automount
- Prev by Date: Re: Discussion help wanted
- Next by Date: Re: Discussion help wanted
- Previous by thread: Re: automount
- Next by thread: Re: automount
- Index(es):
Relevant Pages
|
|