mirror of
https://gitee.com/amber-ce/amber-ce-bookworm.git
synced 2025-09-29 06:32:23 +08:00
11 lines
259 B
Bash
Executable File
11 lines
259 B
Bash
Executable File
#!/bin/bash
|
|
if [ `which debootstrap` = "" ];then
|
|
echo "Need to install debootstrap!"
|
|
exit
|
|
fi
|
|
|
|
cd "`dirname $0`"
|
|
sudo debootstrap bookworm ./bookworm-env https://mirrors.ustc.edu.cn/debian/
|
|
tar -cJvf bookworm-env.tar.xz bookworm-env/*
|
|
sudo rm -rf bookworm-env
|