Skip to content
This repository was archived by the owner on Jul 9, 2026. It is now read-only.

Commit 3efb5a3

Browse files
author
SecureOS Team
committed
Use Ubuntu official mirrors instead of SecureOS mirror for build
SecureOS mirror not working for debootstrap, causing silent failures. Using official Ubuntu mirrors for reliability.
1 parent 074af91 commit 3efb5a3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

scripts/build_iso.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ mkdir -p "$WORK_DIR"/{chroot,image/{casper,isolinux,install}}
6262

6363
# Bootstrap base system
6464
echo "[*] Bootstrapping base system..."
65-
debootstrap --arch=amd64 noble "$WORK_DIR/chroot" https://mirror.secureos.xyz/
65+
debootstrap --arch=amd64 noble "$WORK_DIR/chroot" http://archive.ubuntu.com/ubuntu/
6666

6767
# Mount necessary filesystems
6868
echo "[*] Mounting filesystems..."
@@ -80,9 +80,9 @@ cp /etc/resolv.conf "$WORK_DIR/chroot/etc/resolv.conf"
8080
# Configure APT
8181
echo "[*] Configuring package repositories..."
8282
cat > "$WORK_DIR/chroot/etc/apt/sources.list" << EOF
83-
deb https://mirror.secureos.xyz/ noble main restricted universe multiverse
84-
deb https://mirror.secureos.xyz/ noble-updates main restricted universe multiverse
85-
deb https://mirror.secureos.xyz/ noble-security main restricted universe multiverse
83+
deb http://archive.ubuntu.com/ubuntu/ noble main restricted universe multiverse
84+
deb http://archive.ubuntu.com/ubuntu/ noble-updates main restricted universe multiverse
85+
deb http://security.ubuntu.com/ubuntu/ noble-security main restricted universe multiverse
8686
EOF
8787

8888
# Chroot and install packages

0 commit comments

Comments
 (0)