nanodesk/install_base/install_base.sh

180 lines
3.8 KiB
Bash

#!/bin/bash
RED="\e[31m"
GREEN="\e[32m"
YELLOW="\e[33m"
ENDCOLOR="\e[0m"
function message() {
case $1 in
error)
MESSAGE_TYPE="${RED}ERROR${ENDCOLOR}"
;;
info|*)
MESSAGE_TYPE="${GREEN}INFO${ENDCOLOR}"
;;
esac
if [ "$1" == "info" ] || [ "$1" == "error" ]
then
MESSAGE=$2
else
MESSAGE=$1
fi
echo -e "[${MESSAGE_TYPE}] ${YELLOW}install_base${ENDCOLOR}: $MESSAGE"
}
error ()
{
message error "ERROR!!"
exit 1
}
### hostname setting
echo nanodesk > /etc/hostname
message "set hostname in hosts"
sed -i 's/localhost/localhost nanodesk/g' /etc/hosts
### noninteractive
DEBIAN_FRONTEND=noninteractive
export DEBIAN_FRONTEND
##message "activate contrib and non-free repositories"
##sed -i 's/main$/main contrib non-free/g' /etc/apt/sources.list || error
##
##message "activate backports repository"
##sed 's/bullseye/bullseye-backports/g' /etc/apt/sources.list > /etc/apt/sources.list.d/bullseye-backports.list || error
message "apt update"
apt update || error
### install base packages
message "install nanodesk base packages"
apt install -y \
linux-image-amd64 \
live-boot \
dialog \
sudo \
console-data \
locales \
man \
grub-pc \
ifupdown \
net-tools \
isc-dhcp-client \
host \
wireless-tools \
wpagui \
connman-gtk \
xserver-xorg \
xscreensaver \
xfonts-75dpi \
xfonts-100dpi \
x11-apps \
x11-utils \
xterm \
xdm \
jwm \
xfe \
mc \
wget \
curl \
less \
rsync \
vim \
links2 \
ncdu \
htop \
git \
gxmessage \
gsimplecal \
alsa-utils \
volumeicon-alsa \
arandr \
lxterminal \
gparted \
dillo \
firefox-esr \
pcmanfm \
/tmp/xdgmenumaker*.deb || error
#message "install linux-kernel from backports"
#apt install -t bullseye-backports -y linux-image-amd64
### set root password
message "set root password to 'debian'"
echo -e "debian\ndebian" | (passwd root)
### add debian user
message "create user debian"
useradd -m -U -s /bin/bash debian
### set password
message "set password for user debian to 'debian'"
echo -e "debian\ndebian" | (passwd debian)
### Configure timezone and locale
#dpkg-reconfigure locales
#dpkg-reconfigure console-data
#dpkg-reconfigure keyboard-configuration
###https://serverfault.com/a/689947
message "set locales and tzdata"
echo "Europe/Berlin" > /etc/timezone && \
dpkg-reconfigure -f noninteractive tzdata && \
sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
echo 'LANG="en_US.UTF-8"'>/etc/default/locale && \
dpkg-reconfigure --frontend=noninteractive locales && \
locale-gen en_US.UTF-8 && \
update-locale LANG=en_US.UTF-8
######
####
##
## customization can be done here
## the placeholder within '%%' gets
#### filled by makeanything.sh
######
message "run custom steps from /tmp/install_base.customsteps.tpl.sh"
. /tmp/install_base.customsteps.sh
######
#### it's a simple sudo
## command
## / customization End /
##
####
######
message "generate icon path list for jwm config"
find /usr/share/icons/ -type d > /tmp/jwm.iconlist
sed -i -e 's/^/<IconPath>/g' -e 's/$/<\/IconPath>/g' /tmp/jwm.iconlist
#message "putting generated icon path list to /etc/jwm/system.jwmrc"
#sed -i '/<\!-- GENERATED ICONLIST -->/r /tmp/jwm.iconlist' /etc/jwm/system.jwmrc
### clean cache
message "apt clean"
apt clean
KERNEL_VER="$(ls -1 /boot/|grep "vmlinuz-"|sed 's/vmlinuz-//'|sort -g|head -n +1)"
test -n "$KERNEL_VER" || error
message "KERNEL_VER=${YELLOW}${KERNEL_VER}${ENDCOLOR}"
### but fetch packages for grub and kernel, so we do not need to download them
### in case nanodesk get installed to diska
message "apt --download linux-image and grub packages to have them in cache for nanodesk-installer.sh offline installation"
apt -d --reinstall install \
linux-image-amd64 \
linux-image-$KERNEL_VER \
grub-pc grub-pc-bin \
grub-common \
grub2-common \
os-prober || error