wine apt-key depreatiated

Questions about Wine on Linux
Locked
cordlessblues
Newbie
Newbie
Posts: 1
Joined: Fri Mar 18, 2022 8:23 am

wine apt-key depreatiated

Post by cordlessblues »

so im on the newest version of kubuntu and apt-key has been replaced with gpt but i cant find the gpt key can someone send me the terminal command i need to run to get a valid gpt key
jkfloris
Level 12
Level 12
Posts: 3201
Joined: Thu Aug 14, 2014 10:10 am

Re: wine apt-key depreatiated

Post by jkfloris »

Download the repository key winehq.key
(In this example, the key is stored in the Downloads folder.)

Add the key to /usr/share/keyrings

Code: Select all

sudo gpg --output /usr/share/keyrings/winehq-archive-keyring.gpg --dearmor ~/Downloads/winehq.key
Modify the WineHQ repository line in /etc/apt/sources.list(.d/some-file.list)
Add the "signed-by" at the beginning of the line.

Code: Select all

deb [signed-by=/usr/share/keyrings/winehq-archive-keyring.gpg] https://dl.winehq.org/wine-builds/ubuntu/ ...
Locked