I'm running Ubuntu 12.04.03 LTS and have installed qBittorrent v2.9.7 via the Ubuntu software center. But where can I find this program in the file system. I need that in order to define magnet in Firefox Edit/Preferences/Applications.
I'm running Ubuntu 12.04.03 LTS and have installed qBittorrent v2.9.7 via the Ubuntu software center. But where can I find this program in the file system. I need that in order to define magnet in Firefox Edit/Preferences/Applications.
To start qbittorrent, just search for it in Dash, or just type
qbittorrent
in terminal.To associate magnet links to qBittorrent in Firefox: Edit --> Preferences --> Applications tab Then type magnet in the search box. Select qbitorrent as your default application; other wise search for it.
qBittorrent is in
/usr/bin/qbittorrent
as can be seen here http://packages.ubuntu.com/precise/i386/qbittorrent/filelistWarning: All of the other answers here are completely wrong and mislead people into editing browser settings...
Here's the correct way of assigning qBittorrent as the default:
Bonus: If your system lacks
gio
(GLib2), you can instead set the mime-type handlers viaxdg-mime default org.qbittorrent.qBittorrent.desktop <mimetype>
where<mimetype>
is each of the two types described above. As far as I know, both tools interact with the same internal database at~/.config/mimeapps.list
, butgio
is easier to use.To find the full path to any executable in any version of Linux, open a terminal window and enter
whereis executable
(substituting the program you wish to find for the word executable). That command will return with the path to the executable file.http://linux.die.net/man/1/whereis provides more information on the whereis command.