mint 19.3 cinamon refuses wine ppa

Questions about Wine on Linux
Locked
Cookie
Level 2
Level 2
Posts: 27
Joined: Mon Jun 22, 2015 2:09 pm

mint 19.3 cinamon refuses wine ppa

Post by Cookie »

Following the wine wiki
"Installing WineHQ packages" for ubuntu + mint
I get:
sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
Fehlerhafte Eingabe, Paketquelle nicht hinzugefügt.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: mint 19.3 cinamon refuses wine ppa

Post by jkfloris »

Could you post the output of:

Code: Select all

sudo apt-add-repository -m 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
(Use the forum code-tags!)
Cookie
Level 2
Level 2
Posts: 27
Joined: Mon Jun 22, 2015 2:09 pm

Re: mint 19.3 cinamon refuses wine ppa

Post by Cookie »

I get:

kookie@kookie-4170-960:~$ sudo apt-add-repository -m 'deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main'
[sudo] Passwort für kookie:
Usage: apt-add-repository [options] repository

apt-add-repository: error: no such option: -m
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: mint 19.3 cinamon refuses wine ppa

Post by jkfloris »

You could try to add the repository by hand:

Code: Select all

echo "deb https://dl.winehq.org/wine-builds/ubuntu/ bionic main" > winehq.list
sudo mv winehq.list /etc/apt/sources.list.d/
sudo apt update
Locked