1 Star 0 Fork 32

WindowsEmbedded/Wine 运行器

forked from gfdgd xi/Wine 运行器 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
MountWithoutHome.sh 649 Bytes
一键复制 编辑 原始数据 按行查看 历史
gfdgd xi 提交于 2022-12-25 22:28 +08:00 . Mount.sh使用pardus-chroot挂载文件系统
#!/bin/bash
if [ ` whoami ` != "root" ]; then
echo "Only root can run me"
exit 1
fi
if [ ! -d "$1" ]; then
echo "路径不存在!"
exit 1
fi
programPath=`dirname $0`
echo $0
echo $1
echo $2
echo $3
# 挂载必备目录
cd "$1"
# 拷贝 Qemu Static
cp -r /usr/bin/qemu-*-static ./usr/bin
# 挂载目录
# 这里将由 pardus-chroot 处理
#mount --bind /dev ./dev
#mount --bind /dev/pts ./dev/pts
#mount -t proc /proc ./proc
#mount --bind /etc/resolv.conf ./etc/resolv.conf
#mount -t sysfs /sys ./sys
#mount --bind /dev/shm ./dev/shm
chmod 777 -R root tmp
xhost +
# 如果参数 3 存在
"$programPath/pardus-chroot" . ${@:3}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/EmbeddedGitee/deep-wine-runner.git
git@gitee.com:EmbeddedGitee/deep-wine-runner.git
EmbeddedGitee
deep-wine-runner
Wine 运行器
main

搜索帮助