junio 08, 2011

Logitech Webcam C210 en Fedora 15

Un paseo!
Enchufar y disfrutar (Cheese o Skype)


Jun 8 19:37:20 toshiba kernel: [ 2080.045294] usb 1-7: new high speed USB device using ehci_hcd and address 6
Jun 8 19:37:20 toshiba kernel: [ 2080.305696] usb 1-7: New USB device found, idVendor=046d, idProduct=0819
Jun 8 19:37:20 toshiba kernel: [ 2080.305701] usb 1-7: New USB device strings: Mfr=0, Product=0, SerialNumber=2
Jun 8 19:37:20 toshiba kernel: [ 2080.305704] usb 1-7: SerialNumber: 1886CAA0
Jun 8 19:37:20 toshiba kernel: [ 2080.503979] Linux video capture interface: v2.00
Jun 8 19:37:20 toshiba kernel: [ 2080.564377] uvcvideo: Found UVC 1.00 device (046d:0819)
Jun 8 19:37:20 toshiba kernel: [ 2080.667848] input: UVC Camera (046d:0819) as /devices/pci0000:00/0000:00:1d.7/usb1/1-7/1-7:1.0/input/input9
Jun 8 19:37:20 toshiba kernel: [ 2080.668170] usbcore: registered new interface driver uvcvideo
Jun 8 19:37:20 toshiba kernel: [ 2080.668174] USB Video Class driver (v0.1.0)
Jun 8 19:37:21 toshiba kernel: [ 2081.162280] usbcore: registered new interface driver snd-usb-audio
Jun 8 19:37:21 toshiba rtkit-daemon[1494]: Successfully made thread 2558 of process 1654 (/usr/bin/pulseaudio) owned by '501' RT at priority 5.


Esto de linux está cada día más aburrido!

By Casep!

junio 03, 2011

yum-plugin-remove-with-leaves

En Yum hay unos 40 plugins distintos, entre los más destacables está presto que nos ahorra enormemente tiempo y ancho de banda, o fastestmirror que seleccionará el mirror más cercano para que tengamos mejor velocidad de descarga. Presto ya viene instalado (desde Fedora 14) el resto quedan a gusto del cliente. Hoy quiero destacar yum-plugin-remove-with-leaves el que, tal como su nombre lo indica, al ser invocado eliminará todas aquellas dependencias instaladas con el paquete (una alternativa a History)

La instalación es tan fácil como

yum install yum-plugin-remove-with-leaves


Y el uso es

yum erase - remove-with-leaves


Sirve?

Por ejemplo:


yum -y install supertuxkart.i686
.
..
...
Resolving Dependencies
--> Running transaction check
---> Package supertuxkart.i686 0:0.7-2.fc15 will be installed
--> Processing Dependency: supertuxkart-data = 0.7 for package: supertuxkart-0.7-2.fc15.i686
--> Processing Dependency: opengl-games-utils for package: supertuxkart-0.7-2.fc15.i686
--> Processing Dependency: libIrrlicht.so.1.7 for package: supertuxkart-0.7-2.fc15.i686
--> Processing Dependency: libIrrXML.so.1.7 for package: supertuxkart-0.7-2.fc15.i686
--> Processing Dependency: libopenal.so.1 for package: supertuxkart-0.7-2.fc15.i686
--> Running transaction check


Luego


yum erase supertuxkart - remove-with-leaves
.
..
...
Removing:
supertuxkart i686 0.7-2.fc15 @fedora 2.5 M
Removing for dependencies:
supertuxkart-data noarch 0.7-2.fc15 @fedora 139 M


Ahora bien con yum history efectivamente desinstalamos todo :)


yum history info 25
.
..
...
Command Line : -y install supertuxkart.i686
Transaction performed with:
Installed rpm-4.9.0-6.fc15.i686
Installed yum-3.2.29-5.fc15.noarch
Installed yum-metadata-parser-1.1.4-4.fc15.i686
Installed yum-plugin-fastestmirror-1.1.30-2.fc15.noarch
Installed yum-presto-0.6.2-3.fc15.noarch


Luego


yum history undo 25
.
..
...
Removing:
irrlicht i686 1.7.2-4.fc15 @fedora 5.3 M
libaesgm i686 20090429-4.fc15 @fedora 128 k
openal-soft i686 1.12.854-2.fc15 @fedora 304 k
opengl-games-utils noarch 0.1-10.fc15 @fedora 2.4 k
supertuxkart i686 0.7-2.fc15 @fedora 2.5 M
supertuxkart-data noarch 0.7-2.fc15 @fedora 139 M


Escoja usted su veneno!

Originalmente en alemán (creo) por acá
http://www.fedora-blog.de/2011/06/yum-plugin-remove-with-leaves/

By Casep!