This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
code:wsl [2020/05/23 21:49] hansek |
code:wsl [2024/09/30 22:20] (current) hansek |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== WSL 2 hints ====== | ====== WSL 2 hints ====== | ||
+ | |||
+ | ====== Disable Snap ====== | ||
+ | |||
+ | Source: https:// | ||
+ | |||
+ | <code bash> | ||
+ | sudo systemctl disable snapd.service | ||
+ | sudo systemctl disable snapd.socket | ||
+ | sudo systemctl disable snapd.seeded.service | ||
+ | sudo systemctl mask snapd.service | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== / | ||
+ | |||
+ | < | ||
+ | [automount] | ||
+ | enabled = true | ||
+ | # options = " | ||
+ | options = " | ||
+ | mountFsTab = true | ||
+ | crossDistro = true | ||
+ | |||
+ | [Interop] | ||
+ | appendWindowsPath = false | ||
+ | |||
+ | [network] | ||
+ | generateHosts = true | ||
+ | generateResolvConf = false | ||
+ | </ | ||
+ | |||
===== Manualy free RAM ===== | ===== Manualy free RAM ===== | ||
+ | Source: https:// | ||
+ | |||
+ | <code bash> | ||
+ | sudo su | ||
+ | sync; echo 3 > / | ||
+ | </ | ||
+ | |||
+ | //older way// | ||
source: https:// | source: https:// | ||