File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 44# LuminOS Build Script, Phase 3: Desktop Environment Installation
55#
66# Author: Gabriel, Project Leader @ LuminOS
7- # Version: 0.1.4 (Debug Verbose APT)
7+ # Version: 0.1.5
88# ==============================================================================
99
1010set -e
@@ -22,16 +22,19 @@ cat > "$LUMINOS_CHROOT_DIR/tmp/install_desktop.sh" << "EOF"
2222set -e
2323export DEBIAN_FRONTEND=noninteractive
2424
25- echo "--> Updating package lists inside chroot..."
25+ echo "--> Updating package lists inside chroot (first pass) ..."
2626apt-get update
2727
2828echo "--> Installing Linux kernel and GRUB bootloader..."
29- # Add debug options for apt
29+ # Keep debug options for now
3030apt-get install -y -o Debug::pkgProblemResolver=yes linux-image-amd64 grub-pc
3131
32+ echo "--> Updating package lists again before desktop install..." # Added step
33+ apt-get update # Added command
34+
3235echo "--> Installing KDE Plasma desktop and essential services (with debug)..."
3336DESKTOP_PACKAGES="plasma-desktop konsole sddm network-manager neofetch"
34- # Add debug options for apt
37+ # Keep debug options for now
3538apt-get install -y -o Debug::pkgProblemResolver=yes $DESKTOP_PACKAGES
3639
3740echo "--> Cleaning up APT cache..."
You can’t perform that action at this time.
0 commit comments