WineHQ Stable을 설치할 수 없습니다(패키지가 손상되었습니다).

WineHQ Stable을 설치할 수 없습니다(패키지가 손상되었습니다).

Elementaryos Hera에 Wine을 설치하고 이것을 따르고 싶습니다.장소. 내가 저지른 유일한 실수는 우분투 저장소에서 와인을 설치한 다음 공식 와인 저장소에서 와인을 설치하려고 시도했다는 것입니다. 그러다가 wine을 두 번 설치했기 때문에 명령어를 이용해서 wineHQ stable을 설치했더니 sudo apt-get install --install-recommends winehq-stable제대로 작동하지 않더라고요. 그래서 터미널에 가서 명령을 사용하여 dpkg --list어떤 와인 기반 소프트웨어가 설치되어 있는지 확인하고 sudo apt-get --purge remove program실제로 설치된 모든 소프트웨어를 제거했습니다.와인그 이름으로. 이제 공식 저장소에서 Wine을 다시 설치한 다음 WineHQ Stable용 키를 추가하고 위에서 언급한 첫 번째 명령을 사용하여 설치를 시도했습니다. 그런데 이런 메시지를 받았어요

thenotorious@T430:~$ sudo apt-get install --install-recommends winehq-stable 
[sudo] password for thenotorious: 
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:   
winehq-stable : Depends: wine-stable (= 5.0.1~bionic)
E: Unable to correct problems, you have held broken packages.

이 문제를 어떻게 해결할 수 있나요? 누군가 나를 도와주세요. 손상된 패키지를 제거하는 방법을 검색했지만 와인의 모든 폴더를 제거하고 삭제했기 때문에 제거해야 하는 패키지를 찾을 수 없으며 부패 포럼 패키지로 인해 wineHQ stable을 설치할 수 없는 것에 대해 검색했지만 그렇지 않습니다. 별로 도움이 안 돼요.

답변1

먼저 와인을 제거합니다.

  • PPA는 "소프트웨어 및 업데이트" 유틸리티를 실행하고 "기타 소프트웨어" 탭으로 이동하여 제거할 수 있습니다. 여기에 이미지 설명을 입력하세요.

wine 6.0을 제거하려면 터미널에서 다음 명령을 실행하세요.

sudo apt remove --auto-remove winehq-stable

Wine을 다시 설치하십시오 (다음 명령을 실행하십시오)

sudo dpkg --add-architecture i386

wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main' (only Ubuntu 20.04)

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ groovy main' (only Ubuntu 20.10)

sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main' (only Ubuntu 18.04)

sudo apt update && sudo apt install --install-recommends winehq-stable

답변2

winehq-stable공식 저장소에서는 찾을 수 없습니다. ppa에서 가져온 것 같거나 wine.org에서 설치한 것 같습니다.

검색하는 동안 문제가 발생했습니다 wine-stable. 나는 그것이 존재한다는 것을 발견했습니다.공식 바이오닉 저장소. wine-stableuniverse섹션에 위치합니다.

universe섹션은 우분투 코어 팀에서 지원하지 않는 패키지에 대한 것입니다. 시스템에서는 기본적으로 이를 활성화하지 않습니다. /etc/apt/sources.list또는 를 확인하세요 /etc/apt/sources.list.d/*. 아래와 같은 내용이 표시되지 않으면 계속해서 추가하세요(다른 항목에서 사용하는 미러와 일치하도록 URL을 변경하세요).

## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://nl.archive.ubuntu.com/ubuntu/ bionic universe
# deb-src http://nl.archive.ubuntu.com/ubuntu/ bionic universe

추가한 후 계속해서 apt update다시 시도하세요. 다시 문제가 발생하면 시도해 보세요 apt --fix-broken install.

관련 정보