01.知识点回顾
常用命令
1.pwd
2.cd-~...../../
3.ls-l 详细信息-a 查看隐藏的文件
4.touch
5.mkdir-p 递归创建目录
6.cat 查看文件内容-n 显示行号
7.cp 复制文件-r 复制目录
8.mv 移动文件/目录
9.rm 删除文件-r 删除目录-f 强制删除不提示
10.tree 树形结构
11.vi vim 文件编辑 # 替换文件内容
12.history 查看历史记录
13.grep 模糊过滤字符串
14.head 显示头部-n 3 # 前n行 省略-n -3
15.tail 显示尾巴-n 3 # 后n 行-f 实时显示文件的变化 tailf-F ..
16.which 查看命令的绝对路径
17.wc -l 统计行数
18.df 查看磁盘-h
19.lscpu 查看cpu信息
20.free -h 查看内存信息
21.uptime 查看负载信息
22.w 查看负载和登录信息
23.hostname 查看主机名称
24.hostnamectl 查看主机信息
25.uname 查看系统版本和内核信息
26.blkid 查看硬件的设备的UUID
27.mount 挂载
28.umount 卸载
29.ip address 查看ip地址 ip a
30.ifconfig 查看ip地址ifconfig ens33
31.ping
32.nslookup 域名解析
33.ifdown 关闭网卡
34.ifup 启动网卡
35.echo 打印字符串 屏幕shell编程 菜单。
36.shutdown 关机-h now 立刻关机-r now 立刻重启
37.poweroff 关机
38.init 0 关机
39.reboot 重启
40.init 6 重启
41.hostnamectl set-hostname xx # 修改主机名称
42.source 让变量文件重新执行一遍其他知识点:
1.命令提示符
2.目录结构
3./etc/重要系统文件
1)/etc/sysconfig/network-scrips/ifcfg-ens33
2)/etc/hostname # 主机名称
3)/etc/hosts # 本地DNS 默认空的
4)/etc/resolv.conf # DNS的配置文件 nameserver 223.5.5.5 面试题
5)/etc/rc.local # 开机自动运行里面的命令
6)/etc/profile # 永久生效 变量配置文件
7)/etc/inittab 不用配置文件,运行级别面试点
8)/etc/fstab # 开机自动挂载 讲磁盘还会讲到
9)/etc/issue issue.net 清空
10)/etc/motd # 登录提示
11)/etc/os-release # 查看系统版本号
PATH路径: 命令路径
第三方程序: /user/maven/bin/mvn 命令
补充: 执行命令方式 相对路径和绝对路径
[root@oldboy ~]# /usr/bin/touch 1.txt
相对路径: 扩展
[root@oldboy bin]# ./touch /root/a.txt日志文件:序列: {}文件中输出内容:
>
>>
seq
[root@oldboy ~]# seq 10
1
2
3
4
5
6
7
8
9
10
[root@oldboy ~]# echo {1..10}
1 2 3 4 5 6 7 8 9 10
02.Linux 操作系统优化
1.修改默认的 YUM 仓库
什么是YUM仓库: 软件仓库(华为软件应用商店) yum软件仓库 yum源
仓库地址: 国外的官网仓库。清华源 阿里源 重庆大学源
https://ip138.com/ 查看域名的IP地址所在的国家或者地区阿里源仓库地址:
http://opsx.alibaba.comcentos操作系统: 默认的为国外的仓库,下载速度慢。修改为国内的YUM仓库
第一步: 移动备份
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
第二步: 下载新的仓库地址
curl -o /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo麒麟操作系统: 默认不需要修改。
Ubuntu系统: 修改为国内的YUM仓库
查看默认的仓库:
root@ubuntu:~# apt-cache policy
Package files:100 /var/lib/dpkg/statusrelease a=now500 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packagesrelease v=22.04,o=Ubuntu,a=jammy-security,n=jammy,l=Ubuntu,c=multiverse,b=amd64origin security.ubuntu.com
...省略第一步: 编辑/etc/apt/sources.list
root@ubuntu:~# vim /etc/apt/sources.list第二步: 删除里面默认的所有内容
dG第三步: 进入编辑模式粘贴以下内容
deb https://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiversedeb https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiversedeb https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse# deb https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse
# deb-src https://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiversedeb https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb-src https://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse第四步: 保存退出第五步: 生成软件本地缓存
root@ubuntu:~# apt update查看配置是否成功
root@ubuntu:~# apt-cache policy
or或者
直接安装命令测试是否从阿里云下载软件
root@ubuntu:~# apt -y install lrzsz安装软件:
centos和麒麟: yum -y install xx
ubuntu: apt -y install xx安装epel扩展仓库:
Centos和麒麟需要安装,ubuntu不需要安装。
麒麟安装epel扩展仓库:
[root@oldboy ~]# wget -O /etc/yum.repos.d/epel.repo https://mirrors.aliyun.com/repo/epel-7.repo查看是否成功:
[root@oldboy ~]# ll /etc/yum.repos.d/
total 8
-rw-r--r-- 1 root root 664 Aug 4 2022 epel.repo
-rw-r--r-- 1 root root 701 Sep 8 2022 kylin_x86_64.repo安装软件:
麒麟:yum -y install lrzszyum -y install cowsay sl # 在扩展的epel仓库中ubuntu: apt -y install lrzsz cowsay sl[root@oldboy ~]# animalsay "呵呵哒" # 动物说话
2.关闭防火墙
作用: 阻止非法流量进入系统。
什么情况下开启防火墙
1.在有公网的服务器上需要开启
2.服务器上有服务器的情况下开启(NAT路由器)
什么情况下关闭防火墙
1.内网情况下关闭
2.测试服务器关闭
3.在流量较大的情况下(网站访问人多)centos和麒麟防火墙: firewalld
systemctl 动作 服务名称
动作:
systemctl start 服务 启动
systemctl stop 服务 停止
systemctl status 服务 状态
systemctl reload 服务重载
systemctl restart 服务重启
systemctl enable 服务 开机自动让这个服务运行
systemctl disable 服务 开机禁止让这个服务运行centos和麒麟系统关闭防火墙的流程:
第一步: 从系统中关闭
[root@oldboy ~]# systemctl stop firewalld
第二步: 禁止开机自动运行
[root@oldboy ~]# systemctl disable firewalldubuntu系统关闭防火墙流程:
第一步: 从系统中关闭
root@ubuntu:~# systemctl stop ufw
第二步: 禁止开机自动运行
root@ubuntu:~# systemctl disable ufw
3.关闭 selinux
美国国家安全局开发,企业中不用。
centos: 默认开启需要关闭
第一步: 操作系统退出
[root@oldboy ~]# setenforce 0
第二步: 禁止开机启动
修改/etc/selinux/config 配置文件将
SELINUX=enforcing 修改为 SELINUX=disabled麒麟: 默认关闭 不需要配置任何信息。
ubuntu: 默认关闭 不需要配置任何信息。
4.字符集优化
字符集: 让字符串正常的在系统中显示
GBK: 国标
UTF-8: 万国码 默认
en_US.UTF-8 英语表示
zh_CN.UTF-8 中文表示查看默认的字符集:
root@ubuntu:~# echo $LANG
en_US.UTF-8麒麟修改字符集:
第一步: vim 编辑这个文件
[root@oldboy ~]# vim /etc/locale.conf
LANG="zh_CN.UTF-8"
第二步: 修改
LANG="en_US.UTF-8"
第三步: 让配置文件生效
[root@oldboy ~]# source /etc/locale.conf
或者
重新连接xshell生效ubuntu修改字符集:
第一步: vim编辑以下文件
root@ubuntu:~# vim /etc/default/locale
LANG=en_US.UTF-8
第二步: 修改字符集
root@ubuntu:~# vim /etc/default/locale
LANG=zh_CN.UTF-8
第三步: 让配置文件生效
[root@oldboy ~]# source /etc/default/locale
或者
重新连接xshell生效
5.时间同步
时间分为两种: 如果时间不对,麒麟软件无法安装,会影响业务。
硬件时间
系统时间
时间: 我们可以看懂得
时间戳: 看不懂需要转换查看时间: date
[root@oldboy ~]# date
Mon Jul 8 11:50:19 CST 2024修改时间: date 测试使用。
[root@oldboy ~]# date -s 20081010
Fri Oct 10 00:00:00 CST 2008查看硬件时间:
[root@oldboy ~]# clock
2024-07-05 15:04:19.758481+08:00centos和麒麟操作系统:
安装时间同步工具: ntpdate
[root@oldboy ~]# ntpdate 时间服务器 # 时间同步命令 同步为北京时间
时间服务器: ntp1.aliyun.com
# 注意如果系统当前时间不正确,无法安装软件,需要手动调整为当前时间。
[root@oldboy ~]# date -s "20240708 12:00:00"
Mon Jul 8 12:00:00 CST 2024
[root@oldboy ~]# yum -y install ntpdate时间错误如何进行时间同步:
第一步: 修改时间
[root@oldboy ~]# date -s 20081010
Fri Oct 10 00:00:00 CST 2008
[root@oldboy ~]# date
Fri Oct 10 00:00:00 CST 2008第二步: 使用ntpdate命令进行时间同步
[root@oldboy ~]# ntpdate ntp2.aliyun.comubuntu操作系统: 时间默认会自动同步。服务名称systemd-timesyncd
1.修改时区:亚洲/上海 亚洲/重庆
timedatectl set-timezone Asia/Shanghai
root@ubuntu:~# timedatectlLocal time: Mon 2024-07-08 12:06:53 CSTUniversal time: Mon 2024-07-08 04:06:53 UTCRTC time: Mon 2024-07-08 04:06:53Time zone: Asia/Shanghai (CST, +0800)
System clock synchronized: yesNTP service: activeRTC in local TZ: no
root@ubuntu:~# date
Mon Jul 8 12:07:01 PM CST 2024注意如果修改了时区还是显示12小时制: 执行以下命令
修改为24小时
echo "LC_TIME=en_DK.UTF-8" >>/etc/default/locale
重启服务:
systemctl restart systemd-timesyncd.service第一步: 修改时间服务器地址
vim /etc/systemd/timesyncd.conf
root@ubuntu:~# grep NTP /etc/systemd/timesyncd.conf
NTP=ntp2.aliyun.com
#FallbackNTP=ntp.ubuntu.com
第二步:重启时间服务
systemctl restart systemd-timesyncd.service补充: 同步系统时间到硬件时间。