Not able to run Wine on Windows 10

Questions about Wine on Linux
Locked
thomasvtt
Newbie
Newbie
Posts: 1
Joined: Tue Jan 23, 2024 7:43 am

Not able to run Wine on Windows 10

Post by thomasvtt »

I have a Ubuntu version is 18.04.2 LTS Laptop on which I am trying to install Wine.
Getting the below error.
404 Not Found [IP: 151.101.86.217 443]
Hit:11 http://dl.google.com/linux/chrome/deb stable Release
Reading package lists... Done
E: The repository 'https://dl.winehq.org/wine-builds/ubuntu disco Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
jkfloris
Level 12
Level 12
Posts: 3141
Joined: Thu Aug 14, 2014 10:10 am

Re: Not able to run Wine on Windows 10

Post by jkfloris »

Ubuntu 18.04.2 is called Bionic. The log indicates that you want to install the packages for Ubuntu 19.04 (Disco).
Remove the WineHQ Disco repository from your system and add the Bionic repository.

Note that WineHQ no longer makes new packages for Bionic, but the installation instructions on the wiki still work.

Code: Select all

sudo dpkg --add-architecture i386 
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/winehq-bionic.sources
sudo apt update
Locked