web-dev-qa-db-fra.com

Comment télécharger Playonlinux via un terminal?

Je ne peux pas aller sur le site de playonlinux. Quelqu'un peut-il me dire comment installer playonlinux via un terminal? J'installerais Playonlinux via Ubuntu Software Center mais je ne pense pas qu'il le mettra à jour. J'utilise Ubuntu Unity 12.04 LTS, ce qui est précis.

2
Ryan Wilson

virusboy@virusboy-Inspiron-3521:~$ Sudo apt-get install playonlinux [Sudo] password for virusboy: Reading package lists... Done Building dependency tree
Reading state information... Done The following extra packages will be installed: libwxgtk-media2.8-0 python-wxgtk2.8 python-wxversion Suggested packages: scrot wx2.8-doc wx2.8-examples editra The following NEW packages will be installed: libwxgtk-media2.8-0 playonlinux python-wxgtk2.8 python-wxversion 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. Need to get 4,949 kB of archives. After this operation, 27.1 MB of additional disk space will be used. Do you want to continue? [Y/n]

C'est ce que tu devrais voir. Comme PlayonLinux est une enveloppe pour Wine, vous avez besoin du PPA de Wine. Pour ce faire dans un type de terminal, procédez comme suit:

Sudo add-apt-repository ppa:ubuntu-wine/ppa
Sudo apt-get update

pour ajouter le référentiel PPA à votre liste croissante d’APP et mettre à jour la liste. Maintenant, vous pouvez utiliser la commande sans problème.

2
Virusboy

Il existe de nouveaux référentiels pour une telle installation. Vous devrez exécuter:

wget 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

Et enfin

Sudo apt-get install playonlinux
0
Joshua Salazar