修复当系统中不存在dosfstools时,无法正确格式化磁盘镜像的问题 (#117)

* 修复当系统中不存在dosfstools时,无法正确格式化磁盘镜像的问题
This commit is contained in:
login 2022-12-18 15:09:15 +08:00 committed by GitHub
parent f9127772dc
commit 978043e47d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ bash bootstrap.sh
- fdisk
- lsb-release
- git
- dosfstools
- Rust以及其工具链
**请留意若您的Linux系统是在虚拟机中运行的还请您在您的VMware/Virtual Box虚拟机的处理器设置选项卡中开启Intel VT-x或AMD-V选项否则DragonOS将无法运行。**

View File

@ -38,7 +38,7 @@ install_ubuntu_debian_pkg()
gnupg \
lsb-release \
llvm-dev libclang-dev clang gcc-multilib \
gcc build-essential fdisk
gcc build-essential fdisk dosfstools
if [ -z "$(which docker)" ]; then
echo "正在安装docker..."