The most important Linux commands that every user should know

The Linux system is a powerful tool that offers users tremendous flexibility and control over their working environment. However, to fully harness its potential, it is worth knowing the key commands that are essential for both beginners and advanced users. In this article, we will present and discuss the most important Linux commands that every user should know.

1. Basic Navigation Commands

  • pwd – Displays the current directory path you are in:
  • ls – Lists the contents of a directory. You can use the -l option for a detailed view or -a to show hidden files:
  • cd – Changes the directory. For example, cd /home/user will move you to the /home/user directory:
  • mkdir – Creates a new directory:
  • rmdir – Removes an empty directory:

2. File Management

  • cp – Copies files or directories:
  • mv – Moves or renames files/directories:
  • rm – Removes files or directories. Use the -r option to remove a directory with its contents:
  • touch – Creates an empty file or updates the modification time of an existing file:

3. Process Management

  • ps – Displays currently running processes. Use the -aux option to see all processes:
  • top – Displays a dynamic list of processes in real time:
  • kill – Stops a process by its ID:
  • bg and fg – Manage background and foreground processes:

4. User and Permission Management

  • sudo – Allows a command to be executed with administrator privileges:
  • chmod – Changes permissions for files/directories:
  • chown – Changes the owner of a file/directory:
  • useradd and userdel – Adds and removes users:

5. Networking and Communication

  • ping – Checks the connection with another host:
  • ifconfig – Displays information about network interfaces:
  • ssh – Connects remotely to another computer:
  • scp – Copies files over SSH:

6. Command Usage Examples

Below is an example of using several discussed commands:

  • chmod – Changes permissions for files/directories:
  • chown – Changes the owner of a file/directory:
  • useradd and userdel – Adds and removes users:

7. Disk and File System Management

  • df – Displays information about disk space availability:
  • du – Shows the size of files and directories:
  • mount – Mounts a file system:
  • umount – Unmounts a file system:

8. Searching for Files

  • find – Searches for files in the system:
  • locate – Quickly searches for files in the system:
  • grep – Searches for patterns in files:
  • which – Finds the full path to an executable file:

9. Communicating with the System

  • echo – Displays text on the screen:
  • cat – Displays the contents of a file:
  • more – Displays the contents of a file page by page:
  • less – Similar to more, but offers more navigation options:
  • man – Displays the user manual for a command:

10. Working with Archives

  • tar – Creates or extracts archives:
  • zip – Creates a ZIP archive:
  • unzip – Extracts ZIP files:
  • tar -xvzf – Extracts a TAR.GZ archive:
  • gzip – Compresses files in .gz format:
  • gunzip – Extracts .gz files:

11. System Monitoring

  • uptime – Displays the system uptime and load:
  • dmesg – Displays system messages related to boot and hardware:
  • iostat – Shows input/output system statistics:
  • free – Displays information about RAM:
  • netstat – Displays information about network connections:
  • ss – A modern version of netstat, used for monitoring network connections:

12. Working with System Logs

  • journalctl – Reviews system logs:
  • tail – Displays the last lines of a file:
  • logrotate – Automatically manages logs:

13. Advanced File Operations

  • ln – Creates a link to a file:
  • xargs – Passes arguments from input to other commands:
  • chmod – Changes permissions for files/directories:
  • chattr – Changes file attributes:

Linux offers a wide array of commands that allow for complete control over the computer. Key commands such as ls, cd, cp, and rm are used daily to navigate through the file system, manage files, and directories. To effectively master these commands, it’s best to start with those that are most useful in everyday work. For instance, commands for navigating directories and managing files are fundamental and require practice to become intuitive. Other commands, such as ps for monitoring processes, ping for testing network connections, or chmod for changing permissions, are also worth knowing to fully leverage the power of the Linux system.

To learn effectively, it’s advisable to start by experimenting with commands in practice. Creating files, directories, copying, and deleting data allows for familiarity with their operation. Over time, it’s worthwhile to start combining different commands to solve more advanced problems, such as monitoring processes, managing users, or working with system logs. One can also use documentation, such as man or websites, to delve into the details of each command and its options.

Remember, regular use of the terminal allows for learning habits that make handling the Linux system more natural. Frequent use of commands, solving problems, and experimenting with new commands is the best way to master the system and fully utilize it.

