From 9275019b880494b71dcdd344baccaacae35b6f12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Sch=C3=B6dl?= Date: Sun, 23 Nov 2025 16:10:05 +0000 Subject: [PATCH] install.sh aktualisiert --- install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index f483831..4494df4 100644 --- a/install.sh +++ b/install.sh @@ -3,7 +3,6 @@ # install preconditions apt update apt dist-upgrade -y -apt install dnsmasq net-tools -y # set manual IP address nmcli con mod "eth0" ipv4.addresses 192.168.178.5/24 @@ -13,6 +12,11 @@ nmcli con mod "eth0" ipv4.dns "192.168.178.5 8.8.8.8" nmcli con mod "eth0" ipv4.method manual nmcli con up "eth0" +#install dnsmasq +apt install dnsmasq net-tools -y +cp dnsmasq.conf /etc/dnsmasq.conf + # install ntp apt install chrony -y - +mkdir /etc/chrony/ +cp chrony.conf /etc/chrony/chrony.conf