您好,登錄后才能下訂單哦!
小編給大家分享一下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”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。