您好,登錄后才能下訂單哦!
小編給大家分享一下linux如何實(shí)現(xiàn)查找、解壓打包、sed、RPM、yum,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、查找/var目錄下不屬于root、lp、gdm的所有文件、
find -not -user root -a -not -user lp -a -not -user gdm
2、統(tǒng)計/etc/init.d/functions文件中每個單詞的出現(xiàn)次數(shù)并排序(用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的統(tǒng)計次數(shù)不一樣,不是很明白,請解惑.......
3 、利用sed取出ifconfig命令中本機(jī)的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、總結(jié)yum的配置和使用,包括yum倉庫的創(chuàng)建
yum install tree -y
yum repolist
yum clean all
yum reinstall tree
yum remove tree
yum本地倉庫創(chuàng)建網(wǎng)絡(luò)源
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源碼包,并啟動此服務(wù)
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
以上是“l(fā)inux如何實(shí)現(xiàn)查找、解壓打包、sed、RPM、yum”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。