19 lines
360 B
Bash
19 lines
360 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
. ./settings.sh
|
||
|
|
||
|
# 1. install needed debian packages:
|
||
|
./install-debian-packages.sh
|
||
|
|
||
|
# 2. configure debian system
|
||
|
./configure-debian-system.sh
|
||
|
|
||
|
# 3. configure full system, copy some stuff (not the non-free...)
|
||
|
./config-full.sh
|
||
|
|
||
|
# 4. download free stuff (knoppix...)
|
||
|
./download-free.sh
|
||
|
|
||
|
# 5. setting open file access
|
||
|
chmod a+rwx ${TFTP}/ -R
|