这篇文章上次修改于 2143 天前,可能其部分内容已经发生变化,如有疑问可询问作者。 ### ubuntu ssh 客户端pac manager ,代替xshell,securecrt #### 下载 ```bash wget https://nchc.dl.sourceforge.net/project/pacmanager/pac-4.0/pac-4.5.5.7-all.deb sudo dpkg -i pac-4.5.5.7-all.deb ``` ####报错 ```bash pac depends on libvte9; however: Package libvte9 is not installed. pac depends on libgnome2-gconf-perl; however: Package libgnome2-gconf-perl is not installed. pac depends on libexpect-perl; however: Package libexpect-perl is not installed. pac depends on libnet-proxy-perl; however: Package libnet-proxy-perl is not installed. pac depends on libyaml-perl; however: Package libyaml-perl is not installed. pac depends on libcrypt-cbc-perl; however: Package libcrypt-cbc-perl is not installed. pac depends on libcrypt-blowfish-perl; however: Package libcrypt-blowfish-perl is not installed. pac depends on libgtk2-gladexml-perl; however: Package libgtk2-gladexml-perl is not installed. pac depends on libgtk2-ex-simple-list-perl; however: Package libgtk2-ex-simple-list-perl is not installed. pac depends on libnet-arp-perl; however: Package libnet-arp-perl is not installed. pac depends on libossp-uuid-perl; however: Package libossp-uuid-perl is not installed. pac depends on libcrypt-rijndael-perl; however: Package libcrypt-rijndael-perl is not installed. pac depends on libgtk2-unique-perl; however: Package libgtk2-unique-perl is not installed. ``` #### 解决办法,替换如下镜像源 ```bash # 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释 deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-updates main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-backports main restricted universe multiverse deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-security main restricted universe multiverse # 预发布软件源,不建议启用 # deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse # deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ bionic-proposed main restricted universe multiverse ``` ####然后运行 ```bash sudo apt-get -f install sudo dpkg -i pac-4.5.5.7-all.deb ``` ### 启动的时候如果crash ```bash sudo find /opt/pac/ -name "Vte.so*" -exec rm {} + ```
没有评论