摘要:
1、自建yum仓库,分别为网络源和本地源https://www.cnblogs.com/kesu/p/15203211.html2、编译安装http2.4,实现可以正常访问,并将编译步骤和结果提交。https://www.cnblogs.com/kesu/p/15202223.html3、利用sed 阅读全文
2021年8月29日 #
摘要:
一、搭建yum仓库本地源 创建目录 [root@localhost ~]# mkdir -p /apps/httpd/htdocs/centos/7/os/x86_64/ 我的服务器之前已经安装好了httpd,安装方法可以参考我的博文:https://www.cnblogs.com/kesu/p/1 阅读全文
摘要:
一、安装软件包 [root@localhost ~]# apt install tree 二、删除软件包 [root@localhost ~]# apt remove tree 三、列出仓库软件包 [root@localhost ~]# apt list 四、搜索软件包 [root@localhos 阅读全文
摘要:
1、利用sed 取出ifconfig命令中本机的IPv4地址 [root@localhost]# ifconfig eth0|sed -nr '2s/[^0-9]+([0-9.]+).*/\1/p' 192.168.56.128 2、删除/etc/fstab文件中所有以#开头,后面至少跟一个空白字符 阅读全文
摘要:
第一步:下载Apache http server 源码安装包 [root@localhost ~]# cd /usr/local/src/ [root@localhost src]# wget https://dlcdn.apache.org//httpd/httpd-2.4.48.tar.gz 第 阅读全文
2021年8月18日 #
摘要:
1、统计出/etc/passwd文件中其默认shell为非/sbin/nologin的用户个数,并将用户都显示出来 [root@localhost ~]# grep -v '/sbin/nologin' /etc/passwd|wc -l 10 [root@localhost ~]# grep -v 阅读全文
2021年8月9日 #
摘要:
1、显示/etc目录下,以非字母开头,后面跟了一个字母以及其它任意长度任意字符的文件或目录 [root@bogon ~]# ls /etc/[^a-z][a-z]* 2、复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。 [zhangchuangfei@bog 阅读全文
2021年7月17日 #
摘要:
Linux系统目录是呈倒置的树形层次结构。 目录名称 作用 / 系统根目录 /boot 引导文件存放目录,内核文件(vmlinuz)、引导加载器(bootloader,grub)都存放于此目录 /bin 供所有用户使用的基本命令:不能关联至独立分区,OS启动即会用到的程序 /sbin 管理类的基本命 阅读全文
摘要:
export命令 export声明变量 实例1,声明变量 [zhangchuangfei@localhost ~]$ export abc="This is strings." [zhangchuangfei@localhost ~]$ echo $abc This is strings. 阅读全文
摘要:
screen命令 screen - screen manager with VT100/ANSI terminal emulation 带有 VT100/ANSI 终端仿真的屏幕管理器 screen命令的用法: screen [ -options ] [ cmd [ args ] ] screen 阅读全文