web-dev-qa-db-ja.com

14.4にwine1.7をインストールする依存関係についてはどうすればよいですか

user@chrubuntu:~$ Sudo apt-get install wine1.7   
[Sudo] password for user: 
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:
 wine1.7 : Depends: wine1.7-i386 (= 1:1.7.19-0ubuntu2~trusty2) but it is not         installable
       Recommends: gnome-exe-thumbnailer but it is not going to be installed or
                   kde-runtime but it is not going to be installed
       Recommends: ttf-mscorefonts-installer but it is not going to be installed
       Recommends: fonts-horai-umefont but it is not going to be installed
       Recommends: fonts-unfonts-core but it is not going to be installed
       Recommends: ttf-wqy-microhei
       Recommends: winetricks but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
user@chrubuntu:~$ 

Ubuntu 14.04 64ビットにwine1.7をインストールしようとしていますが、これが何を意味するのかよくわかりません。私はすでにSudo apt-get updateを実行し、これを取得します:

Reading package lists... Done
W: Duplicate sources.list entry http://dl.google.com/linux/chrome/deb/ stable/main AMD64 Packages (/var/lib/apt/lists/dl.google.com_linux_chrome_deb_dists_stable_main_binary-AMD64_Packages)
W: You may want to run apt-get update to correct these problems

だから私はapt-get updateを実行し、

E: Could not open lock file /var/lib/apt/lists/lock - open (13: Permission denied)
E: Unable to lock directory /var/lib/apt/lists/
E: Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?

過去1週間Wineを入手しようとしていて、再インストールしなければならなかったため、これはすべて非常にストレスの多い作業です。

4
user285207

I386サポートが不足しているようです。追加してみてください。

Sudo dpkg --add-architecture i386
Sudo apt-get update
Sudo apt-get install wine
7
user294023

次の3つのコマンドを実行してみてください。

Sudo add-apt-repository ppa:ubuntu-wine/ppa
Sudo apt-get update
Sudo apt-get install wine1.7

これを実行した後、重複したワインエントリに関するメッセージが表示される場合は、実行してみてください

Sudo add-apt-repository ppa:ubuntu-wine/ubuntu -r
Sudo apt-get update

最後にある-rは、add-apt-repositoryにppaを追加するのではなく、削除するように指示することに注意してください。

また、ルートユーザーとしてお気に入りのテキストエディタを実行して、/ etc/apt/sources.listからGoogleエントリを削除することもできます(たとえば、Sudo gedit /etc/apt/sources.list)。ファイルを保存し、Sudo apt-get updateを実行します。

0
TSJNachos117
  1. お気に入りのテキストエディタを使用して/etc/apt/sources.listを開きます(最初にバックアップを作成します)
  2. 変化する

    deb http://de.archive.ubuntu.com/ubuntu/ trusty universe
    

    deb [Arch=AMD64,i386] http://de.archive.ubuntu.com/ubuntu/ trusty universe
    
  3. これらのコマンドを実行する

    Sudo add-apt-repository ppa:ubuntu-wine/ppa
    Sudo dpkg --add-architecture i386
    Sudo apt-get update
    
  4. 最後に、aptitudeを使用してワインをインストールします

    Sudo aptitude --full-resolver -f install wine1.7
    
0
Vivek

重複したソースに関するメッセージは単なる警告であり、無視しても問題ありません。試してみる

Sudo apt-get -f install

パッケージを「修復」するために、不足しているすべての依存関係をインストール(試行)します(-fは「修正」用です)。

0
fkraiem