0

Is using deb-get the fastest way to install a app, eg I wanna install uTorrent, so would I preinstall from GitHub deb-get?

Then afterwards would I download uTorrent official for Linux, then run sudo apt install then drag and drop the downloaded file from Firefox? Or would I need to add sudo apt install latest and then drag and drop?

karel
  • 114,770

1 Answers1

4

This answer will try to clear up some confusions in your question, and thus might or might not directly answer your question.

  1. deb-get is a 3rd party application to install selected software packages that are not in the Ubuntu repositories. The list is available here, and uTorrent is NOT on that list - so this can't be installed with deb-get.

  2. While it seems uTorrent is still developed, clearly their website and Linux ports are not. The latest official uTorrent version for Ubuntu is for Ubuntu 13.04, which is absolutely ridiculous (pardon my french). This is a HUGE red flag for me, and I would consider other options.

  3. If you were actually to install software using deb-get, you wouldn't need to do anything in the GUI - so everything about "drag and drop" and "Firefox" is completely out of the question here.

  4. Finally, for installing software inside the repositories (or from files you've manually downloaded), you would need to run sudo apt install <packagename>. This is the completely standard way of doing it, but you don't do this if you install in another way (such as with deb-get).

  5. As suggested by @mook765, a good alternative is qBitTorrent, which is available in the Universe repository. So after you've enabled the Universe repository, you can install this package with: sudo apt install qbittorrent

Hopefully this will help clear up some misunderstandings.

Artur Meinild
  • 26,018