Skip to content

Commit 6693f3b

Browse files
authored
Update HowToEsync.md
1 parent 5e79895 commit 6693f3b

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

HowToEsync.md

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
# What is Esync?
22

3-
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).
45

5-
## How to make your system ready for Esync
6+
## How to check Esync compatibility
67

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.
810

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.
1015

1116
**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>
1419

1520
If the value printed still says something like 4096, try the ulimits method below.
1621

@@ -23,10 +28,4 @@ Change `username` to your actual username. Once the file is edited, reboot for t
2328
2429
**Using Esync Wine builds**
2530

26-
Use our `esync` or `tkg` wine versions (it's recommended to use latest versions):
27-
28-
![screenshot from 2018-10-22 02-04-54](https://user-images.githubusercontent.com/10602045/47287928-93073c80-d5fc-11e8-8a4f-d46f4393a26e.png)
29-
30-
Enable Esync through the toggle in configuration:
31-
32-
![screenshot from 2018-10-22 02-00-48](https://user-images.githubusercontent.com/10602045/47273522-573d8a00-d59e-11e8-8762-fea9f5537110.png)
31+
Esync is enabled by default starting with Lutris 0.5.9 and all presently available Lutris Wine versions include Esync.

0 commit comments

Comments
 (0)