blob: e48ec41f91ef0d46dab43f29d28497348e5f465c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#! /bin/sh
. ./settings00.sh
chown -R root:root /root/.ssh
apt-get install --yes \
live-boot \
debian-installer-launcher \
xserver-xorg-core xserver-xorg xinit xterm \
kde-plasma-desktop kde-baseapps kate okular kdeadmin kdenetwork plasma-nm kdeutils kde-style-breeze \
kdeconnect kdiff3 krdc partitionmanager ksystemlog \
firefox-esr sddm
apt-get update
apt-get clean
update-initramfs -u -k all
echo PASSWD FOR USER $MYUSERNAME
useradd -m $MYUSERNAME
passwd $MYUSERNAME
echo "YOU MAY POPULATE FS WITH SOME ADDITIONAL DATA NOW, then exit"
echo then you may continue the process with deblive03.sh
|