Note_Tech

All technological notes.


Project maintained by simonangel-fong Hosted on GitHub Pages — Theme by mattgraham

Linux - Fundamental

Back


What is Linux


WSL

Command Desc
wsl -l -o list available distro online
wsl -l list all installed distro locally
wsl --install Install default(Ubuntu) distro wsl
wsl --install -d Debian Install Debian distro wsl
wsl --unregister -d Debian remove Debian distro from wsl

Version


Help Commands

CMD DESC
help Provides information on built-in commands
whatis command1 command2 Display one-line manual page descriptions
command -help Display all options of a command
man command Display a completed manual page of a command

TOP