linux命令英文
-
Linux command English names:
1. ls (list) – list files and directories
2. cd (change directory) – change the current working directory
3. pwd (print working directory) – print the current working directory
4. mkdir (make directory) – create a new directory
5. rmdir (remove directory) – remove a directory
6. touch – create an empty file or update the timestamp of an existing file
7. cp (copy) – copy files and directories
8. mv (move) – move or rename files and directories
9. rm (remove) – remove files and directories
10. cat (concatenate) – concatenate and display file contents
11. grep (global regular expression print) – search for patterns in files
12. sed (stream editor) – perform operations on text files
13. awk – manipulate and analyze text files
14. chmod (change mode) – change file permissions
15. chown (change owner) – change file ownership
16. chgrp (change group) – change group ownership
17. tar (tape archive) – manipulate archive files
18. zip – create compressed zip archives
19. unzip – extract files from a compressed zip archive
20. ssh (secure shell) – securely access remote machines
21. scp (secure copy) – securely copy files between machines
22. rsync – synchronize files and directories between machines
23. wget – download files from the web
24. curl – transfer data from or to a server
25. ping – send network packets to a specific IP address
26. ifconfig (interface configuration) – view and configure network interfaces
27. netstat (network statistics) – display network connections and routing tables
28. top – display system resource usage and processes
29. ps (process status) – display information about running processes
30. kill – terminate running processes
31. df (disk free) – display available disk space
32. du (disk usage) – estimate file and directory space usage
33. history – display command history
34. man (manual) – display the manual pages for commands
35. find – search for files and directories
36. locate – find files by name
37. tar (tape archive) – manipulate archive files
38. gzip (GNU zip) – compress files
39. gunzip (GNU unzip) – decompress files compressed by gzip
40. sudo (superuser do) – execute command as a superuser2年前 -
1. ls – List Files: This command is used to list the files and directories in the current directory. It displays the names, sizes, permissions, and modification dates of the files.
2. cd – Change Directory: This command is used to change the current working directory. For example, “cd /home” will change the directory to the home directory.
3. mkdir – Make Directory: This command is used to create a new directory. For example, “mkdir documents” will create a new directory called “documents” in the current directory.
4. rm – Remove: This command is used to delete files and directories. For example, “rm file.txt” will delete the file called “file.txt”.
5. cp – Copy: This command is used to copy files and directories. For example, “cp file.txt newfile.txt” will make a copy of the file called “file.txt” and name it “newfile.txt”.
2年前 -
1. Introduction to Linux Commands
2. Essential Linux Commands
2.1. File and Directory Management
2.1.1. ls – List files and directories
2.1.2. cd – Change directory
2.1.3. mkdir – Create a directory
2.1.4. rmdir – Remove a directory
2.1.5. cp – Copy files and directories
2.1.6. mv – Move or rename files and directories
2.1.7. rm – Remove files and directories
2.2. File Manipulation
2.2.1. touch – Create an empty file
2.2.2. cat – Concatenate and print files
2.2.3. tail – Output the last part of files
2.2.4. head – Output the beginning of files
2.2.5. grep – Search for patterns in files
2.2.6. sed – Stream editor for filtering and transforming text
2.3. Process Management
2.3.1. ps – Report a snapshot of the current processes
2.3.2. kill – Terminate processes
2.3.3. top – Dynamic real-time view of running processes
2.4. User Management
2.4.1. useradd – Create a new user account
2.4.2. passwd – Change user password
2.4.3. su – Switch to a different user
2.4.4. sudo – Execute a command as another user
2.5. Networking
2.5.1. ping – Test network connectivity
2.5.2. ifconfig – Configure network interfaces
2.5.3. ssh – Securely connect to remote servers
2.5.4. scp – Securely copy files between local and remote systems
2.5.5. netstat – Network statistics
3. Advanced Linux Commands
3.1. File Permissions
3.1.1. chown – Change file owner and group
3.1.2. chmod – Change file permissions
3.1.3. chgrp – Change group ownership of a file
3.2. Disk Usage
3.2.1. df – Report file system disk space usage
3.2.2. du – Estimate file and directory space usage
3.3. System Information
3.3.1. uname – Print system information
3.3.2. uptime – Display how long the system has been running
3.3.3. free – Display memory usage
3.4. File Compression and Extraction
3.4.1. tar – Create or extract tar archives
3.4.2. gzip – Compress files
3.4.3. gunzip – Decompress files
3.4.4. zip – Package and compress files
3.4.5. unzip – Extract files from a zip archive
3.5. Text Processing
3.5.1. awk – Pattern scanning and processing language
3.5.2. cut – Remove sections from lines of files
3.5.3. sort – Sort lines of text files
3.5.4. diff – Compare files line by line
3.5.5. wc – Word, line, character, and byte count
4. Conclusion
4.1. Summary
4.2. Further Learning Resources2年前