Linux is indeed a powerful tool that provides great control over the system… but remember, don’t experiment on production! After all, experimenting on a production server is a bit like playing Russian roulette — only with bigger consequences. If you want to feel like a true Linux wizard, always test your commands in a development environment. Only then will you be able to learn from mistakes instead of searching for the cause of several gigabytes of data disappearance. And if you don’t know what you’re doing, simply summon your trusty weapon: man!

Enhancing Virtual Machine Management with QEMU Guest Agent on Proxmox


Ever wondered how to streamline the management and monitoring of virtual machines in your Proxmox environment? QEMU Guest Agent is a game-changer, offering tools that significantly enhance the way you interact with virtual systems. Let’s dive into how this tool can transform your setup.

What Makes QEMU Guest Agent Indispensable?

  • Time Synchronization: Keeping time consistent across your virtual machines and the host can be tricky, but QEMU Guest Agent automates this, ensuring that time-sensitive operations run smoothly.
  • Power Management: Imagine being able to shut down or reboot your virtual machines right from the Proxmox panel — no need to log in to each VM. It’s not only convenient but also a time saver.
  • System Monitoring: Get detailed insights into file systems, network activities, and other operational parameters directly from your host. This level of monitoring allows for timely diagnostics and adjustments.
  • Disk Management: Handling disk operations without having to intervene directly on the VM makes backing up and restoring data more straightforward than ever.

Setting Up QEMU Guest Agent on Your Proxmox Server

Getting started with QEMU Guest Agent involves a few simple steps:

  • Enable the Agent: Log in to your Proxmox panel, go to the ‘Options’ section of your desired VM, and make sure the ‘QEMU Guest Agent’ option is checked.

Next up, installing it on an Ubuntu VM:

To check whether the qeumu-guest-agent that can make the change is working properly:

The QEMU Guest Agent doesn’t just make life easier by automating the mundane tasks — it also enhances the security and efficiency of your virtual environment. Whether you’re managing a single VM or a whole fleet, it’s an invaluable addition to your toolkit.

Automatic deletion of files on QNAP drive via SSHFS


Automation of Disk Space Management in a Linux Environment

In today’s digital world, where data is being accumulated in ever-increasing amounts, managing disk space has become a key aspect of maintaining operational efficiency in systems. In this article, I will present a script that automates the process of managing space on a remote disk mounted via SSHFS, particularly useful for system administrators who regularly deal with filling storage media.

Prerequisites

Before starting, ensure that SSHFS and all necessary packages enabling its proper operation are installed on your system. SSHFS allows remote file systems to be mounted via SSH, which is crucial for our script’s operation. To install SSHFS and the necessary tools, including a package that enables password forwarding (sshpass), use the following command:

Bash Script for Disk Space Management

Our Bash script focuses on monitoring and maintaining a defined percentage of free disk space on a remote disk mounted via SSHFS. Here are the script’s main functions:

Goal Definition:

TARGET_USAGE=70 – the percentage of disk space we want to maintain as occupied. The script will work to keep at least 30% of the disk space free.

Mount Point and Paths:

MOUNT_POINT=”/mnt/qnapskorupki” – the local directory where the remote disk is mounted. TARGET_DIRS=”$MOUNT_POINT/up*.soban.pl” – the directories where the script will look for files to delete if needed.

Function check_qnap: This function checks whether the disk is mounted and whether the mount directory is not empty. If there are issues, the script attempts to unmount and remount the disk using sshfs with a password forwarded through sshpass.

File Deletion: The script monitors disk usage and, if TARGET_USAGE is exceeded, it finds and deletes the oldest files in specified directories until the target level of free space is achieved.

Example Script Execution:

script starts working and gradually deletes files

The script will run until it reaches 70% usage as planned:

Script runs until reaching 70%

Downloading the script and adding it to crontab

Of course, the script should be adjusted to meet your specific needs. However, if you want to download it and add it to crontab, follow these steps:

If you want to automate the file removal process, for example, at the end of the day, add the following entry to crontab:

In this case, the script will run every day at 11:55 PM:

Make sure to use the correct path to the script.

Security and Optimization

The script uses a password directly in the command line, which can pose a security risk. In practical applications, it is recommended to use more advanced authentication methods, such as SSH keys, which are more secure and do not require a plaintext password in the script. However, in the case of QNAP, we used a password when writing this script.

Conclusion

The presented script is an example of how daily administrative tasks, such as disk space management, can be automated, thus increasing efficiency and reliability. Its implementation in real IT environments can significantly streamline data management processes, especially in situations where quick response to changes in disk usage is critical.