You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Esync removes wineserver overhead for synchronization objects. This can increase performance for some games, especially ones that rely heavily on the CPU. [A more detailed explanation can be found here](https://github.com/zfigura/wine/blob/esync/README.esync).
3
+
Esync removes wineserver overhead for synchronization objects. This increases performance for a lot of games, especially ones that rely heavily on multithreading.<br>
4
+
[A more detailed explanation can be found here](https://github.com/zfigura/wine/blob/esync/README.esync).
4
5
5
-
## How to make your system ready for Esync
6
+
## How to check Esync compatibility
6
7
7
-
First step is to run the `ulimit -Hn` command. If the value printed is equal or greater to 524288 then you're all set, your system is ready to use Esync! If you are running Systemd 240 or later, this should already be the case.
8
+
Systems using Systemd 240 and newer are already compatible with Esync.<br>
9
+
If you're unsure that your system is compatible, run the `ulimit -Hn` command. If the value printed is equal to or greater than 524288, then your system is Esync-compatible.
8
10
9
-
There are 2 methods for increasing the maximum number of files open. Which method is preferable depends on the distribution currently in use. Applying both methods should have no negative side effect.
11
+
## How to make your system Esync compatible
12
+
13
+
If your system is not Esync-compatible (`ulimit -Hn`, which prints the limit for number of opened files for a process, prints a value lower than 524288, like 4096), you have 2 different methods of solving this problem.
14
+
Which method is preferable depends on the distribution currently in use. Applying both methods should have no negative side effect.
10
15
11
16
**Modifying Systemd configuration**<br>
12
-
This method applies to Ubuntu and other systems using systemd (some systemd distros can also use the limits.conf method below). You (with root privileges or `sudo`) need to edit both `/etc/systemd/system.conf` and `/etc/systemd/user.conf` by adding `DefaultLimitNOFILE=524288`. If `DefaultLimitNOFILE=` already exist in both `system.conf` and `user.conf`, add `524288` after `=` and make sure to uncomment the line (remove the `#`) to make it functional.<br><br>
13
-
Once the files are edited, restart your computer for the changes to take effect. To verify if the limits were applied, run `ulimit -Hn` to see open files limit (it should report `524288`).<br>
17
+
This method applies to Ubuntu and other systems using systemd. You (with root privileges or `sudo`) need to edit both `/etc/systemd/system.conf` and `/etc/systemd/user.conf` by adding `DefaultLimitNOFILE=524288`. If `DefaultLimitNOFILE=` already exists in both `system.conf` and `user.conf`, add `524288` after `=` and make sure to uncomment the line (remove the `#` in the beginning of the line) to make it functional.<br><br>
18
+
Once the files are edited, restart your computer for the changes to take effect. To verify if the limits were applied, run `ulimit -Hn` to see `524288` being reported.<br>
14
19
15
20
If the value printed still says something like 4096, try the ulimits method below.
16
21
@@ -23,10 +28,4 @@ Change `username` to your actual username. Once the file is edited, reboot for t
23
28
24
29
**Using Esync Wine builds**
25
30
26
-
Use our `esync` or `tkg` wine versions (it's recommended to use latest versions):
27
-
28
-

29
-
30
-
Enable Esync through the toggle in configuration:
31
-
32
-

31
+
Esync is enabled by default starting with Lutris 0.5.9 and all presently available Lutris Wine versions include Esync.
0 commit comments