Ubuntuにワインをインストールする方法は?

Ubuntuにワインをインストールする方法は?

新しい説明:Ubuntu 18.04.1 LTSにWineをインストールしようとしています。

404  Not Found [IP: 91.189.*.* 80]
:3 https://dl.winehq.org/wine-builds/ubuntu bionic InRelease

E: The repository 'http://ppa.launchpad.net/wine/wine-builds/ubuntu bionic               
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.

sudo dpkg --add-architecture i386 
wget -nc https://dl.winehq.org/wine-builds/Release.key
sudo apt-key add Release.key
sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/
sudo apt-get update
sudo apt-get install --install-recommends winehq-stable

公式ホームページで試してみました。https://wiki.winehq.org/UbuntuYouTubeのビデオもありますが、すべて同じエラーで終わります(上記)

どんなアイデアがありますか?

ベストアンサー1

以下を実行してインストールできました。

/etc/apt/sources.listテキストエディタを使用して、次の行を追加します。

deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main

次:

apt-get update

最後:

apt-get install --install-recommends winehq-stable

パッケージが正常にインストールされました。sudoルートとして実行しているため、使用する必要はありません。

おすすめ記事