README.md 7.08 KB
Newer Older
1
<div align="center">
Boria138's avatar
Boria138 committed
2
  <img src="https://raw.githubusercontent.com/Castro-Fidel/PortWINE/master/data_from_portwine/img/gui/portproton.svg" width="64">
3 4 5 6 7 8
  <h1 align="center">PortProton</h1>
  <a href="https://github.com/Castro-Fidel/PortWINE/blob/master/LICENSE">
    <img src="https://img.shields.io/github/license/Castro-Fidel/PortWine?logo=github" alt="GitHub License">
  </a>
  <a href="https://flathub.org/apps/ru.linux_gaming.PortProton">
    <img src="https://img.shields.io/flathub/downloads/ru.linux_gaming.PortProton?style=flat&logo=flathub" alt="Flathub Downloads">
9 10 11 12
  </a>
  <a href="https://discord.gg/FTaheP99wE">
    <img src="https://img.shields.io/discord/378683352946835456?logo=discord" alt="Discord">
  </a>
13 14 15
  <a href="https://www.youtube.com/@linux-gaming5986">
    <img src="https://img.shields.io/youtube/channel/subscribers/UCbI8OJx2D3q-4QKt4LffXTw?style=flat&logo=youtube" alt="YouTube Channel Subscribers">
  </a>
16
  <br/>
17
  <p style="text-align: center;">
18 19 20
    A project designed to make running Windows games on Linux easy and convenient for both beginners and advanced users.<br>
    The project aims to simplify the process of launching games (and other software) while also providing flexible settings for experienced users.
  </p>
Boria138's avatar
Boria138 committed
21
</div>
22

23
# **Readme Language**
24

25 26
**English** - [Русский](README-RU.md)

Boria138's avatar
Boria138 committed
27
## Attention
28 29

The **official website of the project** since September 2022 is: https://linux-gaming.ru.  **Any other site is fake!**
castro-fidel's avatar
castro-fidel committed
30

Boria138's avatar
Boria138 committed
31
## Features
32

Boria138's avatar
Boria138 committed
33
- Based on the version of WINE from Valve (Proton) and its modifications (Proton GE).
34 35 36 37 38
  Includes a set of scripts combined with wine-proton itself, a Steam Runtime Sniper container with the addition of
  ported mangoHud (output useful information over the game window: FPS, frametime, CPU, GPU, etc.),
  vkBasalt (improvement of graphics in games, great alongside FSR or DLSS) versions,
  and many already configured optimizations for maximum performance.
- Implemented one-click auto-installation (in the AUTOINSTALL tab) of popular launchers such as WGC, Epic Games, Battle.net, Origin, EVE Online, Rockstar, Ubisoft Connect, League of Legends, and many others.
39

40
- For fans of console games, there are many console emulators to choose from (in the EMULATORS tab): PPSSPP, Citra, Cemu, ePSXe, MAME, and many others.
41

42
**PLEASE DON'T REPORT BUGS ENCOUNTERED WITH THIS AT WINEHQ OR VALVE SOFTWARE!**
Boria138's avatar
Boria138 committed
43 44 45 46 47

## **Wine sources used in PortWINE:**

* WINE-PROTON: https://github.com/ValveSoftware/Proton

48
* WINE-PROTON-GE: https://github.com/GloriousEggroll/proton-ge-custom
49 50 51

## Installation using packages

Boria138's avatar
Boria138 committed
52 53
* **Alt Linux** (package in the official repository) is installed with the command:

54
`apt-get`:
55

56
```sh
57 58
su -

59
apt-get update && apt-get dist-upgrade -y
60

61
apt-get install portproton i586-{libvulkan1,libd3d,libGL,libgio,libnm,libnsl1,libnss,glibc-nss,glibc-pthread,libunwind,xorg-dri-swrast}
62

63
exit
64 65 66
```

`epm`:
67

Boria138's avatar
Boria138 committed
68
```sh
69
su -
Boria138's avatar
Boria138 committed
70

Mikhail Tergoev's avatar
Mikhail Tergoev committed
71
epm full-upgrade
Boria138's avatar
Boria138 committed
72

73
epm play portproton
Boria138's avatar
Boria138 committed
74

Mikhail Tergoev's avatar
Mikhail Tergoev committed
75
exit
76 77
```

78

