上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 77 下一页
摘要: $ sudo docker rmi $(sudo docker images -q) 阅读全文
posted @ 2020-07-02 17:52 Jello 阅读(1878) 评论(0) 推荐(0) 编辑
摘要: 答: git config --global core.quotepath false 阅读全文
posted @ 2020-07-02 10:18 Jello 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 答:iptables -D <链> <要删除的某行> 1. 查看规则 $ sudo iptables -nvL --line-number ... Chain FORWARD (policy DROP 0 packets, 0 bytes) num pkts bytes target prot op 阅读全文
posted @ 2020-07-02 00:02 Jello 阅读(2202) 评论(0) 推荐(0) 编辑
摘要: 答: 使用dpkg -L <软件名> $ dpkg -L libssl-dev ... /usr/lib /usr/lib/x86_64-linux-gnu/libcrypto.so /usr/lib/x86_64-linux-gnu/libssl.so ... 阅读全文
posted @ 2020-07-01 17:21 Jello 阅读(1354) 评论(0) 推荐(0) 编辑
摘要: 答: 安装对应的库即可(注意版本哦,如果ubuntu版本较老,那么libssl-dev有可能就是个旧的版本,旧版本升级新版本的方法见扩展) $ sudo apt install -y libssl-dev 扩展 源码安装 $ wget https://www.openssl.org/source/o 阅读全文
posted @ 2020-07-01 17:14 Jello 阅读(16901) 评论(0) 推荐(1) 编辑
摘要: 答: 使用docker commit和docker save保存镜像 $ sudo docker commit <当前运行的container id> <仓库名称>:<tag> $ sudo docker save -o <仓库名称>-<tag>.img <仓库名称>:<tag> 示例如下: $ s 阅读全文
posted @ 2020-06-30 20:20 Jello 阅读(21688) 评论(0) 推荐(2) 编辑
摘要: 答: 在Dockerfile中添加以下语句来配置apt-get 从当前的系统中复制/etc/apt/sources.list以及/etc/apt/apt.conf到Dockerfile所处的目录中 $ cp /etc/apt/sources.list ./ $ cp /etc/apt.conf ./ 阅读全文
posted @ 2020-06-30 11:54 Jello 阅读(2852) 评论(0) 推荐(0) 编辑
摘要: 答: 为/var/cache/man目录设置所有者、所属组以及添加GUID位 $ sudo chown man:root /var/cache/man -R $ sudo chmod g+s /var/cache/man -R 阅读全文
posted @ 2020-06-30 11:10 Jello 阅读(2671) 评论(0) 推荐(0) 编辑
摘要: 答: 为/tmp目录增加写权限(用户,组以及其它用户),示例如下: # chmod 777 /tmp 阅读全文
posted @ 2020-06-30 10:55 Jello 阅读(3218) 评论(0) 推荐(0) 编辑
摘要: 答: 设置一下/bin/ping的SUID属性 # chmod u+s /bin/ping 阅读全文
posted @ 2020-06-30 10:43 Jello 阅读(365) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 77 下一页