Utilizing debtags to Discover Similar Software
June 10th, 2009 by Kristian Erik Hermansen in
Problem: you're running your favorite application when you realize that there's a feature you want that is not yet implemented. You could write this feature yourself, but perhaps there is a similar application that has already implemented it for you.
Solution: someone tells you to check out debtags, a feature of Debian-derived distributions that allows users to discover similar software packages based on the tags associated with a myriad of DEB packages. Let's utilize debtags to find an alternative for our favorite command line MP3 player, mpg123.
First, we must update the debtags database.
$ sudo debtags update
Then, we can start searching!
$ debtags related mpg123 -d 1 madplay - MPEG audio player in fixed point mpg321 - mpg123 clone that doesn't use floating point
From the output, you can see that there appears to be a suitable alternative called mpg321. How nice! The '-d' option specifies the relevancy of the results. The default is 0, but the higher the value, the less relevant your results will be. Keep this in mind as you run your queries. The best solution I have found is to start at 0 and work your way up until your query returns some results. A value of 1 will not suffice for all package searches — we could whip up a script, but then again, I'm too lazy.
It's also possible to see the tags associated with an application.
Let's take a look at what types of tags are assigned to mpg123 that helped debtags find related software.
$ debtags tag ls mpg123 interface::commandline role::program sound::player use::playing works-with::audio works-with-format::mp3
Now, related software substitutes should have similar tags, right?
$ debtags tag ls mpg321 interface::commandline role::program scope::utility sound::player use::playing works-with::audio works-with-format::mp3
This is exactly how debtags works with the '-d' option. The relevancy is determined based on the frequency of tag matches across possible alternative applications. We can also just search for software based on certain tags. Let's expand our mind and see all the sound players available:
$ debtags search sound::player adplay - console-based OPL2 audio player akode - (short description not available) allegro-examples - example programs and demo tools for the Allegro library alsaplayer - (short description not available) alsaplayer-alsa - PCM player designed for ALSA (ALSA output module) alsaplayer-common - PCM player designed for ALSA (common files) alsaplayer-daemon - PCM player designed for ALSA (non-interactive version) ...[snipped]...
To veiw all of the possible tags that we can search for:
$ debtags tagcat Facet: accessibility Description: Accessibility Support Accessibility Support Tag: accessibility::TODO Description: Need an extra tag Need an extra tag ...[snipped]...
To dump the entire package-to-tag database mappings:
$ debtags cat 2vcard: implemented-in::perl, role::program, use::converting 3dchess: game::board, game::board:chess, implemented-in::c, ... 3ddesktop: game::toys, interface::3d, role::program, ... 44bsd-rdist: admin::file-distribution, interface::commandline, ... 4g8: admin::monitoring, protocol::ip, protocol::tcp, ... 6tunnel: interface::daemon, network::server, network::vpn, ... 855resolution: admin::configuring, hardware::video, ... ...[snipped]...
I encourage you to read over the man page for even more advanced debtags kung-fu. There are even options to add your own custom tags and even submit tags for packages that have incorrect or outdated information. debtags is a wonderful utility, so have fun with it! Post your comments below if you have further questions or tips :-)
__________________________
Kristian Erik Hermansen is a Linux Journal Reader Advisory Panelist. Track Me.
Special Magazine Offer -- Free Gift with Subscription
Receive a free digital copy of Linux Journal's System Administration Special Edition as well as instant online access to current and past issues. CLICK HERE for offer
Linux Journal: delivering readers the advice and inspiration they need to get the most out of their Linux systems since 1994.
Subscribe now!
The Latest
Newsletter
Tech Tip Videos
- Nov-19-09
- Nov-04-09
Recently Popular
From the Magazine
December 2009, #188
If last month's Infrastrucuture issue was too "big" for you then try on this month's Embedded issue. Find out how to use Player for programming mobile robots, build a humidity controller for your root cellar, find out how to reduce the boot time of your embedded system, and if you're new to embedded systems find out the basics that go into one. You can also read about the Beagle Board, the Mesh Potato and a spate of other interestingly named items. And along with our regular columns don't miss our new monthly column: Economy Size Geek.
Delicious
Digg
StumbleUpon
Reddit
Facebook








learn something everyday!
On June 11th, 2009 Anonymous (not verified) says:
Very nice, I never knew about debtags. Thanks!
install it first
On June 10th, 2009 Kristian Erik Hermansen says:
I probably should have mentioned that debtags is not installed by default. That should actually be your first step :-)
__________________________$ sudo aptitude install debtags
Kristian Erik Hermansen is a Linux Journal Reader Advisory Panelist. Track Me.
Post new comment