Hi, i want to install wine9.15 metapackage form fedora repo, but when i use command : sudo dnf install wine , it’s install version 10.x , are there any way to get old version of wine on fedora repo ? Thanks
Assuming you’re on F41, you can run:
sudo dnf install wine-9.15-1.fc41
This will bring the version available in the fedora
repo.
In order to avoid future updates to wine
, you would need to run the following command:
echo "excludepkgs=wine*" | sudo tee -a /etc/dnf/dnf.conf > /dev/null
1 Like