linux命令库英语单词
-
1. File and directory management commands:
– ls (list files and directories)
– cd (change directory)
– pwd (print working directory)
– mkdir (make directory)
– rmdir (remove directory)
– cp (copy files and directories)
– mv (move or rename files and directories)
– rm (remove files and directories)2. Text processing commands:
– cat (concatenate and display files)
– grep (search for patterns in files)
– awk (pattern scanning and processing language)
– sed (stream editor for text transformation)
– sort (sort lines of text files)
– cut (remove sections from lines of files)
– tr (translate, squeeze, and delete characters)3. File permission and ownership commands:
– chmod (change file mode bits)
– chown (change file owner and group)
– chgrp (change group ownership)4. Archiving and compression commands:
– tar (create, archive, and extract files from tape or disk archive)
– gzip (compress files)
– unzip (extract files from a ZIP archive)
– zip (create ZIP archives)5. Network and communication commands:
– ping (send ICMP Echo Request packets to network hosts)
– ssh (secure shell protocol)
– scp (securely copy files between hosts)
– wget (retrieve files from the web via HTTP, HTTPS, and FTP)6. System information and management commands:
– uname (print system information)
– top (monitor system activity)
– ps (report a snapshot of the current processes)
– kill (terminate processes)
– df (display disk space usage)
– free (display amount of free and used system memory)7. Package management commands:
– apt (Advanced Package Tool, for package management in Debian-based systems)
– yum (package manager for RPM-based systems, such as CentOS, Fedora)
– dnf (next-generation package manager for RPM-based systems)8. System administration commands:
– useradd (create a new user or update default new user information)
– usermod (modify a user account)
– userdel (delete a user account)
– passwd (change user password)
– su (switch user or become superuser)
– sudo (execute a command as another user, usually the superuser)
– systemctl (control the systemd system and service manager)
– service (manage system services)2年前 -
1. ls (list) – displays a list of files and directories in the current directory.
2. cd (change directory) – changes the current working directory.
3. pwd (print working directory) – displays the path of the current working directory.
4. mkdir (make directory) – creates a new directory.
5. rmdir (remove directory) – removes an empty directory.
6. cp (copy) – copies files or directories.
7. mv (move) – moves or renames files or directories.
8. rm (remove) – deletes files or directories.
9. touch – creates an empty file or updates the access and modification time of an existing file.
10. cat (concatenate) – displays the content of a file or concatenates files and displays their content.
11. less – displays the content of a file one page at a time.
12. more – displays the content of a file one page at a time.
13. grep (global regular expression print) – searches for patterns in files and displays the lines matching the pattern.
14. chmod (change mode) – changes the file permissions.
15. chown (change owner) – changes the owner of a file or directory.
16. chgrp (change group) – changes the group of a file or directory.
17. find – searches for files and directories based on various criteria.
18. tar (tape archive) – creates or extracts compressed archives.
19. gzip – compresses files.
20. gunzip – decompresses files compressed with gzip.2年前 -
Linux Command Library English Words
Introduction:
The Linux operating system provides a wide range of powerful and versatile commands that can be used to perform various tasks and operations. In this article, we will provide a comprehensive list of commonly used Linux commands along with their corresponding English words.1. File and Directory Operations:
– ls (list): Displays the contents of a directory.
– cd (change directory): Changes the current working directory.
– mkdir (make directory): Creates a new directory.
– rm (remove): Deletes files and directories.
– cp (copy): Copies files and directories.
– mv (move): Moves or renames files and directories.2. File Manipulation:
– cat (concatenate): Displays the contents of a file.
– touch: Creates an empty file or updates the timestamp of an existing file.
– nano: A command-line text editor for creating and modifying files.
– vi (visual editor): A powerful text editor for creating and editing files.
– grep (global regular expression print): Searches for a pattern in files.
– sort: Sorts the contents of a file in ascending or descending order.3. System Information and Monitoring:
– uname (UNIX name): Displays system information.
– top: Displays real-time information about system processes.
– ps (process status): Lists the currently running processes.
– df (disk free): Shows the disk space usage of file systems.
– du (disk usage): Displays the disk usage of files and directories.
– free: Shows the free and used memory in the system.4. Networking:
– ifconfig (interface configuration): Configures network interfaces.
– ping: Sends ICMP echo requests to a host to check its availability.
– ssh (secure shell): Connects to a remote host securely.
– scp (secure copy): Copies files between the local and remote host securely.
– wget: Downloads files from the internet.
– curl: Transfers data to or from a server over various protocols.5. Process Management:
– kill: Terminates a running process.
– pskill (process kill): Terminates a process by its ID.
– nice: Sets the CPU priority of a process.
– renice (reschedule nice): Changes the priority of a running process.
– bg (background): Resumes a suspended background process.
– fg (foreground): Brings a background process to the foreground.6. User and Group Management:
– useradd (user add): Creates a new user account.
– userdel (user delete): Deletes a user account.
– passwd: Changes a user’s password.
– groupadd (group add): Creates a new user group.
– groupdel (group delete): Deletes a user group.
– chown (change owner): Changes the owner of a file or directory.7. Package Management:
– apt (Advanced Package Tool): A package management command-line tool for Debian-based systems.
– yum (Yellowdog Updater Modified): A package management command-line tool for Red Hat-based systems.
– dnf (Dandified Yum): A next-generation package management command-line tool.
– rpm (Red Hat Package Manager): Installs, upgrades, or removes packages on Red Hat-based systems.
– pacman: The package manager for Arch Linux and its variants.
– zypper: A package management command-line tool for SUSE Linux.Conclusion:
This article provides a comprehensive list of commonly used Linux commands along with their corresponding English words. By familiarizing yourself with these commands, you will be able to navigate and operate the Linux operating system more efficiently. Keep in mind that this list is not exhaustive, as there are many more commands available in Linux.2年前