At work, our dev team works with various technologies like NodeJS/Typescript, Java, Go… And from time to time, we need to revisit a project to make some changes. And often, it’s the same story: Oh yeah, but this project is legacy, it doesn’t compile with the current versions anymore. I either have to rewrite everything or reinstall an old version that’s no longer available on Debian… Sometimes we also hear: ...
How to reduce wsl disk
As you use WSL, the VHDX disk image will grow. You need to compact it! 1. Cleanup Start by cleaning up the disk. Each user can choose their preferred method. 2. fstrim Once everything is clean, you can force the system to discard unused elements from the image. sudo fstrim -av 3. Installing wslcompact The wslcompact project is a PowerShell module that allows you to compact the disk efficiently. Set-ExecutionPolicy RemoteSigned -Scope CurrentUser iwr -useb https://raw.githubusercontent.com/okibcn/wslcompact/main/setup | iex Note: On the latest versions of WSL (2.5.4.0?), you may need to patch the file as shown in this commit. ...