亚洲韩日午夜视频,欧美日韩在线精品一区二区三区,韩国超清无码一区二区三区,亚洲国产成人影院播放,久草新在线,在线看片AV色

您好,歡迎來(lái)到思海網(wǎng)絡(luò),我們將竭誠(chéng)為您提供優(yōu)質(zhì)的服務(wù)! 誠(chéng)征網(wǎng)絡(luò)推廣 | 網(wǎng)站備案 | 幫助中心 | 軟件下載 | 購(gòu)買(mǎi)流程 | 付款方式 | 聯(lián)系我們 [ 會(huì)員登錄/注冊(cè) ]
促銷推廣
客服中心
業(yè)務(wù)咨詢
有事點(diǎn)擊這里…  531199185
有事點(diǎn)擊這里…  61352289
點(diǎn)擊這里給我發(fā)消息  81721488
有事點(diǎn)擊這里…  376585780
有事點(diǎn)擊這里…  872642803
有事點(diǎn)擊這里…  459248018
有事點(diǎn)擊這里…  61352288
有事點(diǎn)擊這里…  380791050
技術(shù)支持
有事點(diǎn)擊這里…  714236853
有事點(diǎn)擊這里…  719304487
有事點(diǎn)擊這里…  1208894568
有事點(diǎn)擊這里…  61352289
在線客服
有事點(diǎn)擊這里…  531199185
有事點(diǎn)擊這里…  61352288
有事點(diǎn)擊這里…  983054746
有事點(diǎn)擊這里…  893984210
當(dāng)前位置:首頁(yè) >> 技術(shù)文章 >> 文章瀏覽
技術(shù)文章

linux系統(tǒng)維護(hù)常見(jiàn)錯(cuò)誤記錄

添加時(shí)間:2016-7-25 19:21:37  添加: 思海網(wǎng)絡(luò) 
一:卸載的時(shí)候出現(xiàn)的錯(cuò)誤: 
umount /dev/nb1 
device is busy 
解決:找到是什么進(jìn)程使得他busy,用 lsof /dev/nb1 . kill掉那個(gè)進(jìn)程,然后重新umount即可。 

二:GD2編譯的時(shí)候出現(xiàn)的錯(cuò)誤: 
The usual way to define `LIBTOOL’ is to add `AC_PROG_LIBTOOL’ 
Libtool library used but `LIBTOOL’ is undefined 
[Makefile.in] Error 1 
解決:缺少編譯安裝的軟件包。如:yum install automake,libjpeg-devel,libpng-devel,freetype-devel,libtiff-devel,autoconf,gettext-devel,libtool 

三:安裝 snmp的時(shí)候出現(xiàn)的錯(cuò)誤: 
1>/bin/sed: can’t read /usr/lib/libbeecrypt.la: No such file or directory 
libtool: link: `/usr/lib/libbeecrypt.la’ is not a valid libtool archive 
make[1]: *** [libnetsnmpmibs.la] Error 1 
解決:以為缺少libbeecrypt.la ,libbeecrypt.so等共享庫(kù),如:yum install libbeecrypt.la 
2>/usr/bin/ld: cannot find -lelf 
解決:ln -s /usr/lib/libelf.so.1 /usr/lib/libelf.so 
3>/usr/bin/ld:can’t not find -lselinux 
解決:缺少libselinux 和 libselinux-devel包,如:yum install libselinux 

四:Rsync同步常見(jiàn)問(wèn)題: 
錯(cuò)誤一: 
@ERROR: auth failed on module xxxxx 
rsync: connection unexpectedly closed (90 bytes read so far) 
rsync error: error in rsync protocol data stream (code 12) at io.c(150) 
解決:這是因?yàn)槊艽a設(shè)置錯(cuò)了,無(wú)法登入成功,檢查一下rsync.pwd,看客服是否匹配。還有服務(wù)器端沒(méi)啟動(dòng)rsync 服務(wù)也會(huì)出現(xiàn)這種情況。 
錯(cuò)誤二: 
password file must not be other-accessible 
continuing without password file 
Password: 
解決:這是因?yàn)閞syncd.pwd rsyncd.sec的權(quán)限不對(duì),應(yīng)該設(shè)置為600。如:chmod 600 rsyncd.pwd 
錯(cuò)誤三: 
@ERROR: chroot failed 
rsync: connection unexpectedly closed (75 bytes read so far) 
rsync error: error in rsync protocol data stream (code 12) at io.c(150) 
解決:這是因?yàn)槟阍?rsync.conf 中設(shè)置的 path 路徑不存在,要新建目錄才能開(kāi)啟同步。 
錯(cuò)誤四: 
rsync: failed to connect to 218.107.243.2: No route to host (113) 
rsync error: error in socket IO (code 10) at clientserver.c(104) [receiver=2.6.9] 
解決:對(duì)方?jīng)]開(kāi)機(jī)、防火墻阻擋、通過(guò)的網(wǎng)絡(luò)上有防火墻阻擋,都有可能。關(guān)閉防火墻,其實(shí)就是把tcp udp 的873端口打開(kāi)。 

五:軟件安裝的時(shí)候常出現(xiàn)的問(wèn)題: 
configure: error: …No recognized SSL/TLS toolkit detected 
# yum -y install openssl-devel 

configure: error: no acceptable cc found in $PATH 
yum -y install gcc-c++ 

configure: error: cannot find output from lex; giving up flex is not installed, install flex. 
yum -y install flex 

configure: error: xml2-config not found. Please check your libxml2 installation. 
yum -y install libxml2-devel 

configure: error: Cannot find OpenSSL’s 
yum -y install openssl-devel 

configure: error: Please reinstall the BZip2 distribution 
yum -y install bzip2-devel 

configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/ 
yum -y install curl-devel 

configure: error: libjpeg.(a|so) not found. 
yum -y install libjpeg-devel 

configure: error: libpng.(a|so) not found. 
yum -y install libpng-devel 

configure: error: freetype2 not found! 
yum -y install freetype-devel 

configure: error: Unable to locate gmp.h 
yum -y install gmp-devel 

configure: error: Cannot find pspell 
yum -y install aspell-devel 

libtool: link: cannot find the library `/usr/lib/libbeecrypt.la’ (librpmio.la: /usr/lib/libbeecrypt.la) 
解決:缺少beecrypt包,如: 
http://sourceforge.net/projects/beecrypt下載beecrypt-4.1.2.tar.gz 
然后運(yùn)行如下命令: 
#tar -zxvf beecrypt-4.1.2.tar.gz 
#./configure 
#make 
#make install 


關(guān)鍵字:linux、系統(tǒng)維護(hù)、錯(cuò)誤記錄 
分享到:

頂部 】 【 關(guān)閉
版權(quán)所有:佛山思海電腦網(wǎng)絡(luò)有限公司 ©1998-2024 All Rights Reserved.
聯(lián)系電話:(0757)22630313、22633833
中華人民共和國(guó)增值電信業(yè)務(wù)經(jīng)營(yíng)許可證: 粵B1.B2-20030321 備案號(hào):粵B2-20030321-1
網(wǎng)站公安備案編號(hào):44060602000007 交互式欄目專項(xiàng)備案編號(hào):200303DD003  
察察 工商 網(wǎng)安 舉報(bào)有獎(jiǎng)  警警  手機(jī)打開(kāi)網(wǎng)站