VLC media player installation on Ubuntu 14.04

118,649

Solution 1

As of 2015-09-23, the latest VLC version for Ubuntu 14.04 (Trusty Tahr) provided by this repository is 2.2.1.

Open a terminal and run (for 14.04):

sudo add-apt-repository ppa:mc3man/trusty-media
sudo apt-get update
sudo apt-get install vlc vlc-plugin-*

For other versions, see here.

Solution 2

To install VLC media player on Ubuntu you can try to open your terminal (Ctrl+Alt+T) and type:

sudo apt-get install vlc

If there are errors, you are welcome to paste the output so people will be able to help you.

You can try to disable IPv6 on your box. Sometimes it can be an issue. To disable IPv6, add the following to /etc/sysctl.conf:

net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
net.ipv6.conf.lo.disable_ipv6 = 1

After that open your terminal (Ctrl+Alt+T) and type:

sudo sysctl -p && sudo apt-get update && sudo apt-get install vlc
Share:
118,649

Related videos on Youtube

HDB
Author by

HDB

Updated on September 18, 2022

Comments

  • HDB
    HDB over 1 year

    I have searched for many options on the Internet to install VLC media player on Ubuntu 14.04 (Trusty Tahr), but nothing is working for me.

    How can I fix this problem?

    Errors:

    root@hiteshb-To-be-filled-by-O-E-M:~# apt-get install vlc
    Reading package lists... Done
    Building dependency tree
    Reading state information... Done
    The following extra packages will be installed:
      libavcodec54 libavformat54 libchromaprint0 libmp3lame0 libvlc5 libvlccore7
      vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
    Suggested packages:
      libchromaprint-tools python-acoustid videolan-doc
    Recommended packages:
      libdvdcss2
    The following NEW packages will be installed:
      libavcodec54 libavformat54 libchromaprint0 libmp3lame0 libvlc5 libvlccore7
      vlc vlc-data vlc-nox vlc-plugin-notify vlc-plugin-pulse
    0 upgraded, 11 newly installed, 0 to remove and 0 not upgraded.
    
    E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
    
    • Nymeria
      Nymeria almost 10 years
      try to type : " sudo apt-get update && sudo apt-get upgrade " before type " apt-get install vlc "
  • Alex Kondratiev
    Alex Kondratiev almost 10 years
    Try do the following: sudo apt-get update && apt-get install --fix-missing vlc
  • HDB
    HDB almost 10 years
    i got following error "Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?"
  • Alex Kondratiev
    Alex Kondratiev almost 10 years
    Check out my update, IPv6 could be an issue.
  • HDB
    HDB almost 10 years
    Same issue is generated, thanks for all your efforts, but still its giving same Error.
  • HDB
    HDB almost 10 years
    Hello, I have tried to install from ubuntu softawre center but i am still not able to install VLC Player.I am getting error like Failed to fetch archive.ubuntu.com/ubuntu/pool/universe/l/lame/… Size mismatch
  • Itachi Sama
    Itachi Sama almost 10 years
    Try sudo apt-get install -f
  • Byte Commander
    Byte Commander over 8 years
    Maybe you want to add the currently latest version provided there?