Linux常用技巧总结

1、由于apt安装报错,安装了aptitude,误删apt

The following packages have unmet dependencies:

解决方法:https://blog.csdn.net/Davidietop/article/details/88934783

然后安装上后把apt给卸载了,结果aptitude也不能用,只能sudo dpkg -r aptitue卸载重装apt!

卸载了这些包apt apt-transport-https apt-utils ubuntu-desktop ubuntu-minimal ubuntu-release-upgrader-gtk update-manager update-notifier  update-notifier-common,装上了这些包,aptitude-common libboost-iostreams1.58.0 libcwidget3v5 libsigc++-2.0-0v5 libxapian22v5。

重装的方法在这里https://www.jianshu.com/p/e878ddf068f0,然后依然报错,因为还删掉了其他包。

继续装https://www.cnblogs.com/Cherrison-Time/p/10770109.html

然后就出现了apt: relocation error: /usr/lib/x86_64-linux-gnu/libapt-private.so.0.0: symbol _ZN3URIcvNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEEB5cxx11Ev version APTPKG_5.0 not defined in file libapt-pkg.so.5.0 with link time reference错误!

然后这么又弄好的https://bbs.csdn.net/topics/392465661

然后,依然报错,安装不上docker-compose,原因是它就要求那个旧的版本,而aptitude就是用来降级的

然后,同学想到了是不是源有问题,他之前把官方的源改成了清华的源,然后就把源改了回去。然后就安上了。

2、关于远程登录问题

ssh远程登录:https://www.cnblogs.com/ftl1012/p/ssh.html

scp远程传文件:https://www.cnblogs.com/magicc/p/6490566.html

 

 

 

 

你可能感兴趣的:(编程经验Trick(一))