I'm new at Ubuntu so I don't know very well how to use the terminal in order to download and install programs that aren't in the software center. I've tried without success downloading and installing Handbrake.
Could anybody help me, guiding me through the downloading and installation of Handbrake?
There are two official HandBrake PPAs,
ppa:stebbins/handbrake-releases
andppa:stebbins/handbrake-git-snapshots
.The former contains stable releases, which are updated about once a year. These releases tend to be rather out-dated when their end-of-life is approaching. The current stable version (0.9.8) was released on 2012-07-18.
The latter contains nightly builds, which are updated daily (or nightly, as it were). These are of course less stable, and undocumented to boot, but they are good software nonetheless. Additionally, as the stable release ages, the developers tend to start recommending users to try the nightly builds instead.
To add one of these to your sources, simply run:
or
depending on which you want. To install HandBrake with the GUI, run:
Alternatively, if you would prefer the CLI (command-line interface) over the GUI, replace the last line with:
The handbrake ppa has been updated with the latest version of handbrake.
PPA
To install copy/paste the next lines of codes one by one in your gnome-terminal
Currently supports: Raring (13.04), Quantal (12.10), Precise (12.04), Oneiric (11.10), Natty (11.04), Maverick (10.10), Lucid (10.04), Karmic (9.10).
Note: You can still install the latest version of handbrake on Ubuntu 13.10, by manually downloading the appropriate
.deb
files:handbrake-cli_0.9.9ppa1~quantal1_amd64.deb
handbrake-gtk_0.9.9ppa1~quantal1_amd64.deb
I managed to install them on my Ubuntu 13.10 amd64 without issues
From source
If you want to compile it from source, here is what worked for me:
first install dependencies.
Then download and compile
Source:
HandBrake is available in the Ubuntu Software Center, search for it
If you have not made any changes to your Software Sources, you should be directed to an install page instead of what is in the above image. To add the "universe" source to your sources, go to Edit>Software Sources and check under the tab Ubuntu Software the "Community-maintained free and open-source software (universe)" and close.
Or just click the button to use that source.
Handbrake doesn't have any ppa support in 12.04. If you've tried adding the PPA's and still get the error, this solution resolved the problem for me
You need to do the update process twice, first time to remove the invalid ppas from the hit list, and the second time adds the correct PPA.
I had to add these packages to compile on Ubuntu 12.04 LTS:
The binary is then in
build/gtk/src
(ghb), and you can run it directly without usingmakeinstall
.None of the previous solutions worked for me with Ubuntu 13.10. The one involving "bzr" fell over with:
However I managed to get it working by downloading directly and installing using dpkg. (taken from http://ubuntuhandbook.org/index.php/2013/10/install-handbrake-in-ubuntu-13-10-saucy/)
For 32-bit:
For 64-bit:
Then install sudo dpkg -i handbrake-gtk_0.9.9ppa1~raring1_*.deb
and fix dependencies sudo apt-get -f install
Please tell me in the comments if you know what library I'm missing for the "bzr" option to work. I've got a fairly new Ubuntu install.
Cheers, Stuart.