Ubuntuでwinetricksの最新バージョンを入手するにはどうすればよいですか?


20

私はインストールWineしましたが、現在のバージョンにはかなり満足していwinetricksますが、さまざまなエラーメッセージが何度も表示されます。

winetricksUbuntuで最新バージョンを入手するにはどうすれば更新できますか?

回答:


24

winetricks在庫のUbuntuインストールに付属しているバージョンは非常に古いことが多く、最新の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を実行するようにすることをお勧めしますが、これらのほとんどは既にWineのコピーとともにインストールされているはずです。

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

そして、すべてが元のままになります。

参照:


4
sudo mv -v winetricks /usr/bin代わりに使用しますか?
シャオドンチー

2
従来、ユーザーがコンパイルまたはパッケージ化したファイルの場所は/usr/local/bin、これまで~/binでしたが、確か/usr/binに機能します。
-andrew.46

1
@jhasse今、私は非常に間違っている可能性がありますが、Ubuntuの最後のインストールには/ usr / local / binの作成が​​含まれていましたが、常にそうでしたか?そうでなければ、私は問題を見ることができます
....-andrew.46

1
winetricks確かに3年前(2014年8月の代わりに2017年8月)!→このアドバイスはまだ素晴らしいものであり、有効です。
フランクノック

2
@FrankNocke私は時々戻ってきて、それが現代のUbuntuにとってまだ有効な答えであることを確認するために:)
andrew.46

1

2019年の回答を更新

DiscoおよびEoanで利用可能なwinetricksバージョンは、自身を更新できます[1]
19.04以降を使用している場合は、次を実行します。

sudo apt install winetricks
sudo winetricks --self-update

古いバージョンのUbuntuを使用している場合は、https://packages.ubuntu.com/eoan/all/winetricks/downloadから.debパッケージを取得でき
ます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.