-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.sh
More file actions
executable file
·23 lines (20 loc) · 877 Bytes
/
init.sh
File metadata and controls
executable file
·23 lines (20 loc) · 877 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash
# -------------------------------------------------------------------
# Script: init.sh
# Description: This script installs the required packages
# Author: Walid A.
# Date: 09/11/2025
# Usage: ./init.sh
# -------------------------------------------------------------------
#--------------------------------------------------------------------------------
#
#--------------------------------------------------------------------------------
set -e
set -u
set -o pipefail
#--------------------------------------------------------------------------------
# Install required packages
#--------------------------------------------------------------------------------
echo "-> Installing build tools"
sudo apt update && sudo apt upgrade -y
sudo apt install live-build debootstrap squashfs-tools xorriso isolinux syslinux-utils wget qemu-system-x86 qemu-utils -y