web-dev-qa-db-ja.com

VLCインストールの問題(ターミナルからのインストール)

UbuntuにVLCをインストールしたかったのですが、機能していなかったため、更新されたシステムではなく、アップグレードされましたが、まだ機能していません。

そのためにUbuntuソフトウェアセンターとターミナルの両方を使用しました。

端末でSudo apt-get install vlcコマンドを入力しました

ターミナルから表示されるエラーメッセージは次のとおりです。

arif@arifpc:~$ Sudo apt-get install vlc
[Sudo] password for arif: 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 vlc : Depends: vlc-nox (= 2.2.0~rc1-1ppa2~trusty) but it is not going to be installed
       Depends: libavcodec56 (>= 7:2.4~) but it is not going to be installed
       Depends: libgles1-mesa (>= 7.8.1) but it is not installable or
                libgles1 but it is not installable
       Depends: libsdl-image1.2 (>= 1.2.10) but it is not installable
       Depends: libsdl1.2debian (>= 1.2.11) but it is not installable
       Depends: libva-drm1 but it is not installable
       Depends: libva-x11-1 (> 1.3.0~) but it is not installable
       Depends: libva1 (> 1.3.0~) but it is not installable
       Depends: libvlccore8 (>= 2.2.0~pre1) but it is not going to be installed
       Depends: libxcb-composite0 but it is not installable
       Depends: libxcb-xv0 (>= 1.2) but it is not installable
       Recommends: vlc-plugin-notify (= 2.2.0~rc1-1ppa2~trusty) but it is not going to be installed
       Recommends: vlc-plugin-samba (= 2.2.0~rc1-1ppa2~trusty) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

注:Ubuntu 14.04 LTSを使用しています

7
Bangash

実際、私はこの問題を同じ日に解決しました。問題は最も近いarchive.ubuntu.com(Ubuntu Archive Server)にあり、そのすべてのインスタンス(私の場合は13回)をus.archive.ubuntu.comに変更しました。この設定を変更した構成ファイルは/etc/apt/sources.listでした。

Edit:最近、私はaskubuntuに関する別の質問を見つけました。この質問に対する受け入れられた答えは、変更したくない場合、この問題に対する素晴らしい解決策でもありますarchive.ubuntuアドレス。
ここにその質問があります。

0
Bangash

これは、Ubuntu 14.04から14.10にアップグレードした後に起こりました。

私はこれを見つけました Solution それは私を助けました。

あなたは xorg-edgers fresh X crack リポジトリのターミナルにこのコードを追加する必要があります

Sudo add-apt-repository ppa:xorg-edgers/ppa 
apt-cache policy libgl1-mesa-glx libglapi-mesa

次に、PCを再起動します。次に、次のコマンドでリポジトリを更新し、VLCをインストールします。

Sudo apt-get update
Sudo apt-get install vlc
6
Aby

aptitudeを使用すると、この問題を解決できます。

ソース

BUNTU.irコミュニティの私のトピック

Solution

Sudo apt install aptitude

Sudo aptitude install vlc

次を選択する必要があります。n

その後、ターミナルは出力します

Downgrade the following packages:                                          
1)     libgl1-mesa-glx [12.0.6-0ubuntu0.16.04.1 (now) -> 11.2.0-1ubuntu2 (xenial
2)     libglapi-mesa [12.0.6-0ubuntu0.16.04.1 (now) -> 11.2.0-1ubuntu2 (xenial)]

Accept this solution? [Y/n/q/?] y 

現在、aptitudeはパッケージに応じてダウングレードし、vlcをインストールします。

0
EsmaeelE

次のコマンドを実行します

Sudo apt-get -f install

Sudo dpkg --configure -a

これにより、不足している依存関係がすべてインストールされ、dpkgが構成されます。

0
Rohith Madhavan