本文用于记录Linux使用中的种种问题,及其解决办法。
在Linux中查看端口占用
Linux如何查看端口 来源
1、lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000
2、netstat -tunlp |grep 端口号,用于查看指定的端口号的进程情况,如查看8000端口的情况,netstat -tunlp |grep 8000
说明一下几个参数的含义:
-t (tcp) 仅显示tcp相关选项
-u (udp)仅显示udp相关选项
-n 拒绝显示别名,能显示数字的全部转化为数字
-l 仅列出在Listen(监听)的服务状态
-p 显示建立相关链接的程序名
Linux错误 E: The package sogoupinyin needs to be reinstalled, but I can‘t find an archive for it.
问题是:安装搜狗拼音失败后,注销桌面后sogou可以正常使用了,但是使用sudo apt install package
命令就会报错:E: The package sogoupinyin needs to be reinstalled, but I can‘t find an archive for it.
解决办法:original
sudo dpkg --remove --force-all hl1440lpr
如果失败,则尝试:
# become root
sudo -i
cd /var/lib/dpkg/info
rm -rf hl1440lpr*
dpkg --remove --force-remove-reinstreq hl1440lpr
exit
但是我没成功,失败的结果是:
失败的原因是,下面两行没有执行:
cd /var/lib/dpkg/info
rm -rf hl1440lpr*
执行后,就正常了。