You are not logged in.
So I did a system upgrade today, and now I'm getting a boot message that says something along the lines of:
Udevd cannot execute /bin/sleep
On my system I only found /usr/bin/sleep.
I'd appreciate any clue as to how to fix this.
My system still boots despite this.
Last edited by snoxu (2012-04-07 16:27:00)
Offline
I found /etc/udev/rules.d/95-openct.rules
Which has the following line:
# sleep for 100ms - the wait_for_sysfs might not be enough
PROGRAM="/bin/sleep 0.1"
Complete file content:
# udev rules file for openct
# Update 2009-11-25
# Thanks to Scott James Remnant and Martin Pitt for helping on irc
# to figure out the new syntax / rules for udev.
# COMPATIBILITY NOTES
# new versions of udev want DRIVERS, older versions only support DRIVER
# new versions of udev want SUBSYSTEMS, older versions only support BUS
#
# new combinations of udev and linux kernel do not create proper events
# (or udev processes them "too fast" / race conditions) or similar.
# as a result there is no way to get openct-control run when a usb smart
# card reader is plugged in. restarting the init script will help as a
# crude workaround.
#
SUBSYSTEM!="usb", GOTO="openct_usb_rules_end"
ACTION!="add", GOTO="openct_usb_rules_end"
# last file created by the kernel, if this is present everything should be
# KERNEL=="[0-9]*:*", WAIT_FOR_ATTR="bInterfaceProtocol"
# 2010-01-06 removed, as latest udev doesn't know WAIT_FOR_ATTR any more.
# sleep for 100ms - the wait_for_sysfs might not be enough
PROGRAM="/bin/sleep 0.1"
# ccid
ATTR{bInterfaceClass}=="0b", ATTR{bInterfaceSubClass}=="00", ATTR{bInterfaceProtocol}=="00", ATTRS{idVendor}=="?*" RUN+="/lib/udev/openct_usb /dev/$parent"
# egate
ATTR{idVendor}=="0973", ATTR{idProduct}=="0001", RUN+="/lib/udev/openct_usb /dev/$name"
# eToken
ATTR{idVendor}=="0529", ATTR{idProduct}=="050c", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="0529", ATTR{idProduct}=="0514", RUN+="/lib/udev/openct_usb /dev/$name"
# eToken 64
ATTR{idVendor}=="0529", ATTR{idProduct}=="0600", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="0529", ATTR{idProduct}=="0700", RUN+="/lib/udev/openct_usb /dev/$name"
# eutron
ATTR{idVendor}=="073d", ATTR{idProduct}=="0005", RUN+="/lib/udev/openct_usb /dev/$name"
# ikey2k
ATTR{idVendor}=="04b9", ATTR{idProduct}=="1200", RUN+="/lib/udev/openct_usb /dev/$name"
# ikey3k
ATTR{idVendor}=="04b9", ATTR{idProduct}=="1300", RUN+="/lib/udev/openct_usb /dev/$name"
# starkey
ATTR{idVendor}=="096e", ATTR{idProduct}=="0005", RUN+="/lib/udev/openct_usb /dev/$name"
# cardman
#ATTR{idVendor}=="076b", ATTR{idProduct}=="0596", RUN+="/lib/udev/openct_usb /dev/$name"
#ATTR{idVendor}=="076b", ATTR{idProduct}=="1784", RUN+="/lib/udev/openct_usb /dev/$name"
#ATTR{idVendor}=="08d4", ATTR{idProduct}=="0009", RUN+="/lib/udev/openct_usb /dev/$name"
# spr 532 - ccid, but with wrong interface class (vendor) :(
ATTR{idVendor}=="04e6", ATTR{idProduct}=="0003", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="04e6", ATTR{idProduct}=="E003", RUN+="/lib/udev/openct_usb /dev/$name"
# pertosmart1030
ATTR{idVendor}=="072f", ATTR{idProduct}=="0001", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="072f", ATTR{idProduct}=="8009", RUN+="/lib/udev/openct_usb /dev/$name"
# pertosmart1038
ATTR{idVendor}=="072f", ATTR{idProduct}=="9000", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="072f", ATTR{idProduct}=="9006", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="072f", ATTR{idProduct}=="9007", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="072f", ATTR{idProduct}=="90d0", RUN+="/lib/udev/openct_usb /dev/$name"
# wbeiuu - driver not working yet.
#ATTR{idVendor}=="104f", ATTR{idProduct}=="0004", RUN+="/lib/udev/openct_usb /dev/$name"
# cyberjack
ATTR{idVendor}=="0c4b", ATTR{idProduct}=="0100", RUN+="/lib/udev/openct_usb /dev/$name"
# rutoken
ATTR{idVendor}=="0a89", ATTR{idProduct}=="0020", RUN+="/lib/udev/openct_usb /dev/$name"
ATTR{idVendor}=="0a89", ATTR{idProduct}=="0012", RUN+="/lib/udev/openct_usb /dev/$name"
# ePass3000
ATTR{idVendor}=="096e", ATTR{idProduct}=="0401", RUN+="/lib/udev/openct_usb /dev/$name"
LABEL="openct_usb_rules_end"
# udev pcmcia rules file for openct
#
SUBSYSTEMS!="pcmcia", GOTO="openct_pcmcia_rules_end"
ACTION!="add", GOTO="openct_pcmcia_rules_end"
# omnikey cardman 4040
SUBSYSTEM=="cardman_4040", RUN+="/lib/udev/openct_pcmcia /dev/$name"
# Gemplus PCMCIA Card
DRIVERS=="serial_cs", ATTR{prod_id1}=="Gemplus", ATTR{prod_id2}=="SerialPort", ATTR{prod_id3}=="GemPC Card", RUN+="/lib/udev/openct_serial /dev/$name"
LABEL="openct_pcmcia_rules_end"I believe it has something to do with smart card reader drivers.
Offline
If you installed it from the AUR https://aur.archlinux.org/packages.php?K=openct you might want to post a comment on the AUR page of the package.
Offline
I have a usb smart card reader but I don't really recall why I installed openct on my system.
I'm removing it for the mean time.
Last edited by snoxu (2012-04-07 15:49:41)
Offline
deleted
Last edited by snoxu (2012-04-07 16:12:09)
Offline
What's the output of 'pacman -Qo /etc/udev/rules.d/95-openct.rules'?
Offline
/etc/udev/rules.d/95-openct.rules pertence a openct 0.6.20-1
pertence a = belongs to
Offline
I believe I installed it trying to get this smart card authentication app to install:
http://www.cartaodecidadao.pt/index.php … 44&lang=pt
Since I'm not aware of a way of actually installing it on Arch, I might as well remove openct.
Last edited by snoxu (2012-04-07 16:24:43)
Offline
Seems you did install openct. I left a comment about this issue on https://aur.archlinux.org/packages.php?ID=10155
This update removed the /bin//sleep.
FYI, run
LC_ALL=C <command>to get output in English.
Offline
Thanks I marked the thread as solved.
Offline