Some commonly used commands in linux
shutdown -h now Shut down immediately
shutdown -r now Restart the computer now
reboot Restart the computer now
logout Log out the user
vi Editor usage:
1) vi file name
2) Enter i [enter command mode]
3) Enter esc [enter command mode]
4) Enter: [wq means exit and keep q! Exit without saving]
pwd displays the current path
groupadd policy Add policy user group
View all in linux Group information:
vi /etc/group
cat /etc/group
View all user information in linux
vi /etc/passwd
cat /etc/passwd
useradd xiaoming Add xiaoming user [Only users with root permissions can add users]
useradd -g group name user name While adding users Specify user group
passwd Add password to current user
passwd xiaoming Change password for xiaoming user
userdel xiaoming Delete user xiaoming
userdel -r xiaoming Delete User xiaoming and the user's home directory
Command: init [012356]
Running level
0: Shutdown
1: Single user mode
2: There is no network service in multi-user state
3: There is network service in multi-user state
4: The system is not used and reserved for users
5: Image interface
6: System restart
Commonly used run levels are 3 and 5. To modify the default run level, you can modify the number in the id:5:initdefault: line of the file /etc/inittab.
ls List files and directories
-a Show hidden files
-l Show long list format
mkdir Create directory
rmdir delete empty directory
touch create empty file
cp copy
cp -r dir1 dir2 recursive copy command
mv move file and change file name
rm delete files and directories
rm -rf delete all contents (including directories and files)
r recursive f force
more display file contents with paging
less Display file content with paging
grep Query a certain keyword in the text
For example: Find the xiaohong keyword in the file file.txt file: grep "xiaohong " file.txt
If you also want to display the number of lines where the xiaohong keyword appears: grep -n "xiaohong" file.txt
| Pipe command [pass the result of the previous command to | The following commands will be processed]
find Search for files and directories
find /home -name aaa Search for files and directories named man starting from /home
Search for a period of time Files or directories that have been accessed or changed within
find /home -amin -10 Directories or files that have been accessed within ten minutes
find /home -atime -10 Directories that have been accessed within ten hours Or files
find /home -cmin -10 Directories or files that have been changed within ten minutes
find /home -amin -10 Directories or files that were accessed ten minutes ago
Search for files of a specified size
find /home -size +10k Find files with a size of 10k in the /home directory
>,>>Redirect command:
ls -l > a.txt The contents of the list are written to the file a.txt (overwriting)
ls -al >> aa.txt The contents of the list are appended to the file aa At the end of .txt
databse < database_data Enter information from the file
chown user name file name Modify file owner
chgrp group name file name Modify the group where the file is located
Mount command:
mount [-parameter] [device name] [mount point]
Uninstall command:
umount [device name]
Check disk usage:
df [-parameter]
Check which partition a directory is in:
df [full path to directory]
Check the specific situation of the Linux system partition:
fdisk -l
rpm package installation:
rpm -i prm package full path name: install the package to the current system
rpm -ivh rpm package full path name: installation package to the current system prompt message
i: install installation
v: verbose prompt
h :hash progress bar
rpm deletion:
rpm -e rpm package name
If other software depends on the software package you want to uninstall, an error message will be generated during uninstallation .
If you want rpm to ignore this error and continue uninstalling (programs that depend on this package may not run), please use the --nodeps command line option.
The above is the detailed content of Some commonly used commands in linux. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The five basic components of the Linux system are: 1. Kernel, 2. System library, 3. System utilities, 4. Graphical user interface, 5. Applications. The kernel manages hardware resources, the system library provides precompiled functions, system utilities are used for system management, the GUI provides visual interaction, and applications use these components to implement functions.

VS Code One-step/Next step shortcut key usage: One-step (backward): Windows/Linux: Ctrl ←; macOS: Cmd ←Next step (forward): Windows/Linux: Ctrl →; macOS: Cmd →

To view the Git repository address, perform the following steps: 1. Open the command line and navigate to the repository directory; 2. Run the "git remote -v" command; 3. View the repository name in the output and its corresponding address.

Although Notepad cannot run Java code directly, it can be achieved by using other tools: using the command line compiler (javac) to generate a bytecode file (filename.class). Use the Java interpreter (java) to interpret bytecode, execute the code, and output the result.

There are six ways to run code in Sublime: through hotkeys, menus, build systems, command lines, set default build systems, and custom build commands, and run individual files/projects by right-clicking on projects/files. The build system availability depends on the installation of Sublime Text.

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

To install Laravel, follow these steps in sequence: Install Composer (for macOS/Linux and Windows) Install Laravel Installer Create a new project Start Service Access Application (URL: http://127.0.0.1:8000) Set up the database connection (if required)

Installing Git software includes the following steps: Download the installation package and run the installation package to verify the installation configuration Git installation Git Bash (Windows only)
