Though I have been getting around to updating my laptop a bit more often...
Anyway when I rebooted the desktop, I noticed a longer delay than usual when tty1 displayed this:
- Code: Select all
* Starting udev ... [ ok ]
* Populating /dev with existing devices through uevents ... [ ok ]
* Waiting for uevents to be processed ...
When it eventually gives up I get:
- Code: Select all
udevadm settle - timeout of 60 seconds reached, the event queue contains:
/sys/module/nvidia (6369)
/sys/module/nvidia (6372) [ !! ]
The next thing I noticed was that when I logged in to my normal user account, my personal data partitions failed to mount:
- Code: Select all
localhost login: jtwdyp
Password:
Last login: Thu Jan 3 19:02:30 EST 2013 on tty1
You have old mail in folder /var/mail/jtwdyp.
mount: LABEL=jSTUFF_desk-11: No such file or directory
mount: LABEL=Jimages_desk-9: No such file or directory
mount: LABEL=J10_desk-10: No such file or directory
The said named partitions do still exist:
- Code: Select all
JtWdyP -> /home/jtwdyp
> ls /dev/disk/by-label/[jJ]*
/dev/disk/by-label/J10_desk-10 /dev/disk/by-label/jSTUFF_desk-11
/dev/disk/by-label/Jimages_desk-9
JtWdyP -> /home/jtwdyp
>
My .bash_profile used to mount them like so:
- Code: Select all
JtWdyP -> /home/jtwdyp
> grep mount ~/.bash_profile
mount LABEL=jSTUFF_desk-11
mount LABEL=Jimages_desk-9
mount LABEL=J10_desk-10
JtWdyP -> /home/jtwdyp
>
It relied on these fstab lines:
- Code: Select all
JtWdyP -> /home/jtwdyp
> grep owner /etc/fstab
LABEL=jSTUFF_desk-11 /home/jtwdyp/STUFF/desk-11 ext3 defaults,owner,noauto 0 0
LABEL=Jimages_desk-9 /home/jtwdyp/images/desk-9 ext3 defaults,owner,noauto 0 0
LABEL=J10_desk-10 /home/jtwdyp/desk-10 ext3 defaults,owner,noauto 0 0
JtWdyP -> /home/jtwdyp
>
Which worked because of this rule:
- Code: Select all
JtWdyP -> /home/jtwdyp
> cat /etc/udev/rules.d/99-z-local-disk.rules
# /etc/udev/rules.d/99-local-disk.rules
SUBSYSTEM=="block", ENV{ID_FS_LABEL}=="jSTUFF_desk-11", OWNER="jtwdyp", GROUP="jtwdyp"
SUBSYSTEM=="block", ENV{ID_FS_LABEL}=="Jimages_desk-9", OWNER="jtwdyp", GROUP="jtwdyp"
SUBSYSTEM=="block", ENV{ID_FS_LABEL}=="J10_desk-10", OWNER="jtwdyp", GROUP="jtwdyp"
JtWdyP -> /home/jtwdyp
>
Anybody have any idea what went wrong? Or better yet, how to fix it?
--
Joe3
