Hit http://http.debian.net sid InRelease
Get:1 http://http.debian.net sid/main armhf Packages [9,263 kB]
Get:2 http://http.debian.net sid/contrib armhf Packages [48.8 kB]
Get:3 http://http.debian.net sid/non-free armhf Packages [78.8 kB]
Err http://http.debian.net sid/contrib Translation-en
Get:4 http://http.debian.net sid/contrib Translation-en [41.5 kB]
Get:5 http://http.debian.net sid/main Translation-en [4,824 kB]
Get:6 http://http.debian.net sid/non-free Translation-en [75.9 kB]
Fetched 14.3 MB in 36s (388 kB/s)
Reading package lists... Done
#!/bin/sh
###########################################################
## Script zum Erzeugen von Backups #
###########################################################
DIR="/mnt/bb/backup"
NAME="skywalker"
DAT=`date +%Y%m%d-%H%M`
LOGFILE="/mnt/bb/logs/${NAME}-${DAT}_rsync.log"
OUT="${DIR}/${NAME}-${DAT}_rsync"
EXC="/mnt/bb/scripts/exclude"
echo "------------------- start backup script ${NAME} ----------------------" >>${LOGFILE}
echo "" >>${LOGFILE}
echo "mkdir ${OUT}"
mkdir ${OUT}
DAT=`date +%Y%m%d-%H%M`
echo "start backup: ${DAT}" >>${LOGFILE}
echo "" >>${LOGFILE}
echo "rsync -aAXv /* ${OUT} --exclude-from=${EXC}" >>${LOGFILE}
rsync -aAXv /* ${OUT} --exclude-from=${EXC}
echo "" >>${LOGFILE}
echo "tar backup directory"
if [ $(ls -d ${OUT} 2> /dev/null | wc -l) != "0" ]
then
echo "tar -czf ${OUT}.tar.gz ${OUT} && rm -rf ${OUT}" >>${LOGFILE}
tar -czf ${OUT}.tar.gz ${OUT} && rm -rf ${OUT}
else
echo "backup directory ${OUT} not found" >>${LOGFILE}
fi
echo "" >>${LOGFILE}
DAT=`date +%Y%m%d-%H%M`
echo "end backup: ${DAT}" >>${LOGFILE}
echo "" >>${LOGFILE}
echo "------------------- ende backup script ${NAME} ----------------------" >>${LOGFILE}
/dev/*
/proc/*
/sys/*
/tmp/*
/run/*
/mnt/*
/media/*
/lost+found
/var/log/*
Teste mal den 3.16, damit sollte es gehen.
auto lo
iface lo inet loopback
#auto eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.1.88
netmask 255.255.255.0
network 192.168.1.254
gateway 192.168.1.254
auto lo
iface lo inet loopback
#auto eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.1.88
netmask 255.255.255.0
network 192.168.1.255
gateway 192.168.1.254
auto lo
iface lo inet loopback
#auto eth0
#iface eth0 inet dhcp
auto eth0
iface eth0 inet static
address 192.168.1.88
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.1.254
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.0.123
netmask 255.255.255.0
gateway 192.168.0.1
iface eth0 inet6 auto
post-up /sbin/ip -6 addr add fdf7:1234:1234:1234::16/64 dev eth0
pre-down /sbin/ip -6 addr del fdf7:1234:1234:1234::16/64 dev eth0
Wir verwenden Cookies und ähnliche Technologien für folgende Zwecke:
Akzeptieren Sie Cookies und diese Technologien?
Wir verwenden Cookies und ähnliche Technologien für folgende Zwecke:
Akzeptieren Sie Cookies und diese Technologien?