Qemu Run And Chroot Unmount

This commit is contained in:
2022-12-02 19:16:08 +08:00
parent a5352c6942
commit fb0ff07ad6
7 changed files with 66 additions and 13 deletions

View File

@@ -7,12 +7,10 @@ if [ ! -d "$1" ]; then
echo "路径不存在!"
exit 1
fi
# 挂载用户目录
mkdir -p "$1/home/$USER"
mount -o bind ~ "$1/home/$USER"
# 挂载 Wine 运行器目录
#mount -o bind `dirname $0` "$1/opt/apps/deepin-wine-runner/wine"
mount -o bind `dirname $0` "$1/opt/apps/deepin-wine-runner/"
echo $0
echo $1
echo $2
echo $3
# 挂载必备目录
cd "$1"
mount --bind /dev ./dev
@@ -21,5 +19,23 @@ mount -t proc /proc ./proc
mount --bind /etc/resolv.conf ./etc/resolv.conf
mount -t sysfs /sys ./sys
mount --bind /dev/shm ./dev/shm
# 如果参数 2 存在
chroot . "${@:2}"
chmod 777 -R root
xhost +
# 挂载 Wine 运行器目录
mount -o bind `dirname $0` ./opt/apps/deepin-wine-runner/
# 挂载字体
mount -o bind /usr/share/fonts ./usr/share/fonts
# 配置用户
if [ ! -d "home/$2" ]; then
# 新建用户,且密码为 123456以便读写
chroot . echo -e "123456\n123456\n\n\n\n\n\n\n\n\n" | adduser "$2"
fi
# 挂载用户目录到 /root默认 $HOME 路径)
if [[ $2 == "root" ]]; then
mount --bind root "$1/root/"
else
mount --bind "/home/$2" "$1/root/"
fi
# 如果参数 3 存在
chroot . "${@:3}"