摘要:
答: 使用docker commit和docker save保存镜像 $ sudo docker commit <当前运行的container id> <仓库名称>:<tag> $ sudo docker save -o <仓库名称>-<tag>.img <仓库名称>:<tag> 示例如下: $ s 阅读全文
摘要:
答: 在Dockerfile中添加以下语句来配置apt-get 从当前的系统中复制/etc/apt/sources.list以及/etc/apt/apt.conf到Dockerfile所处的目录中 $ cp /etc/apt/sources.list ./ $ cp /etc/apt.conf ./ 阅读全文
摘要:
答: 为/var/cache/man目录设置所有者、所属组以及添加GUID位 $ sudo chown man:root /var/cache/man -R $ sudo chmod g+s /var/cache/man -R 阅读全文
摘要:
答: 为/tmp目录增加写权限(用户,组以及其它用户),示例如下: # chmod 777 /tmp 阅读全文
摘要:
答: 设置一下/bin/ping的SUID属性 # chmod u+s /bin/ping 阅读全文
摘要:
答: 设置一下/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 阅读全文
摘要:
答: 执行mount命令,如下: $ sudo mount -o rw,remount / 阅读全文