What You'll Learn
16 modules from basics to server administration
+ 4 advanced modules including:
Disk Management (fdisk, mount, df, du) β’ Log Files & Monitoring β’ Firewall (iptables, ufw) β’ Final Server Setup Projects
From basic commands to server administration. Learn to use the terminal like a pro, write shell scripts and manage Linux systems. 16 modules, 50+ practical exercises.
Essential skill for DevOps, Cloud and Backend
Navigation, files, permissions and essential commands
Automate tasks with Bash scripts
Users, services, processes and networking
90% of cloud servers run Linux
16 modules from basics to server administration
+ 4 advanced modules including:
Disk Management (fdisk, mount, df, du) β’ Log Files & Monitoring β’ Firewall (iptables, ufw) β’ Final Server Setup Projects
Explore the Linux terminal before you buy
The Linux terminal is one of the most powerful tools for a developer. Here are the commands you'll use daily:
Use Tab for auto-complete and Ctrl+R to search command history.
pwd - Show current directory (Print Working Directory)ls - List files (ls -la for details)cd - Change directory (cd .. = up, cd ~ = home)# Navigation and exploration $ pwd /home/user $ ls -la total 32 drwxr-xr-x 5 user user 4096 Jan 15 10:30 . drwxr-xr-x 3 root root 4096 Jan 10 08:00 .. -rw-r--r-- 1 user user 220 Jan 10 08:00 .bashrc drwxr-xr-x 2 user user 4096 Jan 15 10:30 Documents $ cd Documents $ pwd /home/user/Documents
touch file.txt - Create empty filemkdir folder - Create directorycp src dest - Copy filesmv src dest - Move/Renamerm file - Delete (careful, no Recycle Bin!)# File management $ mkdir project $ cd project $ touch README.md $ echo "# My Project" > README.md $ cat README.md # My Project $ cp README.md backup.md $ ls README.md backup.md
rm -rf / can delete the entire system! Be very careful with rm commands, especially with sudo.
Go to the "Terminal" tab and try the commands!
test with mkdircd testhello.txtecho "Hello" > hello.txt"I went from being intimidated by the terminal to using it daily. Now I manage my own VPS server!"
"Shell scripting changed my life. I now automate everything possible. The course is very practical!"
"Essential for anyone wanting to work in cloud or DevOps. The most useful course I've taken."
From basic commands to server administration. Master the terminal.
π‘ All displayed prices do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.
The #1 skill for DevOps and Cloud. The world's servers await you.
πBuy Course - 45 β¬π‘ All displayed prices do not include VAT or other applicable local taxes. Taxes will be calculated at checkout based on your location.