Utilizing debtags to Discover Similar Software
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.
Trending Topics
| You Need A Budget | Feb 10, 2012 |
| The Linux powered LAN Gaming House | Feb 08, 2012 |
| Creating a vDSO: the Colonel's Other Chicken | Feb 06, 2012 |
| Your CMS Is Not Your Web Site | Feb 01, 2012 |
| Casper, the Friendly (and Persistent) Ghost | Jan 31, 2012 |
| Razor-qt 0.4 - Qt based Desktop Environment | Jan 30, 2012 |
- Fun with ethtool
- Linux-Based X Terminals with XDMCP
- Readers' Choice Awards 2011
- 100% disappointed with the decision to go all digital.
- Parallel Programming with NVIDIA CUDA
- You Need A Budget
- Validate an E-Mail Address with PHP, the Right Way
- The Linux powered LAN Gaming House
- The Linux RAID-1, 4, 5 Code
- Python for Android
- Gnome3 is such a POS. No one
3 hours 36 min ago - Gnome 3 is the biggest POS
3 hours 47 min ago - I didn't knew this thing by
9 hours 51 min ago - Author's reply
13 hours 15 min ago - Link to modlys
14 hours 22 min ago - I use YNAB because of the
14 hours 33 min ago - Search
19 hours 37 min ago - Question
20 hours 18 sec ago - for the record
20 hours 2 min ago - That's disappointing. Thanks
22 hours 25 min ago





Comments
learn something everyday!
Very nice, I never knew about debtags. Thanks!
install it first
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.