Linux第三周学习
1、自建yum仓库,分别为网络源和本地源
请移步: yum源学习
2、编译安装http2.4,实现可以正常访问,并将编译步骤和结果提交。
请移步: http服务的部署
3、利用sed 取出ifconfig命令中本机的IPv4地址
[23:01:32 root@localhost ~]#ifconfig eth0 |sed -nr "2s/[^0-9]+([0-9.]+).*/\1/p"
10.0.0.107
4、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符的行的行首的#和空白字符
[23:34:57 root@localhost ~]#sed -r "/^[#[:space:]]{1,}"$/d /etc/fstab
# /etc/fstab
# Created by anaconda on Thu May 5 11:30:05 2022
# Accessible filesystems, by reference, are maintained under '/dev/disk/'.
# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info.
# After editing this file, run 'systemctl daemon-reload' to update systemd
# units generated from this file.
UUID=3c77ff97-4e73-4350-85aa-e01a8d9b6511 / xfs defaults 0 0
UUID=16904567-ba4b-42a7-af0f-06db43ec718a /boot xfs defaults 0 0
UUID=6a7fdc6e-82dc-4c86-8746-4e12dc79962d /data xfs defaults 0 0
UUID=744d3c07-0764-426c-8bcd-61cd18c8f825 none swap defaults 0 0
5、处理/etc/fstab路径,使用sed命令取出其目录名和基名
[04:23:59 root@centos8[ /]#echo "/etc/fstab" | sed -r 's#(^/.*/)([^/]+/?)#\1#'
/etc/
[04:24:44 root@centos8[ /]#echo "/etc/fstab" | sed -r 's#(^/.*/)([^/]+/?)#\2#'
fstab
6、列出ubuntu软件管理工具apt的一些用法(自由总结)
请移步: ubantu软件管理
7、简述osi七层模型和TCP/IP五层模型8、总结描述TCP三次握手四次挥手9、描述TCP和UDP区别
请移步:网络协议OSI模型-TCP/IP
10、网卡绑定bond0的实现
Linux网卡绑定bond0 - 实验