Source: Nuggets - Lion https://juejin.cn/post/6938385978004340744
foreword
The importance of learning Linux for a programmer is self-evident. Front-end development has
Linux
relatively few exposure opportunities compared to back-end development, so it is often easy to ignore it. But learning it well is one of the must-haves for programmers.If this article is helpful to you, please click 👍.
The author uses Alibaba Cloud server
ECS
(the cheapest one)CentOS 7.7
64-bit. Of course, you can also install a virtual machine on your own computer, and then installCentOS
the system in the virtual machine (this is completely free). As for its installation tutorial, you can go to Google to search, there are many related tutorials.Linux Basics
operating system
Operating system for
Operating System
shortOS
, is a part of software, it is the first layer of software on the basis of hardware, and is a bridge between hardware and other software.The operating system controls the operation of other programs, manages system resources, provides the most basic computing functions, such as managing and configuring memory, determining the priority of supply and demand of system resources, etc., and also provides some basic service programs.
what is linux
Difference Between Linux System Kernel and Linux Distribution
Linux
The system kernel refers to the system coreLinus Torvalds
program that is responsible for maintenance and provides hardware abstraction layer, hard disk and file system control and multitasking functions.Linux
A distribution system is what we often call anLinux
operating system, that is,Linux
a collection of products consisting of the kernel and various commonly used software.Summary: It really
Linux
refers to the system kernel, and what we often sayLinux
refers to "a complete operating system with some basic software included in the distribution".Linux vs Windows
stable and efficient; free (or a small fee); Fewer vulnerabilities and quick fixes; Multi-tasking and multi-user; More secure user and file permission policies; Embedded systems suitable for small kernel programs; Relatively low resource consumption. Types of Linux systems
Red Hat Enterprise Edition Linux
:RHEL
is the most widely usedLinux
system in the world. It is extremely performant and stable, and is the (paid) system used in many build environments.Fedora
: The desktop version of the system suite released by Red Hat, users can experience the latest technologies or tools for free. These technologies or tools will be added to theRHEL
system when they are mature, soFedora
they also becomeRHEL
the experimental version of the system.CentOS
: ByRHEL
recompiling the system and releasing it to users for freeLinux
, it has a wide range of users.Deepin
: Released in China, integrating and configuring excellent open source products.Debian
: Strong stability and security, provides free basic support, and has a high degree of recognition and usage abroad.Ubuntu
: is an operating system derived fromDebian
, and has strong compatibility with new hardware.Ubuntu
BothFedora
are excellentLinux
desktop systems andUbuntu
can also be used in the server world.Terminal connection to Alibaba Cloud server
By executing the
ssh [email protected]
command, and then entering the server connection password, you can successfully log in to the remote server. From now on we can operate the remote server on the local computer.
This black panel is the terminal Shell
(command line environment).ssh root@xxx
This is a command that must beShell
executed in .Shell
Shell
The original meaning of this word is "shell", whichkernel
corresponds to (kernel), and is a metaphor for the layer outside the kernel, that is, the dialog interface for the user to interact with the kernel.
Shell
is a program that provides an environment for dialogue with the user. This environment has only one command prompt, which allows users to input commands from the keyboard, so it is also called the command line environment (command line interface
, abbreviated asCLI
).Shell
Receive the command input by the user, send the command to the operating system for execution, and return the result to the user.Shell
is a command interpreter that interprets commands entered by the user. It supports syntaxes such as variables, conditional judgments, and loop operations, so users can useShell
commands to write various small programs, also known asShell
scripts. These scripts areShell
executed through interpretation, not through compilation.Shell
Is a toolbox that provides a variety of small tools for users to easily use the functions of the operating system.Kind of Shell
Shell
There are many kinds of programs, as long as they can provide users with a command-line environment, they can be regarded as programsShell
.Historically, the main ones
Shell
are:
Bourne Shell (sh) Bourne Again shell (bash) C Shell (csh) TENEX C Shell (tcsh) Korn shell (ksh) Z Shell (zsh) Friendly Interactive Shell (fish) Which
Bash
is currently the most commonly usedShell
.MacOS
The default inShell
isBash
.
echo $SHELL
You can view what is currently in use by executing the commandShell
. You can also view all kinds ofcat /etc/shells
current system installations .Shell
Order
command line prompt
After entering the command line environment, the user will see
Shell
the prompt. The prompt is often a string of prefixes and ends with a dollar sign$
, after which the user can enter various commands.Execute a simple command
pwd
:[root@iZm5e8dsxce9ufaic7hi3uZ ~]# pwd
/root
复制代码Command parsing:
root
: indicates the user name;iZm5e8dsxce9ufaic7hi3uZ
: indicates the host name;~
: Indicates that the current directory is the home directory, and theroot
user's home directory is the home directory of ordinary/root
users ;/home
#
: Indicates the permissions you have (root
for users, for#
ordinary users$
).Execute the whoami
command to view the current user name;Execute the hostname
command to view the current host name;About how to create, switch, and delete users, users and permissions will be explained in detail later. Here, users will be used
root
for demonstration.[Remarks]
root
is a super user and has all the permissions of the operating system.command format
command parameters(命令 参数)
复制代码length parameter
单个参数:ls -a(a 是英文 all 的缩写,表示“全部”)
多个参数:ls -al(全部文件 + 列表形式展示)
单个长参数:ls --all
多个长参数:ls --reverse --all
长短混合参数:ls --all -l
复制代码parameter value
短参数:command -p 10(例如:ssh [email protected] -p 22)
长参数:command --paramters=10(例如:ssh [email protected] --port=22)
复制代码Shortcut
Before starting to learn the
Linux
command, there are some shortcuts that must be mastered in advance, and it will be used throughout theLinux
life.
Use the up and down arrow keys ↑ ↓ to recall the commands executed in the past Linux
;Commands or parameters can be completed with Tab
keys only by entering the first few digits;Ctrl + R
: used to find the used command (thehistory
command is used to list all the previously used commands, and then enter the!
command plus the number (!2
) to directly execute the historical command);Ctrl + L
: clear the screen and move the current line to the top of the page;Ctrl + C
: Abort the currently executing command;Ctrl + U
: Cut from the cursor position to the beginning of the line;Ctrl + K
: Cut from the cursor position to the end of the line;Ctrl + W
: cut a word to the left of the cursor;Ctrl + Y
: PasteCtrl + U | K | Y
the cut command;Ctrl + A
: the cursor jumps to the beginning of the command line;Ctrl + E
: the cursor jumps to the end of the command line;Ctrl + D
: close theShell
session;files and directories
organization of documents
view path
pwd
Display the path of the current directory
which
Check the path of the executable file of the
Linux
command. Each command actually corresponds to an executable program. When you enter a command in the terminal and press Enter, the corresponding program is executed. The programwhich
corresponding to the command itself also exists inLinux
middle.In general, a command is an executable program.
Browse and switch directories
ls
List files and directories, it is one of
Linux
the most commonly used commands.【Common parameters】
-a
Show all files and directories including hidden ones-l
show detailed list-h
suitable for human reading-t
Sort by file last modified time-i
Display the fileinode
(inode
is the identification of the file content)WeChat search public number: Architect Guide, Reply: Architects receive materials. cd
cd
It is an Englishchange directory
abbreviation, which means to switch directories.cd / --> 跳转到根目录
cd ~ --> 跳转到家目录
cd .. --> 跳转到上级目录
cd ./home --> 跳转到当前目录的home目录下
cd /home/lion --> 跳转到根目录下的home目录下的lion目录
cd --> 不添加任何参数,也是回到家目录
复制代码[Note] Enter
cd /ho
+ singletab
key will automatically complete the path + doubletab
key will list all possible directories.du
List directory size information.
【Common parameters】
-h
suitable for human reading;-a
At the same time, the size information of the files in the directory is listed;-s
Only the total size is displayed, no specific information is displayed.Browse and create files
cat
Displays all the contents of the file at once, which is more suitable for viewing small files.
cat cloud-init.log
复制代码【Common parameters】
-n
Display line numbers.less
Display file contents in pagination, which is more suitable for viewing large files.
less cloud-init.log
复制代码【Quick operation】
Spacebar: advance one page (one screen); b
key: go back one page;Enter key: move forward one line; y
key: go back one line;Up and down keys: go back or forward one line; d
key: forward half a page;u
key: go back half a page;q
key: stop reading the file, abortless
the command;=
key: display the content of the current page is the line to which line in the file and some other detailed information about the content of this page;h
key: display the help document;/
Key: After entering the search mode, press then
key to jump to a matching item, andN
press the key to jump to the previous matching item. At the same time, you can also enter a regular expression to match.head
Display the first few lines of the file (default is 10 lines)
head cloud-init.log
复制代码【参数】
-n
指定行数head cloud-init.log -n 2
tail
显示文件的结尾几行(默认是10行)
tail cloud-init.log复制代码
【参数】
-n
指定行数tail cloud-init.log -n 2
-f
会每过1秒检查下文件是否有更新内容,也可以用-s
参数指定间隔时间tail -f -s 4 xxx.log
touch
创建一个文件
touch new_file复制代码
mkdir
创建一个目录
mkdir new_folder复制代码
【常用参数】
-p
递归的创建目录结构mkdir -p one/two/three
文件的复制和移动
cp
拷贝文件和目录
cp file file_copy --> file 是目标文件,file_copy 是拷贝出来的文件cp file one --> 把 file 文件拷贝到 one 目录下,并且文件名依然为 filecp file one/file_copy --> 把 file 文件拷贝到 one 目录下,文件名为file_copycp *.txt folder --> 把当前目录下所有 txt 文件拷贝到 folder 目录下复制代码
【常用参数】
-r
递归的拷贝,常用来拷贝一整个目录mv
移动(重命名)文件或目录,与cp命令用法相似。
mv file one --> 将 file 文件移动到 one 目录下mv new_folder one --> 将 new_folder 文件夹移动到one目录下mv *.txt folder --> 把当前目录下所有 txt 文件移动到 folder 目录下mv file new_file --> file 文件重命名为 new_file复制代码
文件的删除和链接
rm
删除文件和目录,由于
Linux
下没有回收站,一旦删除非常难恢复,因此需要谨慎操作rm new_file --> 删除 new_file 文件rm f1 f2 f3 --> 同时删除 f1 f2 f3 3个文件复制代码
【常用参数】
-i
向用户确认是否删除;-f
文件强制删除;-r
递归删除文件夹,著名的删除操作rm -rf
。ln
英文
Link
的缩写,表示创建链接。学习创建链接之前,首先要理解链接是什么,我们先来看看
Linux
的文件是如何存储的:
Linux
文件的存储方式分为3个部分,文件名、文件内容以及权限,其中文件名的列表是存储在硬盘的其它地方和文件内容是分开存放的,每个文件名通过inode
标识绑定到文件内容。Linux 下有两种链接类型:硬链接和软链接。关注公众号:程序IT圈,回复:资源,领取资料 。
硬链接
使链接的两个文件共享同样文件内容,就是同样的
inode
,一旦文件1和文件2之间有了硬链接,那么修改任何一个文件,修改的都是同一块内容,它的缺点是,只能创建指向文件的硬链接,不能创建指向目录的(其实也可以,但比较复杂)而软链接都可以,因此软链接使用更加广泛。ln file1 file2 --> 创建 file2 为 file1 的硬链接复制代码
如果我们用
rm file1
来删除file1
,对file2
没有什么影响,对于硬链接来说,删除任意一方的文件,共同指向的文件内容并不会从硬盘上删除。只有同时删除了file1
与file2
后,它们共同指向的文件内容才会消失。软链接
软链接就类似
windows
下快捷方式。ln -s file1 file2复制代码
执行
ls -l
命名查看当前目录下文件的具体信息total 0-rw-r--r-- 1 root root 0 Jan 14 06:29 file1lrwxrwxrwx 1 root root 5 Jan 14 06:42 file2 -> file1 # 表示file2 指向 file1复制代码
其实
file2
只是file1
的一个快捷方式,它指向的是file1
,所以显示的是file1
的内容,但其实file2
的inode
与file1
并不相同。如果我们删除了file2
的话,file1
是不会受影响的,但如果删除file1
的话,file2
就会变成死链接,因为指向的文件不见了。用户与权限
用户
Linux
是一个多用户的操作系统。在Linux
中,理论上来说,我们可以创建无数个用户,但是这些用户是被划分到不同的群组里面的,有一个用户,名叫root
,是一个很特殊的用户,它是超级用户,拥有最高权限。自己创建的用户是有限权限的用户,这样大大提高了
Linux
系统的安全性,有效防止误操作或是病毒攻击,但是我们执行的某些命令需要更高权限时可以使用sudo
命令。sudo
以
root
身份运行命令sudo date --> 当然查看日期是不需要sudo的这里只是演示,sudo 完之后一般还需要输入用户密码的复制代码
useradd + passwd
useradd
添加新用户passwd
修改用户密码这两个命令需要
root
用户权限useradd lion --> 添加一个lion用户,添加完之后在 /home 路径下可以查看passwd lion --> 修改lion用户的密码复制代码
userdel
删除用户,需要
root
用户权限userdel lion --> 只会删除用户名,不会从/home中删除对应文件夹userdel lion -r --> 会同时删除/home下的对应文件夹复制代码
su
切换用户,需要
root
用户权限sudo su --> 切换为root用户(exit 命令或 CTRL + D 快捷键都可以使普通用户切换为 root 用户)su lion --> 切换为普通用户su - --> 切换为root用户复制代码
群组的管理
Linux
中每个用户都属于一个特定的群组,如果你不设置用户的群组,默认会创建一个和它的用户名一样的群组,并且把用户划归到这个群组。groupadd
创建群组,用法和
useradd
类似。groupadd friends复制代码
groupdel
删除一个已存在的群组
groupdel foo --> 删除foo群组复制代码
groups
查看用户所在群组
groups lion --> 查看 lion 用户所在的群组复制代码
usermod
用于修改用户的账户。
【常用参数】
-l
对用户重命名。需要注意的是/home
中的用户家目录的名字不会改变,需要手动修改。-g
修改用户所在的群组,例如usermod -g friends lion
修改lion
用户的群组为friends
。-G
一次性让用户添加多个群组,例如usermod -G friends,foo,bar lion
。-a
-G
会让你离开原先的群组,如果你不想这样做的话,就得再添加-a
参数,意味着append
追加的意思。chgrp
用于修改文件的群组。
chgrp bar file.txt --> file.txt文件的群组修改为bar复制代码
chown
改变文件的所有者,需要
root
身份才能运行。chown lion file.txt --> 把其它用户创建的file.txt转让给lion用户chown lion:bar file.txt --> 把file.txt的用户改为lion,群组改为bar复制代码
【常用参数】
-R
递归设置子目录和子文件,chown -R lion:lion /home/frank
把frank
文件夹的用户和群组都改为lion
。文件权限管理
chmod
修改访问权限。
chmod 740 file.txt复制代码
【常用参数】
-R
可以递归地修改文件访问权限,例如chmod -R 777 /home/lion
修改权限的确简单,但是理解其深层次的意义才是更加重要的。下面我们来系统的学习
Linux
的文件权限。[root@lion ~]# ls -ldrwxr-xr-x 5 root root 4096 Apr 13 2020 climblrwxrwxrwx 1 root root 7 Jan 14 06:41 hello2.c -> hello.c-rw-r--r-- 1 root root 149 Jan 13 06:14 hello.c复制代码
其中
drwxr-xr-x
表示文件或目录的权限。让我们一起来解读它具体代表什么?
d
:表示目录,就是说这是一个目录,普通文件是-
,链接是l
。r
:read
表示文件可读。w
:write
表示文件可写,一般有写的权限,就有删除的权限。x
:execute
表示文件可执行。-
:表示没有相应权限。权限的整体是按用户来划分的,如下图所示:
现在再来理解这句权限
drwxr-xr-x
的意思:
它是一个文件夹; 它的所有者具有:读、写、执行权限; 它的群组用户具有:读、执行的权限,没有写的权限; 它的其它用户具有:读、执行的权限,没有写的权限。 现在理解了权限,我们使用
chmod
来尝试修改权限。chmod
它不需要是root
用户才能运行的,只要你是此文件所有者,就可以用chmod
来修改文件的访问权限。数字分配权限
权限 数字 r 4 w 2 x 1 因此要改变权限,只要做一些简单的加法就行:
chmod 640 hello.c # 分析6 = 4 + 2 + 0 表示所有者具有 rw 权限4 = 4 + 0 + 0 表示群组用户具有 r 权限0 = 0 + 0 + 0 表示其它用户没有权限对应文字权限为:-rw-r-----复制代码
用字母来分配权限
u
:user
的缩写,用户的意思,表示所有者。g
:group
的缩写,群组的意思,表示群组用户。o
:other
的缩写,其它的意思,表示其它用户。a
:all
的缩写,所有的意思,表示所有用户。+
:加号,表示添加权限。-
:减号,表示去除权限。=
:等于号,表示分配权限。chmod u+rx file --> 文件file的所有者增加读和运行的权限chmod g+r file --> 文件file的群组用户增加读的权限chmod o-r file --> 文件file的其它用户移除读的权限chmod g+r o-r file --> 文件file的群组用户增加读的权限,其它用户移除读的权限chmod go-r file --> 文件file的群组和其他用户移除读的权限chmod +x file --> 文件file的所有用户增加运行的权限chmod u=rwx,g=r,o=- file --> 文件file的所有者分配读写和执行的权限,群组其它用户分配读的权限,其他用户没有任何权限复制代码
查找文件
locate
搜索包含关键字的所有文件和目录。后接需要查找的文件名,也可以用正则表达式。
安装 locate
yum -y install mlocate --> 安装包updatedb --> 更新数据库复制代码locate file.txtlocate fil*.txt复制代码
[注意]
locate
命令会去文件数据库中查找命令,而不是全磁盘查找,因此刚创建的文件并不会更新到数据库中,所以无法被查找到,可以执行updatedb
命令去更新数据库。find
用于查找文件,它会去遍历你的实际硬盘进行查找,而且它允许我们对每个找到的文件进行后续操作,功能非常强大。
find <何处> <何物> <做什么>复制代码
何处:指定在哪个目录查找,此目录的所有子目录也会被查找。 何物:查找什么,可以根据文件的名字来查找,也可以根据其大小来查找,还可以根据其最近访问时间来查找。 做什么:找到文件后,可以进行后续处理,如果不指定这个参数, find
命令只会显示找到的文件。根据文件名查找
find -name "file.txt" --> 当前目录以及子目录下通过名称查找文件find . -name "syslog" --> 当前目录以及子目录下通过名称查找文件find / -name "syslog" --> 整个硬盘下查找syslogfind /var/log -name "syslog" --> 在指定的目录/var/log下查找syslog文件find /var/log -name "syslog*" --> 查找syslog1、syslog2 ... 等文件,通配符表示所有find /var/log -name "*syslog*" --> 查找包含syslog的文件 复制代码
[注意]
find
命令只会查找完全符合 “何物” 字符串的文件,而locate
会查找所有包含关键字的文件。根据文件大小查找
find /var -size +10M --> /var 目录下查找文件大小超过 10M 的文件find /var -size -50k --> /var 目录下查找文件大小小于 50k 的文件find /var -size +1G --> /var 目录下查找文件大小查过 1G 的文件find /var -size 1M --> /var 目录下查找文件大小等于 1M 的文件复制代码
根据文件最近访问时间查找
find -name "*.txt" -atime -7 --> 近 7天内访问过的.txt结尾的文件复制代码
仅查找目录或文件
find . -name "file" -type f --> 只查找当前目录下的file文件find . -name "file" -type d --> 只查找当前目录下的file目录复制代码
操作查找结果
find -name "*.txt" -printf "%p - %u\n" --> 找出所有后缀为txt的文件,并按照 %p - %u\n 格式打印,其中%p=文件名,%u=文件所有者find -name "*.jpg" -delete --> 删除当前目录以及子目录下所有.jpg为后缀的文件,不会有删除提示,因此要慎用find -name "*.c" -exec chmod 600 {} \; --> 对每个.c结尾的文件,都进行 -exec 参数指定的操作,{} 会被查找到的文件替代,\; 是必须的结尾find -name "*.c" -ok chmod 600 {} \; --> 和上面的功能一直,会多一个确认提示复制代码
软件仓库
Linux
下软件是以包的形式存在,一个软件包其实就是软件的所有文件的压缩包,是二进制的形式,包含了安装软件的所有指令。Red Hat
家族的软件包后缀名一般为.rpm
,Debian
家族的软件包后缀是.deb
。
Linux
的包都存在一个仓库,叫做软件仓库,它可以使用yum
来管理软件包,yum
是CentOS
中默认的包管理工具,适用于Red Hat
一族。可以理解成Node.js
的npm
。yum 常用命令
yum update | yum upgrade
更新软件包yum search xxx
搜索相应的软件包yum install xxx
安装软件包yum remove xxx
删除软件包切换 CentOS 软件源
有时候
CentOS
默认的yum
源不一定是国内镜像,导致yum
在线安装及更新速度不是很理想。这时候需要将yum
源设置为国内镜像站点。国内主要开源的镜像站点是网易和阿里云。1、首先备份系统自带
yum
源配置文件mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下载阿里云的
yum
源配置文件到/etc/yum.repos.d/CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo复制代码
3、生成缓存
yum makecache复制代码
阅读手册
Linux
命令种类繁杂,我们凭借记忆不可能全部记住,因此学会查用手册是非常重要的。man
安装更新 man
sudo yum install -y man-pages --> 安装sudo mandb --> 更新复制代码
man 手册种类
可执行程序或 Shell
命令;系统调用( Linux
内核提供的函数);库调用(程序库中的函数); 文件(例如 /etc/passwd
);特殊文件(通常在 /dev
下);游戏; 杂项( man(7)
,groff(7)
);系统管理命令(通常只能被 root
用户使用);内核子程序。 man + 数字 + 命令
输入 man + 数字 + 命令/函数,可以查到相关的命令和函数,若不加数字,
man
默认从数字较小的手册中寻找相关命令和函数man 3 rand --> 表示在手册的第三部分查找 rand 函数man ls --> 查找 ls 用法手册复制代码
man 手册核心区域解析:(以
man pwd
为例)NAME # 命令名称和简单描述 pwd -- return working directory nameSYNOPSIS # 使用此命令的所有方法 pwd [-L | -P]DESCRIPTION # 包括所有参数以及用法 The pwd utility writes the absolute pathname of the current working directory to the standard output. Some shells may provide a builtin pwd command which is similar or identical to this utility. Consult the builtin(1) manual page. The options are as follows: -L Display the logical current working directory. -P Display the physical current working directory (all symbolic links resolved). If no options are specified, the -L option is assumed.SEE ALSO # 扩展阅读相关命令 builtin(1), cd(1), csh(1), sh(1), getcwd(3)复制代码
help
man
命令像新华词典一样可以查询到命令或函数的详细信息,但其实我们还有更加快捷的方式去查询,command --help
或command -h
,它没有man
命令显示的那么详细,但是它更加易于阅读。Linux 进阶
文本操作
grep
全局搜索一个正则表达式,并且打印到屏幕。简单来说就是,在文件中查找关键字,并显示关键字所在行。
基础语法
grep text file # text代表要搜索的文本,file代表供搜索的文件# 实例[root@lion ~]# grep path /etc/profilepathmunge () { pathmunge /usr/sbin pathmunge /usr/local/sbin pathmunge /usr/local/sbin after pathmunge /usr/sbin afterunset -f pathmunge复制代码
常用参数
-i
忽略大小写,grep -i path /etc/profile
-n
显示行号,grep -n path /etc/profile
-v
只显示搜索文本不在的那些行,grep -v path /etc/profile
-r
递归查找,grep -r hello /etc
,Linux 中还有一个 rgrep 命令,作用相当于grep -r
高级用法
grep
可以配合正则表达式使用。grep -E path /etc/profile --> 完全匹配pathgrep -E ^path /etc/profile --> 匹配path开头的字符串grep -E [Pp]ath /etc/profile --> 匹配path或Path复制代码
sort
对文件的行进行排序。
基础语法
sort name.txt # 对name.txt文件进行排序复制代码
实例用法
为了演示方便,我们首先创建一个文件
name.txt
,放入以下内容:ChristopherShawnTedRockNoahZacharyBella复制代码
执行
sort name.txt
命令,会对文本内容进行排序。常用参数
-o
将排序后的文件写入新文件,sort -o name_sorted.txt name.txt
;-r
倒序排序,sort -r name.txt
;-R
随机排序,sort -R name.txt
;-n
对数字进行排序,默认是把数字识别成字符串的,因此 138 会排在 25 前面,如果添加了-n
数字排序的话,则 25 会在 138 前面。wc
word count
的缩写,用于文件的统计。它可以统计单词数目、行数、字符数,字节数等。基础语法
wc name.txt # 统计name.txt复制代码
实例用法
[root@lion ~]# wc name.txt 13 13 91 name.txt复制代码
第一个13,表示行数; 第二个13,表示单词数; 第三个91,表示字节数。 常用参数
-l
只统计行数,wc -l name.txt
;-w
只统计单词数,wc -w name.txt
;-c
只统计字节数,wc -c name.txt
;-m
只统计字符数,wc -m name.txt
。uniq
删除文件中的重复内容。
基础语法
uniq name.txt # 去除name.txt重复的行数,并打印到屏幕上uniq name.txt uniq_name.txt # 把去除重复后的文件保存为 uniq_name.txt复制代码
【注意】它只能去除连续重复的行数。
常用参数
-c
统计重复行数,uniq -c name.txt
;-d
只显示重复的行数,uniq -d name.txt
。cut
剪切文件的一部分内容。
基础语法
cut -c 2-4 name.txt # 剪切每一行第二到第四个字符复制代码
常用参数
-d
用于指定用什么分隔符(比如逗号、分号、双引号等等)cut -d , name.txt
;-f
表示剪切下用分隔符分割的哪一块或哪几块区域,cut -d , -f 1 name.txt
。重定向 管道 流
在
Linux
中一个命令的去向可以有3个地方:终端、文件、作为另外一个命令的入参。命令一般都是通过键盘输入,然后输出到终端、文件等地方,它的标准用语是stdin
、stdout
以及stderr
。
标准输入 stdin
,终端接收键盘输入的命令,会产生两种输出;标准输出 stdout
,终端输出的信息(不包含错误信息);标准错误输出 stderr
,终端输出的错误信息。重定向
把本来要显示在终端的命令结果,输送到别的地方(到文件中或者作为其他命令的输入)。
输出重定向
>
>
表示重定向到新的文件,cut -d , -f 1 notes.csv > name.csv
,它表示通过逗号剪切notes.csv
文件(剪切完有3个部分)获取第一个部分,重定向到name.csv
文件。我们来看一个具体示例,学习它的使用,假设我们有一个文件
notes.csv
,文件内容如下:Mark1,951/100,很不错1Mark2,952/100,很不错2Mark3,953/100,很不错3Mark4,954/100,很不错4Mark5,955/100,很不错5Mark6,956/100,很不错6复制代码
执行命令:
cut -d , -f 1 notes.csv > name.csv
最后输出如下内容:Mark1Mark2Mark3Mark4Mark5Mark6复制代码
【注意】使用
>
要注意,如果输出的文件不存在它会新建一个,如果输出的文件已经存在,则会覆盖。因此执行这个操作要非常小心,以免覆盖其它重要文件。输出重定向
>>
表示重定向到文件末尾,因此它不会像
>
命令这么危险,它是追加到文件的末尾(当然如果文件不存在,也会被创建)。再次执行
cut -d , -f 1 notes.csv >> name.csv
,则会把名字追加到name.csv
里面。Mark1Mark2Mark3Mark4Mark5Mark6Mark1Mark2Mark3Mark4Mark5Mark6复制代码
我们平时读的
log
日志文件其实都是用这个命令输出的。输出重定向
2>
标准错误输出
cat not_exist_file.csv > res.txt 2> errors.log复制代码
当我们 cat
一个文件时,会把文件内容打印到屏幕上,这个是标准输出;当使用了 > res.txt
时,则不会打印到屏幕,会把标准输出写入文件res.txt
文件中;2> errors.log
当发生错误时会写入errors.log
文件中。输出重定向
2>>
标准错误输出(追加到文件末尾)同
>>
相似。输出重定向
2>&1
标准输出和标准错误输出都重定向都一个地方
cat not_exist_file.csv > res.txt 2>&1 # 覆盖输出cat not_exist_file.csv >> res.txt 2>&1 # 追加输出复制代码
目前为止,我们接触的命令的输入都来自命令的参数,其实命令的输入还可以来自文件或者键盘的输入。
输入重定向
<
<
符号用于指定命令的输入。cat < name.csv # 指定命令的输入为 name.csv复制代码
虽然它的运行结果与
cat name.csv
一样,但是它们的原理却完全不同。
cat name.csv
表示cat
命令接收的输入是notes.csv
文件名,那么要先打开这个文件,然后打印出文件内容。cat < name.csv
表示cat
命令接收的输入直接是notes.csv
这个文件的内容,cat
命令只负责将其内容打印,打开文件并将文件内容传递给cat
命令的工作则交给终端完成。输入重定向
<<
将键盘的输入重定向为某个命令的输入。
sort -n << END # 输入这个命令之后,按下回车,终端就进入键盘输入模式,其中END为结束命令(这个可以自定义)wc -m << END # 统计输入的单词复制代码
管道
|
把两个命令连起来使用,一个命令的输出作为另外一个命令的输入,英文是
pipeline
,可以想象一个个水管连接起来,管道算是重定向流的一种。举几个实际用法案例:
cut -d , -f 1 name.csv | sort > sorted_name.txt # 第一步获取到的 name 列表,通过管道符再进行排序,最后输出到sorted_name.txtdu | sort -nr | head # du 表示列举目录大小信息# sort 进行排序,-n 表示按数字排序,-r 表示倒序# head 前10行文件grep log -Ir /var/log | cut -d : -f 1 | sort | uniq# grep log -Ir /var/log 表示在log文件夹下搜索 /var/log 文本,-r 表示递归,-I 用于排除二进制文件# cut -d : -f 1 表示通过冒号进行剪切,获取剪切的第一部分# sort 进行排序# uniq 进行去重复制代码
流
流并非一个命令,在计算机科学中,流
stream
的含义是比较难理解的,记住一点即可:流就是读一点数据, 处理一点点数据。其中数据一般就是二进制格式。 上面提及的重定向或管道,就是把数据当做流去运转的。到此我们就接触了,流、重定向、管道等
Linux
高级概念及指令。其实你会发现关于流和管道在其它语言中也有广泛的应用。Angular
中的模板语法中可以使用管道。Node.js
中也有stream
流的概念。查看进程
在
Windows
中通过Ctrl + Alt + Delete
快捷键查看软件进程。w
帮助我们快速了解系统中目前有哪些用户登录着,以及他们在干什么。
[root@lion ~]# w 06:31:53 up 25 days, 9:53, 1 user, load average: 0.00, 0.01, 0.05USER TTY FROM LOGIN@ IDLE JCPU PCPU WHATroot pts/0 118.31.243.53 05:56 1.00s 0.02s 0.00s w 06:31:53:表示当前时间up 25 days, 9:53:表示系统已经正常运行了“25天9小时53分钟”1 user:表示一个用户load average: 0.00, 0.01, 0.05:表示系统的负载,3个值分别表示“1分钟的平均负载”,“5分钟的平均负载”,“15分钟的平均负载” USER:表示登录的用于 TTY:登录的终端名称为pts/0 FROM:连接到服务器的ip地址 LOGIN@:登录时间 IDLE:用户有多久没有活跃了 JCPU:该终端所有相关的进程使用的 CPU 时间,每当进程结束就停止计时,开始新的进程则会重新计时 PCPU:表示 CPU 执行当前程序所消耗的时间,当前进程就是在 WHAT 列里显示的程序 WHAT:表示当下用户正运行的程序是什么,这里我运行的是 w复制代码
ps
用于显示当前系统中的进程,
ps
命令显示的进程列表不会随时间而更新,是静态的,是运行ps
命令那个时刻的状态或者说是一个进程快照。基础语法
[root@lion ~]# ps PID TTY TIME CMD 1793 pts/0 00:00:00 bash 4756 pts/0 00:00:00 ps PID:进程号,每个进程都有唯一的进程号 TTY:进程运行所在的终端 TIME:进程运行时间 CMD:产生这个进程的程序名,如果在进程列表中看到有好几行都是同样的程序名,那么就是同样的程序产生了不止一个进程复制代码
常用参数
-ef
列出所有进程;-efH
以乔木状列举出所有进程;-u
列出此用户运行的进程;-aux
通过CPU
和内存使用来过滤进程ps -aux | less
;-aux --sort -pcpu
按CPU
使用降序排列,-aux --sort -pmem
表示按内存使用降序排列;-axjf
以树形结构显示进程,ps -axjf
它和pstree
效果类似。top
获取进程的动态列表。
top - 07:20:07 up 25 days, 10:41, 1 user, load average: 0.30, 0.10, 0.07Tasks: 67 total, 1 running, 66 sleeping, 0 stopped, 0 zombie%Cpu(s): 0.7 us, 0.3 sy, 0.0 ni, 99.0 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 stKiB Mem : 1882072 total, 552148 free, 101048 used, 1228876 buff/cacheKiB Swap: 0 total, 0 free, 0 used. 1594080 avail Mem PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND 956 root 10 -10 133964 15848 10240 S 0.7 0.8 263:13.01 AliYunDun 1 root 20 0 51644 3664 2400 S 0.0 0.2 3:23.63 systemd 2 root 20 0 0 0 0 S 0.0 0.0 0:00.05 kthreadd 4 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:0H 复制代码
top - 07:20:07 up 25 days, 10:41, 1 user, load average: 0.30, 0.10, 0.07
相当w
命令的第一行的信息。展示的这些进程是按照使用处理器 %CPU
的使用率来排序的。kill
结束一个进程,
kill + PID
。kill 956 # 结束进程号为956的进程kill 956 957 # 结束多个进程kill -9 7291 # 强制结束进程复制代码
管理进程
进程状态
主要是切换进程的状态。我们先了解下
Linux
下进程的五种状态:
状态码 R
:表示正在运行的状态;状态码 S
:表示中断(休眠中,受阻,当某个条件形成后或接受到信号时,则脱离该状态);状态码 D
:表示不可中断(进程不响应系统异步信号,即使用kill命令也不能使其中断);状态码 Z
:表示僵死(进程已终止,但进程描述符依然存在,直到父进程调用wait4()
系统函数后将进程释放);状态码 T
:表示停止(进程收到SIGSTOP
、SIGSTP
、SIGTIN
、SIGTOU
等停止信号后停止运行)。前台进程 & 后台进程
默认情况下,用户创建的进程都是前台进程,前台进程从键盘读取数据,并把处理结果输出到显示器。例如运行
top
命令,这就是一个一直运行的前台进程。后台进程的优点是不必等待程序运行结束,就可以输入其它命令。在需要执行的命令后面添加
&
符号,就表示启动一个后台进程。&
启动后台进程,它的缺点是后台进程与终端相关联,一旦关闭终端,进程就自动结束了。
cp name.csv name-copy.csv &复制代码
nohup
使进程不受挂断(关闭终端等动作)的影响。
nohup cp name.csv name-copy.csv复制代码
nohup
命令也可以和&
结合使用。nohup cp name.csv name-copy.csv &复制代码
bg
使一个“后台暂停运行”的进程,状态改为“后台运行”。
bg %1 # 不加任何参数的情况下,bg命令会默认作用于最近的一个后台进程,如果添加参数则会作用于指定标号的进程复制代码
实际案例1:
1. 执行 grep -r "log" / > grep_log 2>&1 命令启动一个前台进程,并且忘记添加 & 符号2. ctrl + z 使进程状态转为后台暂停3. 执行 bg 将命令转为后台运行复制代码
实际案例2:
前端开发时我们经常会执行 yarn start 启动项目此时我们执行 ctrl + z 先使其暂停然后执行 bg 使其转为后台运行这样当前终端就空闲出来可以干其它事情了,如果想要唤醒它就使用 fg 命令即可(后面会讲)复制代码
jobs
显示当前终端后台进程状态。
[root@lion ~]# jobs[1]+ Stopped top[2]- Running grep --color=auto -r "log" / > grep_log 2>&1 &复制代码
fg
fg
使进程转为前台运行,用法和bg
命令类似。我们用一张图来表示前后台进程切换:
我们可以使程序在后台运行,成为后台进程,这样在当前终端中我们就可以做其他事情了,而不必等待此进程运行结束。
守护进程
一个运行起来的程序被称为进程。在
Linux
中有些进程是特殊的,它不与任何进程关联,不论用户的身份如何,都在后台运行,这些进程的父进程是PID
为1的进程,PID
为1的进程只在系统关闭时才会被销毁。它们会在后台一直运行等待分配工作。我们将这类进程称之为守护进程daemon
。守护进程的名字通常会在最后有一个
d
,表示daemon
守护的意思,例如systemd
、httpd
。systemd
systemd
是一个Linux
系统基础组件的集合,提供了一个系统和服务管理器,运行为PID 1
并负责启动其它程序。[root@lion ~]# ps -auxUSER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMANDroot 1 0.0 0.2 51648 3852 ? Ss Feb01 1:50 /usr/lib/systemd/systemd --switched-root --system --deserialize 22复制代码
通过命令也可以看到
PID
为1的进程就是systemd
的系统进程。
systemd
常用命令(它是一组命令的集合):systemctl start nginx # 启动服务systemctl stop nginx # 停止服务systemctl restart nginx # 重启服务systemctl status nginx # 查看服务状态systemctl reload nginx # 重载配置文件(不停止服务的情况)systemctl enable nginx # 开机自动启动服务systemctl disable nginx # 开机不自动启动服务systemctl is-enabled nginx # 查看服务是否开机自动启动systemctl list-unit-files --type=service # 查看各个级别下服务的启动和禁用情况复制代码
文件压缩解压
打包:是将多个文件变成一个总的文件,它的学名叫存档、归档。 压缩:是将一个大文件(通常指归档)压缩变成一个小文件。 我们常常使用
tar
将多个文件归档为一个总的文件,称为archive
。然后用gzip
或bzip2
命令将archive
压缩为更小的文件。tar
创建一个
tar
归档。基础用法
tar -cvf sort.tar sort/ # 将sort文件夹归档为sort.tartar -cvf archive.tar file1 file2 file3 # 将 file1 file2 file3 归档为archive.tar复制代码
常用参数
-cvf
表示create
(创建)+verbose
(细节)+file
(文件),创建归档文件并显示操作细节;-tf
显示归档里的内容,并不解开归档;-rvf
追加文件到归档,tar -rvf archive.tar file.txt
;-xvf
解开归档,tar -xvf archive.tar
。gzip / gunzip
“压缩/解压”归档,默认用
gzip
命令,压缩后的文件后缀名为.tar.gz
。gzip archive.tar # 压缩gunzip archive.tar.gz # 解压复制代码
tar 归档+压缩
可以用
tar
命令同时完成归档和压缩的操作,就是给tar
命令多加一个选项参数,使之完成归档操作后,还是调用gzip
或bzip2
命令来完成压缩操作。tar -zcvf archive.tar.gz archive/ # 将archive文件夹归档并压缩tar -zxvf archive.tar.gz # 将archive.tar.gz归档压缩文件解压复制代码
zcat、zless、zmore
之前讲过使用
cat less more
可以查看文件内容,但是压缩文件的内容是不能使用这些命令进行查看的,而要使用zcat、zless、zmore
进行查看。zcat archive.tar.gz复制代码
zip/unzip
“压缩/解压”
zip
文件(zip
压缩文件一般来自windows
操作系统)。命令安装
# Red Hat 一族中的安装方式yum install zip yum install unzip 复制代码
基础用法
unzip archive.zip # 解压 .zip 文件unzip -l archive.zip # 不解开 .zip 文件,只看其中内容zip -r sort.zip sort/ # 将sort文件夹压缩为 sort.zip,其中-r表示递归复制代码
编译安装软件
之前我们学会了使用
yum
命令进行软件安装,如果碰到yum
仓库中没有的软件,我们就需要会更高级的软件安装“源码编译安装”。编译安装
简单来说,编译就是将程序的源代码转换成可执行文件的过程。大多数
Linux
的程序都是开放源码的,可以编译成适合我们的电脑和操纵系统属性的可执行文件。基本步骤如下:
下载源代码 解压压缩包 配置 编译 安装 实际案例
1、下载
我们来编译安装
htop
软件,首先在它的官网下载源码:bintray.com/htop/source…[1]下载好的源码在本机电脑上使用如下命令同步到服务器上:
scp 文件名 用户名@服务器ip:目标路径scp ~/Desktop/htop-3.0.0.tar.gz root@121.42.11.34:.复制代码
也可以使用
wegt
进行下载:wegt+下载地址wegt https://bintray.com/htop/source/download_file?file_path=htop-3.0.0.tar.gz复制代码
2、解压文件
tar -zxvf htop-3.0.0.tar.gz # 解压cd htop-3.0.0 # 进入目录复制代码
3、配置
执行
./configure
,它会分析你的电脑去确认编译所需的工具是否都已经安装了。4、编译
执行
make
命令5、安装
执行
make install
命令,安装完成后执行ls /usr/local/bin/
查看是否有htop
命令。如果有就可以执行htop
命令查看系统进程了。网络
ifconfig
查看
ip
网络相关信息,如果命令不存在的话, 执行命令yum install net-tools
安装。[root@lion ~]# ifconfigeth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 172.31.24.78 netmask 255.255.240.0 broadcast 172.31.31.255 ether 00:16:3e:04:9c:cd txqueuelen 1000 (Ethernet) RX packets 1592318 bytes 183722250 (175.2 MiB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 1539361 bytes 154044090 (146.9 MiB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 loop txqueuelen 1000 (Local Loopback) RX packets 0 bytes 0 (0.0 B) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 0 bytes 0 (0.0 B) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0复制代码
参数解析:
eth0
对应有线连接(对应你的有线网卡),就是用网线来连接的上网。eth
是Ethernet
的缩写,表示“以太网”。有些电脑可能同时有好几条网线连着,例如服务器,那么除了eht0
,你还会看到eth1
、eth2
等。lo
表示本地回环(Local Loopback
的缩写,对应一个虚拟网卡)可以看到它的ip
地址是127.0.0.1
。每台电脑都应该有这个接口,因为它对应着“连向自己的链接”。这也是被称之为“本地回环”的原因。所有经由这个接口发送的东西都会回到你自己的电脑。看起来好像并没有什么用,但有时为了某些缘故,我们需要连接自己。例如用来测试一个网络程序,但又不想让局域网或外网的用户查看,只能在此台主机上运行和查看所有的网络接口。例如在我们启动一个前端工程时,在浏览器输入127.0.0.1:3000
启动项目就能查看到自己的web
网站,并且它只有你能看到。wlan0
表示无线局域网(上面案例并未展示)。host
ip
地址和主机名的互相转换。软件安装
yum install bind-utils复制代码
基础用法
[root@lion ~]# host github.combaidu.com has address 13.229.188.59 [root@lion ~]# host 13.229.188.5959.188.229.13.in-addr.arpa domain name pointer ec2-13-229-188-59.ap-southeast-1.compute.amazonaws.com.复制代码
ssh 连接远程服务器
通过非对称加密以及对称加密的方式(同
HTTPS
安全连接原理相似)连接到远端服务器。ssh 用户@ip:port1、ssh root@172.20.10.1:22 # 端口号可以省略不写,默认是22端口2、输入连接密码后就可以操作远端服务器了复制代码
配置 ssh
config
文件可以配置ssh
,方便批量管理多个ssh
连接。配置文件分为以下几种:
全局 ssh
服务端的配置:/etc/ssh/sshd_config
;全局 ssh
客户端的配置:/etc/ssh/ssh_config
(很少修改);当前用户 ssh
客户端的配置:~/.ssh/config
。【服务端
config
文件的常用配置参数】
服务端 config 参数 作用 Port sshd 服务端口号(默认是22) PermitRootLogin 是否允许以 root 用户身份登录(默认是可以) PasswordAuthentication 是否允许密码验证登录(默认是可以) PubkeyAuthentication 是否允许公钥验证登录(默认是可以) PermitEmptyPasswords 是否允许空密码登录(不安全,默认不可以) [注意] 修改完服务端配置文件需要重启服务
systemctl restart sshd
【客户端
config
文件的常用配置参数】
客户端 config 参数 作用 Host 别名 HostName 远程主机名(或 IP 地址) Port 连接到远程主机的端口 User 用户名 配置当前用户的
config
:# 创建configvim ~/.ssh/config# 填写一下内容Host lion # 别名 HostName 172.x.x.x # ip 地址 Port 22 # 端口 User root # 用户复制代码
这样配置完成后,下次登录时,可以这样登录
ssh lion
会自动识别为root
用户。[注意] 这段配置不是在服务器上,而是你自己的机器上,它仅仅是设置了一个别名。
免密登录
ssh
登录分两种,一种是基于口令(账号密码),另外一种是基于密钥的方式。基于口令,就是每次登录输入账号和密码,显然这样做是比较麻烦的,今天主要学习如何基于密钥实现免密登录。
基于密钥验证原理
客户机生成密钥对(公钥和私钥),把公钥上传到服务器,每次登录会与服务器的公钥进行比较,这种验证登录的方法更加安全,也被称为“公钥验证登录”。
具体实现步骤
1、在客户机中生成密钥对(公钥和私钥)
ssh-keygen
(默认使用 RSA 非对称加密算法)运行完
ssh-keygen
会在~/.ssh/
目录下,生成两个文件:
id_rsa.pub
:公钥id_rsa
:私钥2、把客户机的公钥传送到服务
执行
ssh-copy-id [email protected]
(ssh-copy-id
它会把客户机的公钥追加到服务器~/.ssh/authorized_keys
的文件中)。执行完成后,运行
ssh [email protected]
就可以实现免密登录服务器了。配合上面设置好的别名,直接执行
ssh lion
就可以登录,是不是非常方便。wget
可以使我们直接从终端控制台下载文件,只需要给出文件的HTTP或FTP地址。
wget [参数][URL地址]wget http://www.minjieren.com/wordpress-3.1-zh_CN.zip复制代码
wget
非常稳定,如果是由于网络原因下载失败,wget
会不断尝试,直到整个文件下载完毕。常用参数
-c
继续中断的下载。备份
scp
它是
Secure Copy
的缩写,表示安全拷贝。scp
可以使我们通过网络,把文件从一台电脑拷贝到另一台电脑。
scp
是基于ssh
的原理来运作的,ssh
会在两台通过网络连接的电脑之间创建一条安全通信的管道,scp
就利用这条管道安全地拷贝文件。scp source_file destination_file # source_file 表示源文件,destination_file 表示目标文件复制代码
其中
source_file
和destination_file
都可以这样表示:user@ip:file_name
,user
是登录名,ip
是域名或ip
地址。file_name
是文件路径。scp file.txt root@192.168.1.5:/root # 表示把我的电脑中当前文件夹下的 file.txt 文件拷贝到远程电脑scp [email protected]:/root/file.txt file.txt # 表示把远程电脑上的 file.txt 文件拷贝到本机复制代码
rsync
rsync
命令主要用于远程同步文件。它可以同步两个目录,不管它们是否处于同一台电脑。它应该是最常用于“增量备份”的命令了。它就是智能版的scp
命令。软件安装
yum install rsync复制代码
基础用法
rsync -arv Images/ backups/ # 将Images 目录下的所有文件备份到 backups 目录下rsync -arv Images/ root@192.x.x.x:backups/ # 同步到服务器的backups目录下复制代码
常用参数
-a
保留文件的所有信息,包括权限,修改日期等;-r
递归调用,表示子目录的所有文件也都包括;-v
冗余模式,输出详细操作信息。默认地,
rsync
在同步时并不会删除目标目录的文件,例如你在源目录中删除一个文件,但是用rsync
同步时,它并不会删除同步目录中的相同文件。如果向删除也可以这么做:rsync -arv --delete Images/ backups/
。系统
halt
关闭系统,需要
root
身份。halt复制代码
reboot
重启系统,需要
root
身份。reboot
复制代码poweroff
直接运行即可关机,不需要
root
身份。Vim 编辑器
Vim 是什么?
Vim
是从vi
发展出来的一个文本编辑器。其代码补完、编译及错误跳转等方便编程的功能特别丰富,在程序员中被广泛使用。和Emacs
并列成为类Unix
系统用户最喜欢的编辑器。Vim 常用模式
交互模式 插入模式 命令模式 可视模式 交互模式
也成为正常模式,这是
Vim
的默认模式,每次运行Vim
程序的时候,就会进入这个模式。微信搜索公众号:Linux技术迷,回复:linux 领取资料 。
例如执行
vim name.txt
则会进入交互模式。交互模式特征:
在这个模式下,你不能输入文本; 它可以让我们在文本间移动,删除一行文本,复制黏贴文本,跳转到指定行,撤销操作,等等。 插入模式
这个模式是我们熟悉的文本编辑器的模式,就是可以输入任何你想输入的内容。进入这个模式有几种方法,最常用的方法是按字母键
i
(i、I、a、A、o、O
都可以进入插入模式,只是所处的位置不同),退出这种模式,只需要按下Esc
键。
i, I
进入输入模式Insert mode
:i
为“从目前光标所在处输入”,I
为“在目前所在行的第一个非空格符处开始输入”;a, A
进入输入模式Insert mode
:a
为“从目前光标所在的下一个字符处开始输入”,A
为“从光标所在行的最后一个字符处开始输入”;o, O
进入输入模式Insert mode
:o
为“在目前光标所在的下一行处输入新的一行”;O
为在目前光标所在处的上一行输入新的一行。命令模式
命令模式也称为底线命令模式,这个模式下可以运行一些命令例如“退出”,“保存”,等动作。
也可以用这个模式来激活一些
Vim
配置,例如语法高亮,显示行号,等。甚至还可以发送一些命令给终端命令行,例如ls、cp
。为了进入命令模式,首先要进入交互模式,再按下冒号键。
用一张图表示三种模式如何切换:
基本操作
打开 Vim
在终端命令行中输入
vim
回车后Vim
就会被运行起来,也可以用Vim
来打开一个文件,只需要在vim
后面再加文件名。如vim file.name
,如果文件不存在,那么会被创建。插入
进入文件之后,此时处于交互模式,可以通过输入
i
进入插入模式。移动
在
Vim
的交互模式下,我们可以在文本中移动光标。
h
向左移动一个字符j
向下移动一个字符k
向上移动一个字符i
向右移动一个字符当然也可以使用四个方向键进行移动,效果是一样的。
跳至行首和行末
行首:在交互模式下,为了将光标定位到一行的开始位置,只需要按下数字键 0
即可,键盘上的Home
键也有相同效果。行末:在交互模式下,为了将光标定位到一行的末尾,只需要按下美元符号键 $
即可,键盘上的End
键也有相同效果。按单词移动
在交互模式下,按字母键
w
可以一个单词一个单词的移动。退出文件
在交互模式下,按下冒号键
:
进入命令模式,再按下q
键,就可以退出了。如果在退出之前又修改了文件,就直接想用
:q
退出Vim
,那么Vim
会显示一个红字标明错误信息。此时我们有两个选择:
保存并退出 :wq
或:x
;不保存且退出 :q!
。标准操作
删除字符
在交互模式下,将光标定位到一个你想要删除的字符上,按下字母键
x
你会发现这个字符被删除了。也可以一次性删除多个字符,只需要在按
x
键之前输入数字即可。删除(剪切)单词,行
删除一行:连按两次 d
来删除光标所在的那一行。删除多行:例如先输入数字 2
,再按下dd
,就会删除从光标所在行开始的两行。删除一个单词:将光标置于一个单词的首字母处,然后按下 dw
。删除多个单词:例如先按数字键 2
再按dw
就可以删除两个单词了。从光标所在位置删除至行首: d0
。从光标所在位置删除至行末: d$
。复制单词,行
复制行:按两次 y
会把光标所在行复制到内存中,和dd
类似,dd
用于“剪切”光标所在行。复制单词: yw
会复制一个单词。复制到行末: y$
是复制从光标所在处到行末的所有字符。复制到行首: y0
是复制光标所在处到行首的所有字符。粘贴
如果之前用
dd
或者yy
剪切复制过来的,可以使用p
来粘贴。同样也可以使用数字+p
来表示复制多次。微信搜索公众号:Linux技术迷,回复:linux 领取资料 。
替换一个字符
在交互模式下,将光标置于想要替换的字符上。按下
r
键,接着输入你要替换的字符即可。撤销操作
如果要撤销最近的修改,只需要按下
u
键,如果想要撤销最近四次修改,可以按下4,再按下u
。重做
取消撤销,也就是重做之前的修改使用
ctrl + r
。跳转到指定行
Vim
编辑的文件中,每一行都有一个行号,行号从1开始,逐一递增。行号默认是不显示,如果需要它显示的话,可以进入命令模式,然后输入
set nu
,如果要隐藏行号的话,使用set nonu
。
跳转到指定行: 数字+gg
,例如7gg
,表示跳转到第7行。要跳转到最后一行,按下 G
。要跳转到第一行,按下 gg
。高级操作
查找
处于交互模式下,按下
/
键,那么就进入查找模式,输入你要查找的字符串,然后按下回车。光标就会跳转到文件中下一个查找到的匹配处。如果字符串不存在,那么会显示"pattern not found"
。
n
跳转到下一个匹配项;N
跳转到上一个匹配项。[注意] 用斜杠来进行的查找是从当前光标处开始向文件尾搜索,如果你要从当前光标处开始,向文件头搜索则使用
?
,当然也可以先按下gg
跳转到第一行在进行全文搜索。查找并替换
替换光标所在行第一个匹配的字符串:
# 语法:s/旧字符串/新字符串# 实例:s/one/two复制代码
替换光标所在行所有旧字符串为新字符串:
# 语法:s/旧字符串/新字符串/g复制代码
替换第几行到第几行中所有字符串:
# 语法:n,m s/旧字符串/新字符串/g# 实例:2,4 s/one/two/g复制代码
最常用的就是全文替换了:
# 语法:%s/旧字符串/新字符串/g复制代码
合并文件
可以用冒号
+r
(:r
) 实现在光标处插入一个文件的内容。:r filename # 可以用Tab键来自动补全另外一个文件的路径
复制代码分屏
Vim
有一个特别便捷的功能那就是分屏,可以同时打开好几个文件,分屏之后,屏幕每一块被称为一个viewport
,表示“视口”。
横向分屏 :sp 文件名
垂直分屏 :vsp 文件名
分屏模式下的快捷键
Ctrl + w
再加Ctrl + w
,表示从一个viewport
移动光标到另外一个viewport
;Ctrl + w
再加 “方向键”,就可以移动到这个方向所处的下一个视口了;Ctrl + w
再加+
号,表示扩大当前视口;Ctrl + w
再加-
号,表示缩小当前视口;Ctrl + w
再加=
号,表示平均当前视口;Ctrl + w
再加r
键,会反向调换视口位置;Ctrl + w
再加q
键,会关闭当前视口;Ctrl + w
再加o
键,会关闭除当前视口以外的所有视口;运行外部命令
:!
在
Vim
中可以运行一些终端命令,只要先输入:!
,然后接命令名称。例如:
:!ls # 在Vim中打开的文件所在的目录运行ls命令
复制代码可视模式
前面只讲了
Vim
的三种模式,其实还有一种模式叫做可视模式。进入它的三种方式(都是从交互模式开始):
v
字符可视模式,进入后配合方向键选中字符后,然后再按d
键可以删除选中。V
行可视模式,进入后光标所在行默认被选中,然后再按d
键可以删除所在行。Ctrl + v
块可视模式,它是可视模式最有用的功能了,配合d
和I
键可以实现删除选中的内容和插入内容。同时选中多行,并在选中行头部插入内容的具体操作步骤:
1. ctrl + v 进入块可视模式
2. 使用方向键进行选中(上下左右)假设选中5行
3. 输入 I 键进行多行同时插入操作
4. 插入完成后连续按两下 esc 键,实现多行同时插入相同字符
复制代码进入可视模式之后的操作键:
d
键,表示删除选中;I
键,表示在选中之前插入;u
键,表示选中变为小写;U
键,表示选中变为大写;Vim configuration
option parameter
After
Vim
being started, you can run some commands to activate some option parameters, but the configuration of these option parametersVim
will be forgotten when you exit, such as the activation line number explained earlier.cd ~
If you want the configuration you are in to be permanent, you need to create aVim
configuration file in the home directory ( ).vimrc
..vimrc
set number " 显示行号
syntax on " 激活语法高亮
set showcmd " 实时看到输入的命令
set ignorecase " 搜索时不区分大小写
set mouse=a " 激活鼠标,用鼠标选中时相当于进入可视模式
复制代码
Vim
Vim
The configuration is very rich, we can make it our own through personalized configurationIDE
and so on. Yougithub
can also search for some powerfulVim
configuration files on .Summarize
I believe that through the study of this article, you should
Linux
have a more comprehensive understanding.Seeing it all here, just click 👍👍👍.
References
[1] bintray.com/htop/source…: https://link.juejin.cn/?target=https%3A%2F%2Fbintray.com%2Fhtop%2Fsource%2Fhtop%23files