|
|
(47 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| = Common Commands with examples =
| | A place to get started to understand Linux commands and tools |
| These commands and their usage are used for both the LinuC Level 1 Exam 101 and Exam 102. Using these commands in various scenarios to become proficient in basic command-line tasks, file management, and system administration.
| |
| == ls - List directory contents ==
| |
| The ls command is used to list files and directories in a specified location. It has many options to customize the output.
| |
|
| |
|
| Examples:
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Common_Commands_with_examples Common Commands ] |
| *ls -l: Long listing format, showing permissions, owner, size, and modification date | | * [https://matomo.mintarc.com/mediawiki/index.php?title=SSH_Stuff SSH Stuff] |
| *ls -a: Show all files, including hidden ones (those starting with a dot)
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Create_monitor_and_terminate_process Create, monitor and terminate process] |
| *ls -R: Recursively list subdirectories
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=SystemD_Stuff SystemD Stuff] |
| *ls -lh: Use human-readable file sizes (e.g., 1K, 234M, 2G)
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Desktop_environment Desktop Environment] |
| *ls /etc: List contents of the /etc directory
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Directory_Manipulation_and_Management Directory Manipulation and Management] |
| | | * [https://matomo.mintarc.com/mediawiki/index.php?title=Perform_basic_file_management Perform basic file management] |
| == cd - Change directory ==
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Hard_and_symbolic_links_Weight Hard and symbolic links Weight] |
| cd is used to navigate the file system. It can use absolute or relative paths.
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=File_placement_and_search File placement and search] |
| | | * [https://matomo.mintarc.com/mediawiki/index.php?title=Process_text_stream_with_filters Process text stream with filters] |
| Examples:
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Use_streams,_pipes_and_redirects Use streams, pipes and redirects] |
| *cd /home/user: Change to the /home/user directory (absolute path) | | * [https://matomo.mintarc.com/mediawiki/index.php?title=Search_text_files_using_regular_expressions Search text files using regular expressions] |
| *cd ..: Move up one directory level
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Perform_basic_file_edits_using_an_editor Perform basic file edits using an editor] |
| *cd -: Return to the previous directory
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Repository_and_Package_Management Repository and Package Management] |
| *cd ~: Change to the user's home directory
| | * [https://matomo.mintarc.com/mediawiki/index.php?title=Debian_package_management Debian package management] |
| *cd Documents/Projects: Change to a subdirectory (relative path)
| | * [[Linux_Kernel|The Linux Kernel]] |
| | | * [[Init_Systems|Explaining Init Systems]] |
| == pwd - Print working directory == | | * [[Linux_Virtual_Machines|Linux Virtual Machines]] |
| pwd displays the full path of the current working directory.
| | * [[Mmdebstrap|mmdebstrap]] |
| | |
| Examples:
| |
| *pwd: Outputs something like /home/user/Documents | |
| *pwd -P: Print the physical directory, without any symbolic links
| |
| | |
| == mkdir - Create a new directory ==
| |
| mkdir is used to create one or more directories.
| |
| | |
| Examples:
| |
| *mkdir newdir: Create a directory named "newdir" | |
| *mkdir -p parent/child/grandchild: Create nested directories
| |
| *mkdir dir1 dir2 dir3: Create multiple directories at once
| |
| *mkdir -m 755 secured_dir: Create a directory with specific permissions
| |
| | |
| == touch - Create an empty file or update file timestamps ==
| |
| touch can create empty files or update the access and modification times of existing files.
| |
| | |
| Examples:
| |
| *touch newfile.txt: Create a new empty file or update timestamps if it exists
| |
| *touch -t 202502191200 file.txt: Set specific timestamp (YYYYMMDDhhmm)
| |
| *touch -r reference_file target_file: Use timestamps from reference_file | |
| | |
| == cp - Copy files and directories ==
| |
| cp is used to copy files and directories from one location to another.
| |
| | |
| Examples:
| |
| | |
| *cp file.txt /home/user/backup/: Copy a file to another directory
| |
| *cp -r dir1 dir2: Copy a directory and its contents recursively | |
| *cp -i *.txt /destination/: Copy all .txt files, prompting before overwrite
| |
| *cp -p source dest: Preserve file attributes (mode, ownership, timestamps) | |
| | |
| == mv - Move or rename files and directories ==
| |
| mv can move files/directories or rename them.
| |
| | |
| Examples:
| |
| *mv file.txt newname.txt: Rename a file
| |
| *mv /home/user/doc.txt /tmp/: Move a file to another directory | |
| *mv dir1 dir2: Rename a directory (if dir2 doesn't exist) or move dir1 into dir2 | |
| *mv -i *.jpg /home/user/Pictures/: Move all .jpg files, prompting before overwrite
| |
| | |
| == rm - Remove files or directories ==
| |
| rm is used to delete files and directories. Use with caution!
| |
| | |
| Examples:
| |
| *rm file.txt: Delete a file | |
| *rm -r directory/: Recursively remove a directory and its contents
| |
| *rm -f unwanted_file: Force removal without prompting
| |
| *rm -i *.log: Remove .log files with confirmation for each
| |
| | |
| | |
| == rmdir - Remove empty directories ==
| |
| rmdir is used to remove empty directories.
| |
| | |
| Examples:
| |
| *rmdir empty_folder: Remove an empty directory | |
| *rmdir -p parent/child/grandchild: Remove nested empty directories
| |
| | |
| == ssh - Secure Shell for remote system access ==
| |
| sh is used to securely log into remote systems, execute commands on remote machines, and create encrypted tunnels for various network services.
| |
| | |
| Examples:
| |
| | |
| *ssh user@example.com: Connect to example.com as "user"
| |
| *ssh -p 2222 user@example.com: Connect using a non-standard port (2222)
| |
| *ssh -i ~/.ssh/my_key user@example.com: Use a specific private key for authentication | |
| *ssh user@example.com 'ls -l /tmp': Execute a command on the remote system without entering interactive mode
| |
| *ssh -X user@example.com: Enable X11 forwarding for GUI applications
| |
| | |
| == scp - Secure Copy for file transfer == | |
| scp uses SSH to securely copy files between local and remote systems or between two remote systems.
| |
| | |
| Examples:
| |
| | |
| *scp file.txt user@example.com:/home/user/: Copy a local file to a remote system | |
| *scp user@example.com:/home/user/file.txt .: Copy a remote file to the local system
| |
| *scp -r directory/ user@example.com:/home/user/: Recursively copy a directory to a remote system | |
| *scp -P 2222 file.txt user@example.com:/home/user/: Use a non-standard SSH port
| |
| *scp user1@host1:/file user2@host2:/directory/: Copy a file from one remote host to another | |