web-dev-qa-db-ja.com

Ubuntu 19.10のWineHQ

私はwineの手順に従ってwinehqをインストールしていますが、できることはすべて完了したようですが、このエラーが発生し続けます。

The repository 'http://ppa.launchpad.net/wine/wine-builds/ubuntu eoan Release' does not have a Release file.
E: The repository 'http://ppa.launchpad.net/wine/wine-builds/ubuntu eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.

私がここからどこへ行くべきかについて誰かが明かすことができたら、私はそれを感謝します。ありがとう。

以下は、以下の提案を試した後の更新された出力です。

antonio@mclinux:~$ Sudo dpkg --add-architecture i386 
antonio@mclinux:~$ wget -nc -qO- https://dl.winehq.org/wine-builds/winehq.key | Sudo apt-key add -
OK
antonio@mclinux:~$ Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main'
Hit:1 http://br.archive.ubuntu.com/ubuntu eoan InRelease
Hit:2 http://ppa.launchpad.net/ricotz/unstable/ubuntu eoan InRelease
Hit:3 http://br.archive.ubuntu.com/ubuntu eoan-updates InRelease    
Hit:4 http://security.ubuntu.com/ubuntu eoan-security InRelease                                
Hit:5 http://br.archive.ubuntu.com/ubuntu eoan-backports InRelease                             
Ign:6 http://ppa.launchpad.net/wine/wine-builds/ubuntu eoan InRelease                          
Hit:7 https://dl.winehq.org/wine-builds/ubuntu eoan InRelease            
Err:8 http://ppa.launchpad.net/wine/wine-builds/ubuntu eoan Release      
  404  Not Found [IP: 91.189.95.83 80]
Reading package lists... Done
E: The repository 'http://ppa.launchpad.net/wine/wine-builds/ubuntu eoan Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

何が起こっているのかわかりますか?

乾杯、

5
Antonio Santos

does not have a release fileリポジトリがUbuntuリリースをサポートしていないことを示します。この場合は、Ubuntu Eoan→19.10です。

非推奨/古いリポジトリを追加しました。開発者はこの問題に関する発表をWineHQメーリングリストに掲載しました https://www.winehq.org/pipermail/wine-devel/2017-March/117104.html

Wineをインストールするための新しいガイドに従う必要があります。幸いにも、Wineチームは19.10で使用できる完全なガイドを site —に投稿することでこれを簡単にしています。

Sudo dpkg --add-architecture i386 
wget -nc -qO- https://dl.winehq.org/wine-builds/winehq.key | Sudo apt-key add -
Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main'

次に、パッケージをインストールします。

Sudo apt install --install-recommends winehq-staging

https://dl.winehq.org/wine-builds/ubuntu/dists/eoan/main/binary-AMD64/ によると、利用可能なバージョンは次のとおりです:stagingdevel


更新

新しいリポジトリは正常に機能します。以前に追加した古い古いリポジトリを削除していないだけです。

Sudo add-apt-repository --remove ppa:wine/wine-builds
Sudo apt update

これでエラーは発生しないはずです。

6
Liso

19.10の私のソリューション;(Ubuntu 19.10で私のために働いた)

このリポジトリを使用しないでください:

Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ eoan main'

このリポジトリを使用:

Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/bionic main'

「eoan main」はwinehq公式ウェブサイトで推奨されていますが、機能しません。 19.10で19.04リポジトリを使用しようとすると、うまく動作します:)

WineHQを19.10で使用する場合は、次のコマンドを入力します

(「root」ユーザーに切り替えます。)

Sudo dpkg --add-architecture i386 
wget -nc https://dl.winehq.org/wine-builds/winehq.key
Sudo apt-key add winehq.key
rm -rf winehq.key
Sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ disco main'
Sudo apt update
Sudo apt install --install-recommends winehq-stable

テストするには、次のコマンドを入力します。

winecfg
3
Hasan Merkit