Ubuntu 19.10 上の WineHQ

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.

何が起こっているのか見てもらうのを手伝ってもらえますか?

乾杯、

答え1

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 で使用できます。

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/、利用可能なバージョンは次のもののみです:stagingおよびdevel


アップデート

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

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

今ならエラーは発生しないはずです。

答え2

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 リポジトリを使用してみると、問題なく動作します :)

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

(「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

関連情報