Search and explore various Linux commands.
Summarize the situation you want to resolve in up to 300 characters and ask the AI which commands you need.
Click on the desired category to filter the commands. You can also enter a keyword to search for specific content.
GParted: Graphical Disk Partition Management Tool
GParted is a graphical user interface (GUI) based disk partition management tool. It visually provides the powerful features of `parted`, allowing you to easily create, delete, and resize partitions with your mouse. Even beginners can manage disks safely and intuitively.
Mastering the grep command
This is a guide to the `grep` command, which is used in Linux to search for a specific pattern in text files or standard input. With this tool, you can efficiently find and filter the text you want.
groups: Print the list of groups a user belongs to
The `groups` command prints a list of group names that the current logged-in user or a specified user belongs to. It is useful for quickly checking a user's group membership to understand file or directory access permissions.
gunzip Command Guide: Decompressing gzip Files
The `gunzip` command is used to decompress files with the `.gz` extension that were compressed with `gzip`. It performs the same function as the `gzip -d` command and is used to restore a compressed file to its original state. Use this guide to learn the basics of `gunzip` and its useful options.
gzip Command Guide: File Compression and Decompression
The `gzip` command, short for GNU Zip, is used to compress files to save disk space and reduce transfer time over a network. Files compressed with `gzip` typically have a `.gz` extension and can be decompressed using the `gunzip` command. This guide will help you learn the basic usage and useful options of `gzip`.
halt: Guide to Immediately Shut Down the System
The `halt` command stops all CPU functions of the system. It puts the system into a safely shut down state where only the power remains on. Typically, 'poweroff' or 'shutdown -h' commands are used instead to completely power off the system.
head: Output the beginning of a file
The head command displays the beginning of a text file (by default, the first 10 lines) to standard output. It is useful for quickly understanding the content or format of a file without viewing the entire file.
hexdump: Output Hexadecimal Dump of a File
The hexdump command is a tool that outputs the contents of a file in hexadecimal format. It is useful for analyzing the structure of binary files or for identifying invisible special characters (such as newlines, tabs, etc.) in text files.
Guide to the history Command: Viewing and Managing Shell Command History
The `history` command displays a list of commands that the user has previously executed in the terminal. This is very useful for easily finding and re-executing commands used in the past or remembering what tasks were performed. Through this guide, learn the basic usage of the `history` command and various options necessary for managing history.
host: Simple DNS Information Lookup Tool
The `host` command is a simple and intuitive tool for querying Domain Name System (DNS) related information. It is useful for quickly checking the IP address (A record), mail server (MX record), etc., of a specific domain, and provides a more concise output than `dig` or `nslookup`.
htop Command Guide: Enhanced Interactive Process Viewer
`htop` is an interactive process viewer used for monitoring running processes and system resource usage in real-time on Linux systems. It provides a much more user-friendly interface and powerful features compared to the traditional `top` command, making it a widely recommended tool for system performance analysis and troubleshooting. In this guide, you will learn how to install `htop`, its key features, and how to use it effectively.
Mastering the HTTPie Command
`httpie` is a command-line HTTP client that makes interaction with APIs and HTTP servers easy and intuitive. It offers a more user-friendly syntax than `curl`, along with features like automatic JSON support and syntax highlighting. It is primarily used for API testing, debugging, and communicating with web services.