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.
bunzip2: Decompress BZ2 Files
bunzip2 is a command-line utility used to decompress files that have been compressed using the bzip2 compression algorithm. It typically restores files with the '.bz2' extension to their original form. By default, the original compressed file is deleted after successful decompression. This command performs the same function as `bzip2 -d`.
bzip2: File Compression and Decompression
bzip2 is a lossless compression program that uses the Burrows-Wheeler transform and run-length encoding to compress files. It generally offers higher compression ratios than gzip, but at the cost of slower compression and decompression speeds. It is primarily used for compressing single files and is often used in conjunction with `tar` for archiving multiple files.
cal: Display Calendar
The cal command is a utility that displays a calendar for the current month or a specified month and year in the terminal. With simple options, you can view the calendar for the entire year or a specific period.
cat Command Guide: View and Concatenate File Contents
`cat` command is used to read one or more files and display their content to standard output (usually the terminal screen). It is an abbreviation of 'concatenate', and it also provides the function to concatenate files and output them. Learn various ways to use the `cat` command through this guide.
cd Command Guide: Basics of Directory Navigation
The `cd` command (change directory) is one of the most fundamental commands used in Linux and Unix-based operating systems to change the current working directory (location). It helps users easily navigate to desired locations within the file system. This guide will help you learn the various usages of the `cd` command.
chattr: Change File Attributes
The chattr command is used to change the attributes of files on Linux filesystems (like ext2/3/4, XFS, Btrfs, etc.). These attributes, separate from standard file permissions (chmod), control how files behave. For example, you can make files unchangeable or undeletable (immutable), or allow only appending (append-only).
chcon: Change SELinux Security Context of a File
The chcon command is used to change the SELinux (Security-Enhanced Linux) security context of a file or directory. SELinux is a Mandatory Access Control (MAC) system that enhances system security by providing fine-grained control over access to files, processes, ports, and more. Correctly setting the context of files is essential for applications to function properly and adhere to security policies on systems with SELinux enabled.
chef: Running the Chef Infra Client
The Chef Infra Client is a tool used to manage and automate infrastructure, such as servers, cloud instances, and virtual machines, as code (Infrastructure as Code). The `chef` command is used to run the Chef Infra Client to communicate with a Chef server or apply Chef recipes in local mode.
chgrp: Change File/Directory Group Ownership
The chgrp command is used to change the group ownership of specified files or directories. It is an important part of file system permission management, useful for controlling access to resources by users belonging to specific groups.
chkconfig: System Service Runlevel Management
chkconfig is a utility used to manage the runlevels at which services start during boot on systems using System V init scripts. This command allows you to configure services to start or stop at specific runlevels, providing fine-grained control over system boot behavior.
chmod: Change File and Directory Permissions
The chmod command is used to change the access permissions (read, write, execute) of files and directories. The `-R` (recursive) option is particularly useful for batch permission changes across a specified directory and all its subfiles and subdirectories, making it very effective for large-scale permission configuration tasks.
Mastering the chown Command
A guide to the `chown` command in Linux used to change the owner (user) and group of files and directories. Use this tool to easily understand and apply ownership settings.