Disable beep sound in WSL terminal on Windows

To disable the beep in bash you need to uncomment (or add if not already there) the line set bell-style none in your /etc/inputrc file.Note: Since it is a protected file you need to be a privileged user to edit it (i.e. launch your text editor with something like sudo <editor> /etc/inputrc). To disable the beep also in vim you need to add set visualbell in your ~/.vimrc file. …

Install WSL on non-C drive

Open Powershell: Run Set-Location DriveLetter: where DriveLetter is the drive where WSL will be installed Then create a directory for WSL with New-Item WSL -Type Directory Now set location there with Set-Location .\WSL Now download the appx package with Invoke-WebRequest -Uri appx_package_url -OutFile Linux.appx -UseBasicParsing Now we will unpack appx with Copy-Item .\Linux.appx .\Linux2.appx and then Rename-Item .\Linux2.appx -Newname “Linux2.zip” and then Expand-Archive .\Linux2.zip Now Get-Childitem -Filter *.exe and …