Categories
Support · guides · section
Linux Basics
Everyday Linux commands and administration on your VPS: users and permissions, packages, services, disks and the tools you will reach for daily.
01/
Guides
4 guides
KB-5
← All sections How to List Services with systemctl
Need to see what services are running on your Linux server? The quick answer: systemctl list-units --type=service That shows every...
136 views → KB-7How to Save and Exit Vim (and Quit Without Saving)
Stuck in Vim? Press Esc first, then type one of these and press Enter: :wq save and exit :q! quit WITHOUT saving :w save but stay...
117 views → KB-10How to Update Node.js and npm on Ubuntu
Quick answer: how you update depends on how Node.js was installed. If it came from the NodeSource repository, sudo apt update &&...
148 views → KB-6chown and chmod Recursive: Fix Ownership and Permissions in Linux
To change the owner of a directory and everything inside it, the quick answer: sudo chown -R user:group /path/to/directory And to change...
121 views →