Gentoo Archives: gentoo-user

From: Richard Fish <bigfish@××××××××××.org>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] boot stalls at 'mounting local file systems'
Date: Mon, 31 Jul 2006 21:49:43
Message-Id: 7573e9640607311443v4789fc30v72d44f6cda06514d@mail.gmail.com
In Reply to: [gentoo-user] boot stalls at 'mounting local file systems' by Martins
1 On 7/31/06, Martins <mar@××.lv> wrote:
2 >
3 > any have a hint, my gentoo desktop box stalls booting at 'mounting local
4 > file systems' for a sudden. there's no system config files i alerted,
5
6 If you are using ldap, it can cause long delays for things that occur
7 before networking is active when something tries to lookup a user from
8 the ldap server, but times out.
9
10 So far I've heard of this affecting bootmisc, udev, and now
11 localmount. There are some workarounds listed in this bug:
12
13 http://bugs.gentoo.org/show_bug.cgi?id=99564
14
15 Basically, downgrading the version of ldap or or changing the ldap
16 configuration seems to fix it for most people.
17
18 In your case, it is probably this part of localmount that is causing
19 the problem:
20
21 if [[ -n ${usbfs} ]] && \
22 [[ -e /proc/bus/usb && ! -e /proc/bus/usb/devices ]]
23 then
24 ebegin "Mounting USB device filesystem (${usbfs})"
25 usbgid=$(echo $(getent group usb) | awk -F: '{print $3}')
26 mount -t ${usbfs} usbfs /proc/bus/usb \
27 ${usbgid:+-o devmode=0664,devgid=${usbgid}}
28 eend $? "Failed to mount USB device filesystem"
29 fi
30
31 This tries to do a lookup of the 'usb' group.
32
33 If it does indeed turn out to be an ldap issue, add a comment to the
34 linked bug or at least let me know and I'll do it.
35
36 -Richard
37 --
38 gentoo-user@g.o mailing list

Replies

Subject Author
Re: [gentoo-user] boot stalls at 'mounting local file systems' Martins Steinbergs <mar@××.lv>