
ubuntu-配置
sosyuka
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu 16.04 IP修改静态后,旧IP依然生效问题
把原来的静态IP从150改成151后,执行/etc/init.d/networking restart 后,150和151同时生效了。如下ens33,151IP变成secondary sip@ubuntu:~$ ip addr1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen原创 2017-10-12 15:12:23 · 13386 阅读 · 3 评论 -
Ubuntu16.04下设置静态IP
sudo vim /etc/network/interfaces修改如下# The primary network interfaceauto ens33#iface ens33 inet dhcpiface ens33 inet staticaddress 192.168.1.150netmask 255.255.255.0gateway 192.168.1.1增加D...原创 2018-03-10 11:45:01 · 234 阅读 · 0 评论 -
ubuntu cmake 报找不到CMAKE_CXX_COMPILER 的错误
错误如下CMake Error in CMakeLists.txt: No CMAKE_CXX_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMA...原创 2018-04-23 09:43:30 · 25925 阅读 · 10 评论 -
ubnuntu 18.04提示无libmpfr.so.4
error while loading shared libraries:libmpfr.so.4: cannot open shared object file: No such file or directory.解决:sudo ln -s /usr/lib/x86_64-linux-gnu/libmpfr.so.6 /usr/lib/x86_64-linux-gnu/libmpfr.so...原创 2019-03-04 08:52:53 · 11077 阅读 · 8 评论