共计 1593 个字符,预计需要花费 4 分钟才能阅读完成。
丸趣 TV 小编给大家分享一下 linux 如何实现查找、解压打包、sed、RPM、yum,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!
1、查找 /var 目录下不属于 root、lp、gdm 的所有文件、
find -not -user root -a -not -user lp -a -not -user gdm
2、统计 /etc/init.d/functions 文件中每个单词的出现次数并排序(用 grep 和 sed)
grep -o \ [[:alpha:]]+\ /etc/init.d/functions | sort | uniq -c |wc -l
grep -o \ [[:alpha:]]+\ /etc/init.d/functions | sort -u |wc -l
sed -nr /\ [[:alpha:]]+\ /p /etc/init.d/functions | sort -u |wc -l
但是 sed 和 grep 的统计次数不一样,不是很明白,请解惑 …….
3、利用 sed 取出 ifconfig 命令中本机的 IPv4 地址
ifconfig ens33 | sed -n 2p | sed s/.inet// | sed s / netmask.$//
ifconfig ens33 | sed -nr 2s/.t (.) net.*$/\1/p
ifconfig ens33 | sed -nr 2s/(^.inet)(.)(netmask.*$)/\2/p
ifconfig ens33 | sed -nr 2s/^.inet (.) net.*$/\1/p
4、总结 yum 的配置和使用,包括 yum 仓库的创建
yum install tree -y
yum repolist
yum clean all
yum reinstall tree
yum remove tree
yum 本地仓库创建网络源
cd yum.repos.d
vim base.repo
[epel]
name=epel
baseurl=https://mirros.tuna.tsinghua.edu.cn/epel/$releasever/$basearch
gpgcheck=0
5、编写初始化脚本 reset.sh 包括别名,提示符颜色,yum 仓库配置文件
6、安装 tree、ftp、lftp、telnet
yum -y install tree yum -y install ftp yum -y install lftp yum -y install telnet
7、在 centos7 上编译安装 apache2.4 源码包,并启动此服务
rz 好像不行。。。
步骤:
1 tar xf httpd-2.4.25.tar.bz2
2 cd httpd-2.4.25/
3 yum groupinstall development tools
4 cat readme、cat install
5 ./configure –prefix /app/httpd –enable-ssl
6 yum install -y apr-devel、yum install -y apr-util-devel、yum install -y pcre-devel yum install -y openssl-devel
7 ./configure –prefix /app/httpd –enable-ssl
8 make
9 make install
10 echo PATH=/app/httpd/bin:$PATH /etc/profile.d/httpd.sh
11 ./etc/profile.d/httpd.sh
12 apachectl start
或者
10 cd /app/httpd/bin
11 ./apachectl start
以上是“linux 如何实现查找、解压打包、sed、RPM、yum”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注丸趣 TV 行业资讯频道!