79
* **Ubuntu 24.04**, **Debian 12**, **Linux Mint 21.x**, and **Deepin**:
80
  [portproton_1.7-3_amd64.deb](https://github.com/Castro-Fidel/PortProton_dpkg/releases/download/portproton_1.7-3_amd64/portproton_1.7-3_amd64.deb)
81

82 83
* **Arch Linux** and derivatives (Manjaro, Garuda, etc.):
  [AUR](https://aur.archlinux.org/packages/portproton)
84

85 86 87 88 89
* **ROSA Linux** (package in the official repository) is installed with the command:

```sh
sudo urpmi portproton
```
90

91
* **Fedora 39+** and **Nobara**:
92 93 94 95 96 97 98

```sh
sudo dnf copr enable boria138/portproton

sudo dnf install portproton
```

99
* **Flathub**
100 101 102 103 104

```sh
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub ru.linux_gaming.PortProton
```
105

106
<details><summary><b>Universal (manual) installation method (obsolete variant)</b></summary>
107

108
**ATTENTION**: with the universal method of installing PortProton, dependencies must be installed manually!
109

Boria138's avatar
Boria138 committed
110
```sh
vanomj's avatar
vanomj committed
111
wget -c "https://github.com/Castro-Fidel/PortProton_ALT/raw/main/portproton" && sh portproton
Boria138's avatar
Boria138 committed
112
```
113 114 115 116 117

## Dependencies

* **NVIDIA graphics card users**

118
If you have a video card from NVIDIA and a proprietary driver is installed, then you need to check if lib32-nvidia-utils is installed (32-bit games don't work without it)
119 120 121

* **Ubuntu / Linux Mint / Pop!_OS**

Boria138's avatar
Boria138 committed
122 123
```sh
sudo dpkg --add-architecture i386
124

Boria138's avatar
Boria138 committed
125
sudo add-apt-repository multiverse
126

Boria138's avatar
Boria138 committed
127
sudo apt update
128

Boria138's avatar
Boria138 committed
129 130
sudo apt upgrade

131
sudo apt install curl file libc6 libnss3 policykit-1 xz-utils bubblewrap curl icoutils tar libvulkan1 libvulkan1:i386  zstd cabextract xdg-utils openssl libgl libgl1:i386
Boria138's avatar
Boria138 committed
132
```
133 134 135

* **Arch Linux / Manjaro**

136 137 138 139 140 141 142 143 144 145
First check if the **multilib** repository is enabled

```sh
/etc/pacman.conf
===================================
[multilib]
Include = /etc/pacman.d/mirrorlist
====================================
```

Boria138's avatar
Boria138 committed
146
```sh
147
sudo pacman -Syu bash bubblewrap zstd cabextract tar openssl desktop-file-utils curl dbus freetype2 gdk-pixbuf2 ttf-font gzip nss xorg-xrandr vulkan-driver vulkan-icd-loader lsof lib32-freetype2 lib32-libgl lib32-gcc-libs lib32-libx11 lib32-libxss lib32-alsa-plugins lib32-libgpg-error lib32-nss lib32-vulkan-driver lib32-vulkan-icd-loader lib32-openssl
Boria138's avatar
Boria138 committed
148
```
149 150 151

If you have a video card from **NVIDIA** , be sure to check if the **lib32-nvidia-utils** package is installed

Boria138's avatar
Boria138 committed
152 153 154
```sh
sudo pacman -Syu lib32-nvidia-utils
```
155 156 157

* **openSUSE**

Boria138's avatar
Boria138 committed
158
```sh
159
sudo zypper install curl bubblewrap zstd cabextract tar steam
Boria138's avatar
Boria138 committed
160
```
161 162 163

* **Fedora**

Boria138's avatar
Boria138 committed
164 165 166 167 168
```sh
sudo dnf update

sudo dnf upgrade --refresh

169
sudo dnf install curl bubblewrap zstd cabextract tar openssl mesa-dri-drivers.i686 mesa-vulkan-drivers mesa-vulkan-drivers.i686 vulkan-loader vulkan-loader.i686 nss.i686 alsa-lib.i686 mesa-libGL.i686 mesa-libEGL.i686 wmctrl ImageMagick
Boria138's avatar
Boria138 committed
170
```
171 172 173

* **Alt Linux**

Boria138's avatar
Boria138 committed
174
```sh
175 176
su -

177
apt-get update && apt-get dist-upgrade -y
Boria138's avatar
Boria138 committed
178

179
apt-get install bubblewrap cabextract  zstd gawk tar xz pciutils coreutils file curl icoutils wmctrl xdg-utils desktop-file-utils libvulkan1 vulkan-tools libd3d libGL fontconfig xrdb libcurl libgio libnm libnsl1 libnss glibc-nss glibc-pthread i586-{libvulkan1,libd3d,libGL,libgio,libnm,libnsl1,libnss,glibc-nss,glibc-pthread,libunwind,xorg-dri-swrast}
180

181
exit
Boria138's avatar
Boria138 committed
182
```
183 184 185

* **ROSA DESKTOP FRESH R12**

Boria138's avatar
Boria138 committed
186 187 188 189 190
```sh
sudo dnf update

sudo dnf upgrade --refresh

191
sudo dnf install sysvinit-tools curl libcurl4 bubblewrap zstd cabextract tar libvulkan1 lib64vulkan1 vulkan.x86_64 vulkan.i686 vkd3d.x86_64 vkd3d.i686 coreutils file libc6 libnss3 xz bubblewrap xdg-utils openssl libgl1 lib64freetype2 libfreetype2 lib64txc-dxtn libtxc-dxtn lib64opencl1 libopencl1 libdrm2 libdrm2.i686 mesa.i686
Boria138's avatar
Boria138 committed
192
```
193

194 195 196
* **RED OS**

```sh
197
sudo -E dnf install curl icoutils libcurl bubblewrap zstd cabextract tar goverlay openssl steam
198 199
```

200 201
* **Solus 4.x**

Boria138's avatar
Boria138 committed
202
```sh
203
sudo eopkg it curl file bubblewrap curl icoutils tar zstd cabextract xdg-utils openssl bc vulkan vulkan-32bit mesalib-32bit samba
Boria138's avatar
Boria138 committed
204
```
205

206
* **Void**
207

208
```sh
209
sudo xbps-install -Su void-repo-multilib
210 211 212 213

sudo xbps-install -S bash wget icoutils yad bubblewrap zstd cabextract gzip tar xz openssl desktop-file-utils curl dbus freetype xdg-utils
gdk-pixbuf noto-fonts-ttf nss xrandr lsof mesa-demos ImageMagick Vulkan-Tools libgcc alsa-plugins-32bit libX11-32bit freetype-32bit libglvnd-32bit libgpg-error-32bit nss-32bit openssl-32bit vulkan-loader vulkan-loader-32bit
```
214
</details>