Ubuntu – How to update VLC to the latest version

ppavlc

As VLC 2.0 is released, how do I get it in Ubuntu (XUbuntu actually, in my case) 11.10? Any PPAs or packages to download? The official page says "Ask your favorite packager…"

Best Answer

I've just found the official VLC PPA.

Stable version snapshots

For the current stable version of VLC that is ppa:videolan/stable-daily (currently version 2.0)

Add it to your system

sudo add-apt-repository ppa:videolan/stable-daily

Update and upgrade / install VLC

sudo apt-get update && sudo apt-get install vlc

For the daily master snapshots

For the master daily (testing) that is ppa:videolan/master-daily (currently version 2.1)

Add it to your system

sudo add-apt-repository ppa:videolan/master-daily

Update and upgrade / install VLC

sudo apt-get update && sudo apt-get install vlc

For more information about PPAs please visit the following post

Related Question