DeveloperBreeze

Server Administration Programming Tutorials, Guides & Best Practices

Explore 48+ expertly crafted server administration tutorials, components, and code examples. Stay productive and build faster with proven implementation strategies and design patterns from DeveloperBreeze.

Tutorial

How to Install an AppImage on Linux

  • chmod is a command used to change file permissions.
  • a+x adds executable permissions for all users (owner, group, and others).
  • Replace exampleName.AppImage with the actual name of your AppImage file.

Now that the AppImage is executable, you can run it directly from the terminal or by double-clicking on it in your file manager.

Aug 21, 2024
Read More
Code
bash

How to view free space on a Linux server

  • Inodes: To check free inodes instead of disk space, use the -i option:
  df -i

Aug 11, 2024
Read More
Tutorial
bash

Finding the Top 10 Biggest Files on an Ubuntu Server

After executing the command, you'll see a list of the top 10 largest files, along with their sizes. For example:

1.2G    /var/log/largefile.log
900M    /home/user/bigdata.dat
850M    /opt/application/hugefile.bin
...

Aug 11, 2024
Read More