您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何在CentOS上安裝SSH客戶端PAC Manager”,在日常操作中,相信很多人在如何在CentOS上安裝SSH客戶端PAC Manager問題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何在CentOS上安裝SSH客戶端PAC Manager”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
對(duì)于在 Windows 上經(jīng)常需要遠(yuǎn)程管理 Linux 服務(wù)器的 SA 們來說,也許會(huì)覺得 SecureCRT 非常好用,因?yàn)樗且粋€(gè)強(qiáng)大的 SSH 帳號(hào)管理工具,而且可以記住密碼,但這個(gè)是收費(fèi)軟件。而現(xiàn)在如果你想在 CentOS 上也需要這樣一款軟件的話,那么 PAC Manager 也許正是你要尋找,它是一款非常不錯(cuò)的替代品,而且完全開源免費(fèi)。
功能:
1.支持遠(yuǎn)程及本地宏命令。
2.支持 EXPECT 批處理。
3.支持代理。
4.支持集群連接。
5.支持標(biāo)簽或窗口。
6.批量帳號(hào)管理等等。
下載地址:http://sourceforge.net/projects/pacmanager/files/pac-4.0/
我下載的是:pac-4.5.3.5-2.x86_64.rpm
執(zhí)行命令安裝:
代碼如下:
rpm -ivh pac-4.5.3.5-2.x86_64.rpm
但是報(bào)出如下錯(cuò)誤:
error: Failed dependencies:
ftp is needed by pac-4.5.3.5-2.x86_64
perl(Crypt::CBC) is needed by pac-4.5.3.5-2.x86_64
perl(Crypt::Rijndael) is needed by pac-4.5.3.5-2.x86_64
perl(Digest::SHA) is needed by pac-4.5.3.5-2.x86_64
perl(Expect) is needed by pac-4.5.3.5-2.x86_64
perl(Gnome2::GConf) is needed by pac-4.5.3.5-2.x86_64
perl(Gtk2) is needed by pac-4.5.3.5-2.x86_64
perl(Gtk2::Ex::Simple::List) is needed by pac-4.5.3.5-2.x86_64
perl(Gtk2::Ex::Simple::TiedCommon) is needed by pac-4.5.3.5-2.x86_64
perl(Gtk2::GladeXML) is needed by pac-4.5.3.5-2.x86_64
perl(Net::ARP) is needed by pac-4.5.3.5-2.x86_64
perl(OSSP::uuid) is needed by pac-4.5.3.5-2.x86_64
perl(Socket6) is needed by pac-4.5.3.5-2.x86_64
perl(Time::HiRes) is needed by pac-4.5.3.5-2.x86_64
perl(YAML) is needed by pac-4.5.3.5-2.x86_64
perl-Crypt-Blowfish is needed by pac-4.5.3.5-2.x86_64
perl-Crypt-Rijndael is needed by pac-4.5.3.5-2.x86_64
說明缺了不少的信賴,依次安裝。
首先安裝 epel 源,這個(gè)因?yàn)橄惹拔已b其它軟件的時(shí)候裝過了,這里就不裝了:
代碼如下:
# rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm</pre>
安裝依賴:
代碼如下:
# yum install ftp perl-Crypt-Blowfish perl-Crypt-CBC perl-Crypt-Rijndael perl-Digest-SHA perl-Expect perl-Gtk2 perl-IO-Stty perl-Net-ARP perl-YAML perl-Cairo perl-Glib perl-IO-Tty perl-Pango uuid-perl
perl-Gnome2-GConf perl-Gtk2-Ex-Simple-List perl-Gtk2-GladeXML 這三個(gè)包不在源內(nèi),下載下來手工安裝:
# wget http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/perl-Gnome2-GConf-1.044-1.el6.rf.x86_64.rpm
# wget http://li.nux.ro/download/nux/dextop/el6/i386/perl-Gtk2-Ex-Simple-List-0.50-13.el6.nux.noarch.rpm
# wget http://apt.sw.be/redhat/el6/en/x86_64/rpmforge/RPMS/perl-Gtk2-GladeXML-1.007-1.el6.rf.x86_64.rpm
# rpm -ivh perl-Gnome2-GConf-1.044-1.el6.rf.x86_64.rpm perl-Gtk2-Ex-Simple-List-0.50-13.el6.nux.noarch.rpm perl-Gtk2-GladeXML-1.007-1.el6.rf.x86_64.rpm
以上是網(wǎng)上說的一些信賴,但是我在實(shí)際安裝的時(shí)候,發(fā)現(xiàn)還缺少下面的信賴:
perl(Socket6) is needed by pac-4.5.3.5-2.x86_64
perl(Time::HiRes) is needed by pac-4.5.3.5-2.x86_64
telnet is needed by pac-4.5.3.5-2.x86_64
繼續(xù)安裝:
代碼如下:
yum install perl-Socket6
yum install perl-Time-HiRes
yum install telnet
安裝完成,再繼續(xù)執(zhí)行命令:
代碼如下:
rpm -ivh pac-4.5.3.5-2.x86_64.rpm
安裝成功,可以使用了。
在實(shí)際的使用中,發(fā)現(xiàn)ssh連接很慢,而且要在connection的proxy中,勾選Never use any proxy for this connection,不然會(huì)連接不上,系統(tǒng)中并沒有設(shè)置代理,原因不明。
到此,關(guān)于“如何在CentOS上安裝SSH客戶端PAC Manager”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。