우분투에 와인을 설치하는 방법은 무엇입니까?

우분투에 와인을 설치하는 방법은 무엇입니까?

새로운 설명: 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/Ubuntu유튜브 영상도 있는데 모두 같은 오류로 끝납니다(위)

어떤 아이디어가 있나요?

답변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루트로 실행 중이므로 사용할 필요가 없습니다 .

관련 정보