会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Jello
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
4
5
6
7
8
9
10
11
12
···
77
下一页
2020年6月30日
ubuntu中普通用户使用sudo时报错"sudo: /usr/bin/sudo must be owned by uid 0 and have the setuid bit set"如何处理?
摘要: 答: 设置一下/usr/bin/sudo文件的SUID, 示例如下: # chmod u+s /usr/bin/sudo # ls -l /usr/bin/sudo -rwsr-xr-x 1 root root 11111 Jan 1 11:01 /usr/bin/sudo
阅读全文
posted @ 2020-06-30 10:39 Jello
阅读(6930)
评论(0)
推荐(0)
编辑
linux如何重新挂载根文件系统为可读写?
摘要: 答: 执行mount命令,如下: $ sudo mount -o rw,remount /
阅读全文
posted @ 2020-06-30 10:26 Jello
阅读(3439)
评论(0)
推荐(0)
编辑
2020年6月29日
dbus启动时报错"Unknown username "avahi" in message bus configuration file“如何处理?
摘要: 答:添加用户avahi # groupadd -g 84 avahi # useradd -c "Avahi daemon" -u 84 -d / -g avahi -s /bin/false avahi
阅读全文
posted @ 2020-06-29 09:47 Jello
阅读(1623)
评论(0)
推荐(0)
编辑
2020年6月26日
ubuntu下安装delve时报错"Error executing go [list -mod=vendor ./...]"如何处理?
摘要: 详细错误报告如下: Jello@localhost:~/.go/src/github.com/go-delve/delve$ make install Error executing go [list -mod=vendor ./...] 2022/02/22 22:22:02 exit statu
阅读全文
posted @ 2020-06-26 00:40 Jello
阅读(416)
评论(0)
推荐(0)
编辑
2020年6月25日
ubuntu下安装delve时报错"package context: unrecognized import path "context" (import path does not begin with hostname)"如何处理?
摘要: 答: 升级go版本 $ sudo apt-get -y remove golang (卸载旧的版本) $ sudo snap install go (退出当前用户或重启使snap安装的go路径生效)
阅读全文
posted @ 2020-06-25 23:27 Jello
阅读(1184)
评论(0)
推荐(0)
编辑
linux下安装go调试器delve
摘要: 标准方法安装 $ go get github.com/go-delve/delve/cmd/dlv 源码方式安装 $ export GOPATH=~/.go $ git clone https://github.com/go-delve/delve.git $GOPATH/src/github.co
阅读全文
posted @ 2020-06-25 01:24 Jello
阅读(1230)
评论(0)
推荐(0)
编辑
编译delve时报错"../../pkg/proc/native/proc_linux.go:170:16: undefined: strings.ReplaceAll"如何处理?
摘要: 答: 升级go版本 错误复现方法(编译delve) $ cd cmd/dlv $ go build ../../pkg/proc/native/proc_linux.go:170:16: undefined: strings.ReplaceAll
阅读全文
posted @ 2020-06-25 01:06 Jello
阅读(744)
评论(0)
推荐(0)
编辑
2020年6月24日
ubuntu下如何安装go?
摘要: 答: sudo apt-get install -y golang
阅读全文
posted @ 2020-06-24 17:51 Jello
阅读(404)
评论(0)
推荐(0)
编辑
如何配置docker的镜像源?
摘要: 答: 设置文件/etc/docker/daemon.json(apt-get安装的docker使用这个文件) 或者 /var/snap/docker/current/config/daemon.json(snap安装的docker使用这个文件) $ cat /etc/docker/daemon.js
阅读全文
posted @ 2020-06-24 17:15 Jello
阅读(1461)
评论(0)
推荐(0)
编辑
2020年6月23日
ubuntu18.04下dns如何设置?
摘要: 检查/etc/resolv.conf是否为软链接 $ ls -lh /etc/resolv.conf 如果不是软链接,直接将域名服务器的地址写入/etc/resolv.conf中 $ sudo vi /etc/resolv.conf nameserver 114.114.114.114 如果是软链接
阅读全文
posted @ 2020-06-23 11:03 Jello
阅读(628)
评论(0)
推荐(0)
编辑
上一页
1
···
4
5
6
7
8
9
10
11
12
···
77
下一页
公告