Terminal Development Tutorials, Guides & Insights
Unlock 3+ expert-curated terminal tutorials, real-world code snippets, and modern dev strategies. From fundamentals to advanced topics, boost your terminal skills on DeveloperBreeze.
Adblocker Detected
It looks like you're using an adblocker. Our website relies on ads to keep running. Please consider disabling your adblocker to support us and access the content.
How to Install an AppImage on Linux
Tutorial August 21, 2024
cd ~/Downloads
chmod a+x exampleName.AppImage
How to view free space on a Linux server
Code August 11, 2024
bash
df
: This command stands for "disk free" and reports the amount of disk space used and available on Linux filesystems.-h
: This option stands for "human-readable" format, which makes the output easier to read by showing sizes in KB, MB, GB, etc.
When you run the df -h
command, you might see output similar to the following:
Finding the Top 10 Biggest Files on an Ubuntu Server
Tutorial August 11, 2024
bash
Use the following command to find the top 10 largest files:
sudo find /path/to/directory -type f -exec du -h {} + | sort -rh | head -n 10