답변:
그것의 버전은 winetricks
우분투 설치 버전 과 함께 제공되는 경우가 많으며, 최신 PPA 에서 제공되는 버전조차도 약간 지연 될 수 있습니다. 기본 설치와 상관 없이 winetricks
수동으로 업데이트하는 것이 좋으며 매우 안전한 방법입니다. 몇 가지 간단한 단계를 수행하면됩니다.Wine
1. 최신 버전을 확인하고 이전 버전을 제거하십시오.
이 편리한 단일 라이너로 업스트림에서 사용 가능한 최신 버전 이 무엇인지 먼저 확인하십시오 .
curl --silent --show-error \
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr - \
| grep ^WINETRICKS_VERSION | cut -d '=' -f 2
이 자신의 설치된 버전을 압도 경우 (보는 당신의 실행 버전 winetricks --version
현재 설치된 버전을 제거 명령 줄에서을) :
sudo apt-get remove winetricks
2. 최신 버전을 설치하십시오.
그런 다음 최신 버전을 다운로드하여 설치하십시오.
wget https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
chmod +x winetricks
sudo mv -v winetricks /usr/local/bin
내 시스템에서 시연 한 것처럼 최신 버전을 테스트 할 수 있습니다.
andrew@ilium~$ winetricks --version
20190912-next - sha256sum: 4b994d981a7b6abe1f0edb6a57d8c15b1f060cf08de8819f9147e31ababf35a6
andrew@ilium~$
3. 추가 사항을 추가하고 최신 구문을 확인하십시오.
winetricks
대부분의 응용 프로그램 이 이미 와인 복사본과 함께 설치되어 있어야 하지만 실행에 필요한 몇 가지 '도우미'응용 프로그램이 있는지 확인하는 것이 좋습니다 .
sudo apt-get install cabextract p7zip unrar unzip wget zenity
그런 다음 이전 버전에서 변경되었을 수있는 올바른 사용법을 확인하십시오.
andrew@illium~$ winetricks -h
Usage: /usr/local/bin/winetricks [options] [command|verb|path-to-verb] ...
Executes given verbs. Each verb installs an application or changes a setting.
Options:
--country=CC Set country code to CC and don't detect your IP address
--force Don't check whether packages were already installed
--gui Show gui diagnostics even when driven by commandline
--isolate Install each app or game in its own bottle (WINEPREFIX)
--self-update Update this application to the last version
--update-rollback Rollback the last self update
-k, --keep_isos Cache isos (allows later installation without disc)
--no-clean Don't delete temp directories (useful during debugging)
-q, --unattended Don't ask any questions, just install automatically
-r, --ddrescue Retry hard when caching scratched discs
--showbroken Even show verbs that are currently broken in wine
-t --torify Run downloads under torify, if available
--verify Run (automated) GUI tests for verbs, if available
-v, --verbose Echo all commands as they are executed
-h, --help Display this message and exit
-V, --version Display version and exit
Commands:
list list categories
list-all list all categories and their verbs
apps list list verbs in category 'applications'
benchmarks list list verbs in category 'benchmarks'
dlls list list verbs in category 'dlls'
games list list verbs in category 'games'
settings list list verbs in category 'settings'
list-cached list cached-and-ready-to-install verbs
list-download list verbs which download automatically
list-manual-download list verbs which download with some help from the user
list-installed list already-installed verbs
prefix=foobar select WINEPREFIX=/home/andrew/.local/share/wineprefixes/foobar
annihilate Delete ALL DATA AND APPLICATIONS INSIDE THIS WINEPREFIX
andrew@illium~$
4. 다음 단계를 안전하게 되 돌리십시오.
어떤 이유로 이전 리포지토리 버전으로 돌아가려면 다음을 실행하면됩니다.
sudo rm /usr/local/bin/winetricks
sudo apt-get install winetricks
그리고 모든 것이 그랬습니다.
참고 문헌 :
/usr/local/bin
또는 ~/bin
그러나 확실하게 /usr/bin
작동합니다.
winetricks
실제로 3 년 전 (2014 년 8 월 대신 2017 년 8 월)! →이 조언은 여전히 훌륭하고 유효합니다.
Disco 및 Eoan에서 사용 가능한 winetricks 버전은 스스로 업데이트 할 수 있습니다 [1] .
19.04 이상을 사용하는 경우 다음을 실행하십시오.
sudo apt install winetricks
sudo winetricks --self-update
이전 버전의 Ubuntu를 사용하는 경우 https://packages.ubuntu.com/eoan/all/winetricks/download 에서 .deb 패키지를 가져올 수 있습니다.
sudo mv -v winetricks /usr/bin
하는 대신?