Linux Mintにvlc 2.1.Xをインストールする

Linux Mintにvlc 2.1.Xをインストールする

Linux Mint 16に新しいバージョンをインストールしようとしています。vlc成功せずにインストールする方法のチュートリアルを試しました。インストールしようとすると、apt-get install vlc同じバージョン2.0.8が表示されます。この問題を解決する方法。

コマンドラインの例:

Command:

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

    Output:

    You are about to add the following PPA to your system:
     This PPA contains daily builds from the VLC development branch.
     More info: https://launchpad.net/~videolan/+archive/ubuntu/master-daily
    Press [ENTER] to continue or ctrl-c to cancel adding it

    Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /tmp/tmp.DncfZniK1d --trustdb-name /etc/apt//trustdb.gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --keyserver keyserver.ubuntu.com --recv-keys 801DF724
    gpg: requesting key 801DF724 from hkp server keyserver.ubuntu.com
    gpg: key 801DF724: "Launchpad Daily Build of master branch" not changed
    gpg: Total number processed: 1
    gpg:              unchanged: 1

Command:

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

Output:

Reading package lists... Done
Reading package lists... Done
Building dependency tree       
Reading state information... Done
**vlc is already the newest version.**
The following package was automatically installed and is no longer required:
  libsvga1
Use 'apt-get autoremove' to remove it.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

これまで私は次のリンクを試しました。

http://linuxg.net/how-to-install-vlc-2-1-5-rincewind-on-ubuntu-14-04-linux-mint-17-pinguy-os-14-04-and-other- Ubuntu-14-04-デリバティブ/

Ubuntu 12.04に最新バージョンのVLC(2.1.2)をインストールする方法は?

https://www.youtube.com/watch?v=PnAocwPiU_c

答え1

以下のPPAを使用して、最新の安定版を試すことができます。

sudo add-apt-repository ppa:videolan/stable-daily
sudo apt-get update
sudo apt-get install vlc

答え2

VLCバージョンの確認

~によるとリポジトリのネットワークバージョン追加するバージョンの場合、毎日のビルドが機能する唯一のUbuntuバージョンは次のとおりです。

  1. 信頼できる - 14.04
  2. ユートピア - 14.10
  3. ビビッド - 15.04

この回答が古くなるとバージョンが変更される可能性があるため、上記のリンクで緑の「技術の詳細」行をクリックしてください。正しいバージョンをダウンロードするには、次のサイトにアクセスしてください。ミントのVLCダウンロードページ。緑色のインストールボタンをクリックした後にソフトウェアセンターに表示されるバージョンが12.0.8の場合、2.1.Xにアップデートできません。 この投稿で私の答えを確認してください。なぜ。推論は、展開に関係なく、すべてのバイナリ展開に適用されます。


なぜこのような問題が発生しますか?

MintはUbuntuの派生物なので、これはうまくいきます。ない理由は、使用しているMintバージョンが1日のビルドリポジトリで最も低いバージョンである14.04より前のUbuntuバージョンに基づいているためです。

関連情報