#!/bin/bash echo "Lade Installations-Scripte herunter ..." wget -O install_system.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=4" && chmod +x install_system.sh wget -O install_network.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=6" && chmod +x install_network.sh wget -O mount_hdd.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=8" && chmod +x mount_hdd.sh wget -O install_sundtek.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=9" && chmod +x install_sundtek.sh wget -O install_hauppauge.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=10" && chmod +x wget -O install_vdr.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=11" && chmod +x install_vdr.sh wget -O configure_vdr.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=12" && chmod +x configure_vdr.sh wget -O mk_channels_conf.sh "https://www.von-thuelen.de/doku.php/wiki/projekte/cubietruck/cubietruck_armbian_buster?do=export_code&codeblock=14" && chmod +x mk_channels_conf.sh echo " ... fertig. Starte System- und VDR Installation..." read -n1 -rsp $'Press any key to start system installation or Ctrl+C to exit...\n' ./install_system.sh read -n1 -rsp $'Press any key to start network configuration or Ctrl+C to exit...\n' ./install_network.sh read -n1 -rsp $'Press any key to mount hdd, configure \"video0\" directory and move \"home\" directory or Ctrl+C to exit...\n' ./mount_hdd.sh read -n1 -rsp $'Press any key to install Sundtek DVB-C driver or Ctrl+C to exit...\n' ./install_sundtek.sh read -n1 -rsp $'Press any key to install Hauppauge DVB-C Firmware or Ctrl+C to exit...\n' ./install_hauppauge.sh read -n1 -rsp $'Press any key to install VDR and VDRadmin-AM or Ctrl+C to exit...\n' ./install_vdr.sh read -n1 -rsp $'Press any key to configure VDR and VDRadmin-AM or Ctrl+C to exit...\n' ./configure_vdr.sh read -n1 -rsp $'Press any key to generate \"channels.conf\" file or Ctrl+C to exit...\n' ./mk_channels_conf.sh echo "Done!" read -n1 -rsp $'Press any key to reboot your system now (recommended!) or Ctrl+C to exit...\n' shutdown -r now