Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

install wine ubuntu

#Install trough Ubuntu libraries
sudo apt install wine64
Comment

install wine linux

dpkg --print-architecture
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt install wine64

wine --version
Comment

ubuntu install wine terminal

sudo apt-get install libgnutls30:i386 libldap-2.4-2:i386 libgpg-error0:i386 libxml2:i386 libasound2-plugins:i386 libsdl2-2.0-0:i386 libfreetype6:i386 libdbus-1-3:i386 libsqlite3-0:i386
Comment

wine ubuntu

### Wine Ubuntu

#If your system is 64 bit, enable 32 bit architecture (if you haven't already):
sudo dpkg --add-architecture i386 

#Download and add the repository key:
wget -nc https://dl.winehq.org/wine-builds/winehq.key
sudo mv winehq.key /usr/share/keyrings/winehq-archive.key

# Ubuntu 22.04	
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/jammy/winehq-jammy.sources
sudo mv winehq-jammy.sources /etc/apt/sources.list.d/
#----------------------------------------------------
# Ubuntu 21.10	
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/impish/winehq-impish.sources
sudo mv winehq-impish.sources /etc/apt/sources.list.d/
#----------------------------------------------------
# Ubuntu 20.04 | Linux Mint 20.x
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/focal/winehq-focal.sources
sudo mv winehq-focal.sources /etc/apt/sources.list.d/
#----------------------------------------------------
# Ubuntu 18.04 | Linux Mint 19.x
wget -nc https://dl.winehq.org/wine-builds/ubuntu/dists/bionic/winehq-bionic.sources
sudo mv winehq-bionic.sources /etc/apt/sources.list.d/

# Update packages:
sudo apt update

# Then install one of the following packages:
# Stable branch
sudo apt install --install-recommends winehq-stable
#--------------------------------------------------
# Development branch
sudo apt install --install-recommends winehq-devel
#--------------------------------------------------
# Staging branch	
sudo apt install --install-recommends winehq-staging
Comment

wine install ubuntu

sudo apt update
sudo apt install wine64
Comment

how to install wine in ubuntu

$ sudo dpkg --add-architecture i386
Comment

how to install wine in ubuntu

$ wget -qO- https://dl.winehq.org/wine-builds/Release.key | sudo apt-key add -
Comment

how to install wine in ubuntu

$ sudo apt install wine32
Comment

PREVIOUS NEXT
Code Example
Shell :: how to download using curl 
Shell :: switch to remote branch git 
Shell :: image converter linux 
Shell :: remove users from linux 
Shell :: bash kill all terminal 
Shell :: ping with timestamp 
Shell :: move file from one directory to another sftp 
Shell :: uninstall all requirements 
Shell :: run shell script in dockerfile 
Shell :: set global git ignore 
Shell :: ubuntu 18.04 default display manager 
Shell :: Failed to install the following Android SDK packages as some licences have not been accepted. build-tools;28.0.3 Android SDK Build-Tools 28.0.3 platforms;android-29 Android SDK Platform 29 
Shell :: install ros foxy 
Shell :: How To Switch Branch On GIT 
Shell :: bitbucket change commit message 
Shell :: intall docker ubuntu command 
Shell :: search file in ubuntu 
Shell :: symfony install website skeleton 
Shell :: check lines of code in a folder 
Shell :: copy from master to branch 
Shell :: run redis in background ubuntu 
Shell :: a) Write a shell script to list all of the directory files in a directory. 
Shell :: if -z in bash 
Shell :: git SSL certificate problem: self signed certificate 
Shell :: video converter for ubuntu 
Shell :: install sam cli ubuntu 
Shell :: ubuntu install filebeat 
Shell :: how to start apache/2.4.6 linux 
Shell :: install wordpress on ubuntu 20.04 
Shell :: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root? 
ADD CONTENT
Topic
Content
Source link
Name
4+2 =