[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Problemas con udev



-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1



Luis Rodrigo Gallardo Cruz comento... :
> On Sat, Dec 09, 2006 at 01:45:27PM +0100, Valentín wrote:
>> Luis Rodrigo Gallardo Cruz comento... :
>>> On Fri, Dec 08, 2006 at 11:56:32AM +0100, Valentín wrote:
>>>> He seguido, como ya hice otra vez que me instalé Debian, este manual
>>>> http://www.adictosaltrabajo.com/tutoriales/tutoriales.php?pagina=usbdebian
>>>> pero esta vez no hay forma de que me cree nada.
>>> Este tutorial es al parecer bastante viejo, por que habla del kernel
>>> 2.6.9. De entonces a ahora udev ha quedado integrado por completo en
>>> etch. Yo te recomendaría que omitas la parte que cité del tutorial y
>>> lo intentes de nuevo.
>> He dejado udev_root="/dev/" por costumbre de tener todo en /dev. Ya se
>> que el tutorial es bastante viejo, pero todo lo que he buscado me viene
>> a decir básicamente lo mismo.
> 
> Ah, ok.
> 
>> He encontrado el comando udevtest con el que he tratado de descubrir
>> algo, pero solo me devuelve:
>> Homer:/home/valentin/# udevtest /dev/sda1
>> add_to_rules: invalid SUBSYSTEMS operation
>> add_to_rules: invalid rule '/etc/udev/rules.d/010.udev.Mipendrive.rules:1'
>> unable to open device '/dev/sda1'
>> Homer:/home/valentin/#
>>
>> El segundo archivo al que hace referencia es el que he creado yo, pero
>> en ese archivo no pone nada de SUBSYSTEMS ni nada....
> 
> Pero ese mensaje *sí* dice que la regla es inválida. Revisa que no
> hayas cometido algún error de sintáxis al copiarla. Y envía el
> contenido del archivo, para echarle un ojo.

El contenido del archivo es este (he quitado lo del ipod para "ir paso a
paso"):
BUS="scsi", KERNEL="sda?[1-5]", NAME="pendrive"

Lo del SUBSYSTEMS será de algún otro archivo de configuración... el
udev.rules que tengo es este:
# There are a number of modifiers that are allowed to be used in some
# of the different fields. They provide the following subsitutions:
#
# %n the "kernel number" of the device.
#    For example, 'sda3' has a "kernel number" of '3'
# %e the smallest number for that name which does not matches an
existing node
# %k the kernel name for the device
# %M the kernel major number for the device
# %m the kernel minor number for the device
# %b the bus id for the device
# %c the string returned by the PROGRAM
# %s{filename} the content of a sysfs attribute
# %% the '%' char itself
#

# workaround for devices which do not report media changes
BUS=="ide", KERNEL=="hd[a-z]", SYSFS{removable}=="1", \
	ENV{ID_MODEL}=="IOMEGA_ZIP*",	NAME="%k", OPTIONS+="all_partitions"

# SCSI devices
BUS=="scsi", KERNEL=="sr[0-9]*",	NAME="scd%n", SYMLINK+="sr%n"

# USB devices
BUS=="usb", KERNEL=="auer[0-9]*",	NAME="usb/%k"
BUS=="usb", KERNEL=="cpad[0-9]*",	NAME="usb/%k"
BUS=="usb", KERNEL=="dabusb*",		NAME="usb/%k"
BUS=="usb", KERNEL=="hiddev*",		NAME="usb/%k"
BUS=="usb", KERNEL=="legousbtower*",	NAME="usb/%k"
BUS=="usb", KERNEL=="lp[0-9]*",		NAME="usb/%k"
BUS=="usb", KERNEL=="ttyUSB*", \
	SYSFS{product}=="Palm Handheld*|Handspring Visor", \
					SYMLINK+="pilot"

# usbfs-like devices
#SUBSYSTEM=="usb_device",	PROGRAM="/bin/sh -c 'K=%k; K=$${K#usbdev};
printf bus/usb/%%03i/%%03i $${K%%%%.*} $${K#*.}'", \
				NAME="%c"

# serial devices
KERNEL=="capi",			NAME="capi20", SYMLINK+="isdn/capi20"
KERNEL=="capi[0-9]*",		NAME="capi/%n"

# video devices
KERNEL=="dvb*",			PROGRAM="/bin/sh -c 'K=%k; K=$${K#dvb}; printf
dvb/adapter%%i/%%s $${K%%%%.*} $${K#*.}", \
				NAME="%c"
KERNEL=="card[0-9]*",		NAME="dri/%k"

# misc devices
KERNEL=="hw_random",		NAME="hwrng"
KERNEL=="tun",			NAME="net/%k"

KERNEL=="cdemu[0-9]*",		NAME="cdemu/%n"
KERNEL=="pktcdvd[0-9]*",	NAME="pktcdvd/%n"
KERNEL=="pktcdvd",		NAME="pktcdvd/control"

KERNEL=="cpu[0-9]*",		NAME="cpu/%n/cpuid"
KERNEL=="msr[0-9]*",		NAME="cpu/%n/msr"
KERNEL=="microcode",		NAME="cpu/microcode"

KERNEL=="umad*",		NAME="infiniband/%k"
KERNEL=="issm*",		NAME="infiniband/%k"
KERNEL=="uverbs*",		NAME="infiniband/%k"
KERNEL=="ucm*",			NAME="infiniband/%k"

# ALSA devices
KERNEL=="controlC[0-9]*",	NAME="snd/%k"
KERNEL=="hwC[D0-9]*",		NAME="snd/%k"
KERNEL=="pcmC[D0-9cp]*",	NAME="snd/%k"
KERNEL=="midiC[D0-9]*",		NAME="snd/%k"
KERNEL=="timer",		NAME="snd/%k"
KERNEL=="seq",			NAME="snd/%k"

# ieee1394 devices
KERNEL=="dv1394*",		NAME="dv1394/%n"
KERNEL=="video1394*",		NAME="video1394/%n"

# input devices
KERNEL=="mice",			NAME="input/%k"
KERNEL=="mouse[0-9]*",		NAME="input/%k"
KERNEL=="event[0-9]*",		NAME="input/%k"
KERNEL=="js[0-9]*",		NAME="input/%k"
KERNEL=="ts[0-9]*",		NAME="input/%k"
KERNEL=="uinput",		NAME="input/%k"

# Zaptel
KERNEL=="zapctl",		NAME="zap/ctl"
KERNEL=="zaptimer",		NAME="zap/timer"
KERNEL=="zapchannel",		NAME="zap/channel"
KERNEL=="zappseudo",		NAME="zap/pseudo"
KERNEL=="zap[0-9]*",		NAME="zap/%n"

# AOE character devices
SUBSYSTEM=="aoe", KERNEL=="discover",	NAME="etherd/%k"
SUBSYSTEM=="aoe", KERNEL=="err",	NAME="etherd/%k"
SUBSYSTEM=="aoe", KERNEL=="interfaces",	NAME="etherd/%k"
SUBSYSTEM=="aoe", KERNEL=="revalidate",	NAME="etherd/%k"

# device mapper creates its own device nodes, so ignore these
KERNEL=="dm-[0-9]*",		NAME=""
KERNEL=="device-mapper",	NAME="mapper/control"


Gracias por todo :)


- --
Valentín
Linux User  - #378580

- ----
Eran como las hormigas, que pueden ver los objetos pequeños, pero no los
grandes.
1984 (George Orwell)
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFetU+/MRrJnsjgNsRArHhAJ9cOTZPaoD7lvykWctccDuBpniLaACdGEqd
bbpDrPaFbaycDSS8yyYINmA=
=tLiQ
-----END PGP SIGNATURE-----

		
______________________________________________ 
LLama Gratis a cualquier PC del Mundo. 
Llamadas a fijos y móviles desde 1 céntimo por minuto. 
http://es.voice.yahoo.com



Reply to: