Up-to-latest

This commit is contained in:
2023-07-25 09:49:30 +08:00
parent 363f45d6cd
commit 68a5d36e4c
12 changed files with 49 additions and 41 deletions

View File

@@ -0,0 +1,10 @@
#!/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