generated from NickMatthews-1/WineStable
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
W7U22-1-Stable.sh
26 lines (17 loc) · 830 Bytes
/
W7U22-1-Stable.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/bash
#This enables 32bit architecture
sudo dpkg --add-architecture i386
#Downloads and adds the repository key
sudo mkdir -pm755 /etc/apt/keyrings
sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
#This downloads the WineHQ sources file
sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/kinetic/winehq-kinetic.sources
#This updates the package information
sudo apt update
#This upgrades the packages
sudo apt upgrade
#This installs wine version 7
sudo apt install --install-recommends winehq-stable
#This may not actually install as at the time of creation there was NO stable version of Wine for Ubuntu 22 platforms.
#Wine7.0 came out before Jammy Jellyfish and Kinetic Kudu
#Subject to GPLv3 License Copyright Nicolas Matthews 2022