19 lines
363 B
Bash
Executable File
19 lines
363 B
Bash
Executable File
#!/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. rerun some settings...
|
|
./configure-debian-system.sh
|