AI Agent Hub

Blog

In-depth articles on AI agents, LLM engineering, servers, Python and software development.

📝
Ubuntu zip/unzip Commands: A Comprehensive Guide to Compression and Extraction Management
Dec 19, 2025 · Ubuntu Common Commands

In the Ubuntu system, compressed archives are used for transferring large files, saving space, and backing up data. `zip` and `unzip` are commonly used tools. Before use, check if they are installed;

# Ubuntu zip Command # Ubuntu unzip command # Ubuntu Compressed Package Management 746 views
📝
Ubuntu Compression and Decompression: Detailed Explanation of the tar Command
Dec 19, 2025 · Ubuntu Common Commands

In Ubuntu, `tar` is the core tool for file archiving and compression. It can package multiple files/directories into a `.tar` archive and, when combined with compression tools like `gzip`, `bzip2`, or

# Ubuntu tar Command # Linux Compression and Decompression # Extract tar.gz 583 views
📝
Quick Locate: Using the Ubuntu grep Command to Search for Text Content
Dec 19, 2025 · Ubuntu Common Commands

grep is a practical text search tool in Ubuntu, short for "Global Regular Expression Print", with its core function being the fast search for lines matching a pattern in text. The basic usage is `grep

# Ubuntu grep Command # Linux Text Search # Basic Usage of grep 507 views
📝
Beginners' Guide: Changing File Ownership with `chown` in Ubuntu
Dec 19, 2025 · Ubuntu Common Commands

`chown` is a core command in Ubuntu for modifying the owner and group of files/directories to adjust file ownership. Its syntax is `chown [options] new_owner[:new_group] file/directory`, with key para

# Ubuntu chown Command # Linux File Permissions # Change file owner 447 views
📝
Ubuntu df/du Commands: Checking Disk Space Usage
Dec 19, 2025 · Ubuntu Common Commands

In the Linux system, `df` and `du` are core tools for disk space management, used to view overall partition usage and specific directory/file space respectively. `df` (Disk Free) analyzes partition

# Ubuntu df du # Linux Disk Space # Usage of the df command 768 views
📝
System Information Viewing: Usage of the Ubuntu uname Command
Dec 19, 2025 · Ubuntu Common Commands

`uname` is a lightweight and practical system information viewing tool in Ubuntu that requires no additional installation. It can quickly obtain basic information such as kernel version, hostname, and

# Ubuntu `uname` Command # Linux System Information # Detailed Explanation of the uname Parameter 583 views
📝
Essential for Terminal: Monitoring System Resources with Ubuntu's top Command
Dec 19, 2025 · Ubuntu Common Commands

In the Ubuntu system, the `top` command is a practical tool for monitoring system resources in the terminal, which can dynamically display the status of CPU, memory, processes, etc. To start it, open

# Ubuntu top Command # Linux System Monitoring # Terminal Resource Management 535 views
📝
Common Issues and Solutions when Using `apt install` on Ubuntu
Dec 19, 2025 · Ubuntu Common Commands

The following are common issues and solutions for Ubuntu's `apt install`: **1. Unable to locate package**: Verify the package name spelling (use `apt search` for confirmation), run `sudo apt update` t

# Ubuntu apt Installation Issues # apt cannot locate the package # Ubuntu Software Installation Tutorial 920 views
📝
Cleaning Up Ubuntu System: Detailed Explanation of the `apt autoremove` Command
Dec 19, 2025 · Ubuntu Common Commands

After installing and uninstalling software in Ubuntu, residual unnecessary dependency packages often remain, occupying disk space and bloating the system. `apt autoremove` can automatically clean up t

# Ubuntu Cleanup # apt autoremove # System Optimization 900 views
📝
Essential for System Updates: The Difference Between `apt update` and `upgrade` in Ubuntu
Dec 19, 2025 · Ubuntu Common Commands

Updating Ubuntu systems relies on `apt update` and `apt upgrade`, which serve different purposes and must be executed in sequence. `apt update` is used to refresh the package index (checking the lates

# Ubuntu apt update # Difference between `apt upgrade` and `apt full-upgrade` # Linux System Update 716 views