Linux system command notes

Linux system command notes

This article describes the linux system commands. Share with you for your reference, the details are as follows:

1. Linux system directory

/bin system command directory
/dev Device Directory
/home Each system user has a directory under home.
Each user will automatically log in to this directory after logging into the system.
The root user will be in the /root folder.
/lib system library directory
/media multimedia directory
/mnt Mount directory
/proc system memory directory
/sbin Superuser system command directory
/tmp System temporary files
/var Directory for files that change frequently (such as databases, logs)
/boot system startup file directory
/etc Configuration File Directory
/lost+found Lost and found
/opt Directory where third-party applications are located
/root superuser directory
/usr System application directory

2. Commonly used shells

1. What is a shell?

Shell is a set of commands

2. Linux command syntax

Prompt> command name-option parameter

3. Common commands

ls View all files in the directory
-l View file details
-a View all files, including hidden files
pwd View the current working path
cd switch working path
clear
logout
shutdown
-h number of minutes to shut down after
-r number of minutes to restart
-k warning
-c cancel shutdown
halt Shut down immediately
reboot Restart immediately

*ctrl+alt+F(1-6) to the character interface, ctrl+alt+F7 to the graphical interface.

VI Editor

1. What is VI?

Visual interface

2.vi operation mode

1) Command mode
After opening a file, it is in command mode by default. You cannot edit files in command mode.
2) Input mode
Press i in command mode to enter input mode to facilitate editing file contents
3) Last line mode
After editing the content, press the ESC key to enter the command mode, and then press: to enter the last line mode

3.vi command syntax

1)vi filename edits the file. If the file does not exist, it will be created.
2)vi + filename opens the file and positions the cursor on the last line.
3)vi +n filename opens the file and positions the cursor on line N.
4)vi +/string filename Open the file, search for keywords and highlight them, press n to jump.
5)vi filename filename Edit multiple files, enter the next file: n, enter the previous file: prev

4. vi shortcut keys

i Enter content before the cursor and enter input mode
a Enter content after the cursor
esc Enter command mode
yy copy a line
dd deletes a line
p Paste
: Enter last line mode
:Number The cursor is positioned on the specified line
:w save
:q quit
:x Save and exit
:set nu display line number
:set nonu cancel line numbering
:w! or q! Force save or force exit
/keywords Search for keywords and highlight them

5. Install vi software<br>

rpm: implement software installation, uninstallation, upgrade and query
-q query
-a all packages
-e delete
-i Install
-v shows progress
-h Display with #

1) Check whether the vi software is installed

rpm -qa|grep vi

2) If already installed, delete

rpm -e package name

3) Mount the second disc

eject Eject the CD-ROM drive

mount -t auto /dev/cdrom /mnt/cdrom

Mount the cdrom to the cdrom under mnt. If it prompts that cdrom does not exist, then mkdir /mnt/cdrom

This way you can access the CD contents under /mnt/cdrom

umount /mnt/cdrom

Unmount the cdrom

4) Find the installation package rpm and install it

rpm -i installation package

4. Single-user password cracking

1) When entering the system countdown, press any key to enter the following interface, then press e.

2) Then select the following option and press e to enter the following interface.

3) Add a space and single at the end, press Enter, and press b to start.

4) After entering the system, use passwd to change the password

5)Finally, reboot

I hope this article will help you maintain your Linux system.

You may also be interested in:
  • PHP programmers play Linux series nginx beginner guide
  • Nasm implements the boot code of running a self-made Linux boot disk with vmware
  • Analysis of Linux boot process
  • Linux Administrator's Guide (5) -- Booting and Shutting Down
  • Summary of Linux system user management commands
  • Summary of methods to clear cache in Linux system
  • Detailed explanation of sudo command in Linux system
  • Linux system command to delete folders and files
  • How to use the dd command under Linux system
  • Summary of ten tips for sudo command in Linux system
  • Analysis of Linux boot system methods

<<:  Summary of some small issues about MySQL auto-increment ID

>>:  Vue.js implements timeline function

Recommend

Native JS implementation of loading progress bar

This article shares a dynamic loading progress ba...

Vue encapsulates the public function method of exporting Excel data

vue+element UI encapsulates a public function to ...

Detailed explanation of MySQL Strict Mode knowledge points

I. Strict Mode Explanation According to the restr...

Full analysis of Vue diff algorithm

Table of contents Preface Vue update view patch s...

Share 8 CSS tools to improve web design

When one needs to edit or modify the website desi...

Guide to using env in vue cli

Table of contents Preface Introduction-Official E...

JavaScript countdown to close ads

Using Javascript to implement countdown to close ...

CentOS 6 Compile and install ZLMediaKit analysis

Install ZLMediaKit on centos6 The author of ZLMed...

Detailed steps for installing and configuring MySQL 8.0 on CentOS

Preface Here are the steps to install and configu...

Example of how to implement value transfer between WeChat mini program pages

Passing values ​​between mini program pages Good ...

React implements paging effect

This article shares the specific code for React t...

Some indicators of excellent web front-end design

The accessibility of web pages seems to be somethi...