wget: server returned error: HTTP/1.1 416 Requested Range Not Satisfiable
https://blog.csdn.net/mociml/article/details/6254106
- ifconfig command not found
https://www.jianshu.com/p/75dbfb91f4fd https://www.cnblogs.com/xioawu-blog/p/10993633.html
- 虚拟机上Ubuntu报错:检测到系统程序出现问题 system program problem detected 解决办法:
sudo vim /etc/default/apport
1
先键入i,把enable值改为0,在ESC键后输入:wq 保存退出
linux下删除.swp文件方法 由于某种原因,生成了.swp的文件,每次vi或者vim进去的时候都会有一段提示,又因为某种原因,按照提示删除无效。 话不多说,比如编辑test.php时留下了个.swp文件,又因为上述原因怎么也删除不了,只需在rm -rf .test.php.swp就行
在 VMware ubuntu 18.04虚拟机中使用主机clash for window代理上网
https://zhuanlan.zhihu.com/p/377150903
- E: You don't have enough free space in /var/cache/apt/archives/.
cd /var/cache/apt/archives
sudo apt-get clean
1
2
3
2
3
- Linux——问题解决: fatal error: msgpack.hpp: No such file or directory #include <msgpack.hpp>
sudo apt install libmsgpack*
1
- /usr/bin/ld: 找不到 -ludev
sudo apt-get install libudev1 libudev-dev
1
- 由于时钟同步问题,出现 warning: Clock skewdetected. Your build may be incomplete.这样的警告。下面是两种解决这个问题的办法:
方法一:修改所有源代码的时间后重新编译
find . -type f | xargs -n 5 touch
make clean
make
1
2
3
2
3
方法二:修改编译环境的系统时间后重新编译 例如
sudo date -s 2022-10-11
sudo date -s 19:40:30
1
2
2
然后使用
sudo hwclock -w
1
同步硬件时间实现更改Linux系统时间方法。
另外,修改所有文件的时间戳,
touch *
1
- Could not run curl-config: [Errno 2] No such file or directory" when installing pycurl
sudo apt-get install libcurl4-openssl-dev libssl-dev
1