From: Petter Reinholdtsen One thing that annoys me with Debian and Linux distributions in
general, is that there is a great package management system with the
ability to automatically install software packages by downloading them
from the distribution mirrors, but no way to get it to automatically
-install the packages I need to run the hardware I plug into my
-machine. When I plug in a LEGO Mindstorms NXT, it could suggest to
-automatically install the python-nxt, nbc and t2n packages I need to
-talk to it. When I plug in a Yubikey, it could propose the
+install the packages I need to use the hardware I plug into my
+machine. Even if the package to use it is easily available from the
+Linux distribution. When I plug in a LEGO Mindstorms NXT, it could
+suggest to automatically install the python-nxt, nbc and t2n packages
+I need to talk to it. When I plug in a Yubikey, it could propose the
yubikey-personalization package. The information required to do this
-is available, but no-one pulled all the pieces together yet.
Many years ago, I proposed to use the discover subsystem to -implement this. The idea is fairly simple: +
Many years ago, I proposed to +use +the discover subsystem to implement this. The idea is fairly +simple:
I am not sure what the best way to implement this is, but my initial idea was to use dbus events to discover new hardware, the -discover database to find packages and packagekit to install +discover database to find packages and +PackageKit to install packages.
Yesterday, I found time to try to implement this idea, and the -draft package is now checked the Debian Edu subversion repository. In -the process, I updated the discover-data package to map the USB ids of -LEGO Mindstorms and Yubikey devices to the relevant packages in -Debian, and uploaded a new version 2.2013.01.09 to unstable. I also -discovered that the current discover package in Debian no longer found -any USB devices, because /proc/bus/usb/devices no longer is present, -and ported it to use libusb as a fall back option. The fixed package -version 2.1.2-6 is now in experimental.
+draft package is now checked into +the +Debian Edu subversion repository. In the process, I updated the +discover-data +package to map the USB ids of LEGO Mindstorms and Yubikey devices to +the relevant packages in Debian, and uploaded a new version +2.2013.01.09 to unstable. I also discovered that the current +discover +package in Debian no longer found any USB devices, because +/proc/bus/usb/devices no longer is present, and ported it to use +libusb as a fall back option. The fixed package version 2.1.2-6 is +now in experimental.With this prototype in place, I can insert my Yubikey, and get this -desktop notification to show up:
+desktop notification to show up (only once, the first time it is +inserted):For this prototype to be really useful, some way to install the -proposed packages need to be implemented too.
+For this prototype to be really useful, some way to automatically +install the proposed packages by pressing the button should to be +implemented.
-If this this seem useful to you, and you want to help make it +
If this idea seem useful to you, and you want to help make it happen, please help me update the discover-data database with mappings from hardware to Debian packages. Check if 'discover-pkginstall -l' list the package you would like to have installed when a given @@ -67,9 +77,11 @@ such mapping, please let me know.
This prototype need more work, and there are several questions that should be considered before it is ready for production use. Is dbus the correct way to detect new hardware? At the moment I look for HAL -dbus events on the system bus. Are there better events to use? How -should the user be notified? Is the desktop notification mechanism -the best option? How should packages be installed? When should they +dbus events on the system bus, because that is the events I could see +on my Debian Squeeze KDE desktop. Are there better events to use? +How should the user be notified? Is the desktop notification +mechanism the best option, or should the background daemon raise a +popup instead? How should packages be installed? When should they not be installed?
If you want to help getting such feature implemented in Debian,