1 Star 1 Fork 0

Chen / qemu-binary-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
install 481 Bytes
一键复制 编辑 原始数据 按行查看 历史
Chen 提交于 2020-11-08 15:36 . 脚本文件
#!/bin/bash
if [ `id -u` -eq 0 ];then
echo '开始安装。。。'
echo 'cp -r bin/* /usr/local/bin'
cp -r bin/* /usr/local/bin
echo 'cp -r share/qemu /usr/local/share'
cp -r share/* /usr/local/share
mkdir /usr/local/libexec
echo 'cp -r libexec/* /usr/local/libexec'
cp -r libexec/* /usr/local/libexec
cat uninstall >> /usr/local/bin/uninstall_qemu
chmod 755 /usr/local/bin/*
echo '安装完毕,如需卸载,执行uninstall_qemu'
else
echo "请确保你是以特权运行!"
fi
C
1
https://gitee.com/xc1984759471/qemu-binary-demo.git
git@gitee.com:xc1984759471/qemu-binary-demo.git
xc1984759471
qemu-binary-demo
qemu-binary-demo
master

搜索帮助