apt update
apt install systemd-sysv -y
ls -l /sbin/init
exit
apt purge   systemd-timesyncd   systemd-resolved   -y
exit
ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
echo "Europe/Berlin" > /etc/timezone
date
apt install openssh-server -y
mkdir -p /var/run/sshd
systemctl enable ssh
vi /etc/ssh/sshd_config
sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin prohibit-password/' /etc/ssh/sshd_config
sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/' /etc/ssh/sshd_config
apt install vim
vi /etc/vim/vimrc 
vi /etc/ssh/sshd_config
apt install locales -y
sed -i 's/^# de_DE.UTF-8 UTF-8/de_DE.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
update-locale LANG=de_DE.UTF-8
apt clean
rm -rf /var/lib/apt/lists/*
wget -c -O /tmp/step_one.sh https://ftp.info-linux.de/arbeiten/Debian/PostSetupDebian13.sh.txt && chmod 755 /tmp/step_one.sh && /tmp/step_one.sh
apt install wget
apt update
apt install wget curl -y
wget -c -O /tmp/step_one.sh https://ftp.info-linux.de/arbeiten/Debian/PostSetupDebian13.sh.txt && chmod 755 /tmp/step_one.sh && /tmp/step_one.sh
apt clean
rm -rf /var/lib/apt/lists/*
exit
#1769335539
sudo chroot rootfs /bin/bash
#1769335547
exit
#1769335560
apt update 
#1769335568
apt install -y   iproute2   iputils-ping   netcat-openbsd   dnsutils   procps   psmisc   less   vim-tiny   curl   wget   ca-certificates
#1769335590
apt install -y   tcpdump   traceroute   htop
#1769335596
ip a
#1769335611
apt clean
#1769335616
rm -rf /var/lib/apt/lists/*
#1769335622
exit
#1769336102
apt purge ifupdown -y
#1769336108
rm -f /etc/network/interfaces
#1769336112
rm -rf /etc/network/interfaces.d
#1769336121
systemctl enable systemd-networkd
#1769336126
systemctl enable systemd-resolved
#1769336195
apt update
#1769336198
apt install systemd-resolved -y
#1769336200
systemctl enable systemd-resolved
#1769336208
rm -f /etc/resolv.conf
#1769336211
ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
#1769336215
ls -l /etc/resolv.conf
#1769336223
apt clean
#1769336226
rm -rf /var/lib/apt/lists/*
#1769336246
systemctl enable systemd-resolved
#1769336251
mkdir -p /etc/systemd/network
#1769336256
cat > /etc/systemd/network/10-lxc.network <<'EOF'
[Match]
Name=eth*

[Network]
DHCP=yes
IPv6AcceptRA=yes
EOF

#1769336286
apt clean
#1769336286
rm -rf /var/lib/apt/lists/*
#1769336286
exit
