Como obtenho a última versão do winetricks no Ubuntu?

13

Instalei Wine e estou muito feliz com a versão atual, mas winetricks me decepcionou algumas vezes com várias mensagens de erro.

Como faço para atualizar winetricks para obter a versão mais recente no Ubuntu?

    
por andrew.46 08.04.2016 / 06:24

1 resposta

16

A versão do winetricks que vem com o estoque da instalação do Ubuntu é muitas vezes bastante antiga, mesmo a versão disponível em um PPA mais moderno pode atrasar um pouco. É uma ótima idéia e muito seguro atualizar winetricks manualmente, independente da sua instalação principal do Wine , isso pode ser feito em algumas etapas simples:

1. Verifique a versão mais recente, remova a versão antiga:

Primeiro verifique para ver o que é a versão mais recente disponível no upstream com este útil one-liner:

curl --silent --show-error \
https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks --stderr - \
| grep ^WINETRICKS_VERSION | cut -d '=' -f 2

Em seguida, se isso superar sua própria versão instalada (para ver sua versão executar winetricks --version de uma linha de comando) remova sua versão atualmente instalada:

sudo apt-get remove winetricks

2. Instale a versão mais recente:

Em seguida, faça o download e instale a versão mais recente:

wget  https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks
chmod +x winetricks 
sudo mv -v winetricks /usr/local/bin

Como demonstrado em meu próprio sistema, a versão mais recente pode ser testada:

andrew@illium~$ winetricks --version
20180603-next - sha256sum: 666a62b4759d6b6f901f68a829ea28950a5412e18182585ae5ad09d5dcf89b62
andrew@illium~$ 

3. Adicione alguns extras & amp; verifique a sintaxe mais recente:

Também pode ser uma boa idéia garantir que você tenha alguns aplicativos 'auxiliares' necessários para que winetricks seja executado, embora a maioria desses deva já ter sido instalada com sua cópia do Wine :

sudo apt-get install cabextract p7zip unrar unzip wget zenity

Em seguida, verifique o uso correto, que poderia ter mudado de sua versão anterior:

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. Revise com segurança estas etapas:

Se, por algum motivo, você desejar retornar à sua versão de repositório mais antiga, basta executar o seguinte:

sudo rm /usr/local/bin/winetricks
sudo apt-get install winetricks

E tudo será como foi.

Referências:

por andrew.46 08.04.2016 / 06:24