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.
basename Command Guide
`basename` command is used to extract only the pure filename (or directory name) from a file path, excluding the directory part. It is very useful when you need to handle file names cleanly in shell scripts.
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.
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.
Mastering the chmod Command
A guide to the `chmod` command used in Linux to change file and directory access permissions. Use this tool to easily understand and apply permission settings.
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.
cp Command Guide: Copying Files and Directories
The `cp` command (copy) is used in Linux and Unix-based operating systems to copy files or directories. It is essential when creating duplicates while preserving the original files/directories. This guide will help you learn various uses of the `cp` command.
Guide to the dirname Command
The `dirname` command is used to extract the directory path without the file name from a given file path. It is particularly useful in shell scripts when referencing other files or directories based on the location of a file.
file: Guide to Identifying File Types
Determines the type and MIME information of files by examining their actual byte content instead of relying on extensions. It uses the libmagic database.
Mastering the find Command
This is a guide to the `find` command, which is used to search for files and directories within the file system in Linux. You can efficiently find the files you want by combining various conditions and actions.
ln Command Guide: Creating Links (Hard Links and Symbolic Links)
`ln` command (link) is used to create links to files or directories in Linux and Unix-like operating systems. Links act as 'shortcuts' or 'aliases' to the original file or directory, and there are two main types: hard links and symbolic links (soft links). Through this guide, learn about various usages of the `ln` command and the differences between link types.
Mastering the ls Command
The `ls` command is one of the most basic yet essential commands that displays a list of files and folders in a directory. Master the various options and usages of the `ls` command through this interactive guide.
lsblk: Guide to Displaying Block Device Information
The lsblk command displays information about all block devices (hard disks, SSDs, USB drives, etc.) on the system in a tree-like format. It is useful for quickly understanding physical disk information such as device name, size, mount point, and type.