chroot vs docker All In One
chroot vs docker All In One
chroot
Linux
A chroot on Unix operating systems is an operation that changes the apparent root directory for the current running process and its children.
Unix操作系统上的chroot是更改当前正在运行的进程及其子进程的表观根目录的操作。
https://en.wikipedia.org/wiki/Chroot
# Creating a chroot Environment
$ chr=/home/xgqfrms/testroot
$ mkdir -p $chr
$ mkdir -p $chr/{bin,lib,lib64}
$ cd $chr
$ cp -v /bin/{bash,touch,ls,rm} $chr
$ ldd /bin/bash
$ list="$(ldd /bin/bash | egrep -o '/lib.*\.[0-9]')"
$ echo $list
$ for i in $list; do cp -v --parents "$i" "${chr}"; done
$ list="$(ldd /bin/touch | egrep -o '/lib.*\.[0-9]')"
$ for i in $list; do cp -v --parents "$i" "${chr}"; done
list="$(ldd /bin/ls | egrep -o '/lib.*\.[0-9]')"
for i in $list; do cp -v --parents "$i" "${chr}"; done
list="$(ldd /bin/ls | egrep -o '/lib.*\.[0-9]')"
for i in $list; do cp -v --parents "$i" "${chr}"; done
sudo chroot $chr /bin/bash
ls
ls /home/dave/Documents
touch sample_file.txt
ls
rm sample_file.txt
ls
help
exit
rm -r testroot/
https://www.howtogeek.com/441534/how-to-use-the-chroot-command-on-linux/
docker
(🐞 反爬虫测试!打击盗版⚠️)如果你看到这个信息, 说明这是一篇剽窃的文章,请访问 https://www.cnblogs.com/xgqfrms/ 查看原创文章!
refs
docker
https://www.imooc.com/u/1066707/notepad/867
©xgqfrms 2012-2021
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/13682215.html
未经授权禁止转载,违者必究!