View previous topic :: View next topic |
Author |
Message |
spinerr n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 16 Jun 2010 Posts: 43
|
Posted: Tue Apr 30, 2013 12:09 pm Post subject: problem z udev |
|
|
Zrobiłem po roku aktualizację gentoo i demon udev-mount wywala takie coś
/etc/init.d/udev-mount: line 9: /lib/udev/shell-compat-KV.sh: Nie ma takiego pliku ani katalogu
* ERROR: udev-mount failed to start
portage -v1 udev, udev-init-.... nic nie daje, revdep-rebuild również. Pliku dalej nie ma. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
tczaude n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 26 Oct 2012 Posts: 49 Location: Bielsko-Biała
|
Posted: Tue Apr 30, 2013 12:38 pm Post subject: |
|
|
z tego co wiem to shell-compact.sh został usunięty
Widocznie podczas upgrade udeva zachowałeś stare pliki
porównaj z moim udev-mount bo ja nie widzę takiej linijki
Code: | cat /etc/init.d/udev-mount
#!/sbin/runscript
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Mount /dev and let udev create the device-nodes"
depend()
{
keyword -openvz -vserver -lxc
provide dev
need sysfs
before checkfs fsck
}
start() {
if [ "$(cat /proc/mounts | cut -f2 -d" " | grep "^/dev$")" != "" ]
then
einfo "udev: /dev already mounted, skipping..."
return
fi
if [ -e /etc/conf.d/udev ]
then
. /etc/conf.d/udev
fi
ebegin "udev: Mounting /dev"
if fstabinfo --quiet /dev; then
# if defined in /etc/fstab, use those options:
mount -n /dev
else
# otherwise, automatically mount using these options:
# Some devices require exec, Bug #92921
mount -n -t tmpfs -o "exec,nosuid,mode=0755,size=10M" udev /dev
fi
eend $?
touch /dev/.rcsysinit
# SELINUX STUFF
if [ -x /sbin/restorecon -a -c /selinux/null ]; then
restorecon /dev > /selinux/null
fi
# DEVICE TARBALL STUFF
local tarball_file=/lib/udev/state/devices.tar.bz2
if yesno "${device_tarball}" && [ -s "${tarball_file}" ]
then
ebegin "udev: Populating /dev with saved device nodes"
tar xpf "${tarball_file}" -C /dev
eend $?
fi
# copy over any persistant things
if [ -d /lib/udev/devices ]; then
cp -RPp /lib/udev/devices/* /dev 2>/dev/null
fi
# Create problematic directories
mkdir -p /dev/pts /dev/shm
if [ -e /proc/sys/kernel/hotplug ]; then
echo "" >/proc/sys/kernel/hotplug
fi
if [ -e /lib/udev/write_root_link_rule ]
then
/lib/udev/write_root_link_rule
else
/lib/udev/write_root_link_rule
fi
# this function disables rules files
# by creating new files with the same name
# in a temp rules directory with higher priority
local d=/dev/.udev/rules.d
if yesno "${persistent_net:-yes}"; then
ewarn "udev: Persistent network rules enabled in /etc/conf.d/udev"
else
mkdir -p "$d"
echo "# This file disables persistent-net due to /etc/conf.d/udev" > "$d"/75-persistent-net-generator.rules
fi
# load unix domain sockets if built as module, Bug #221253
if [ -e /proc/modules ] ; then
modprobe -q unix 2>/dev/null
fi
return 0
}
|
|
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
spinerr n00b
![n00b n00b](/images/ranks/rank_rect_0.gif)
Joined: 16 Jun 2010 Posts: 43
|
Posted: Wed May 01, 2013 2:34 pm Post subject: |
|
|
Porównałem pliki i były różnice. Sprawę rozwiązała aktualizacja skryptu.
Nie wiedziałem, że dispath-conf też aktualizuje skrypty startowe i nie dzieje się to automatycznie przy aktualizacji danego programu. |
|
Back to top |
|
![](templates/gentoo/images/spacer.gif) |
|