| Revision 190,
561 bytes
checked in by alanbach-guest, 6 years ago
(diff) |
|
Added ISO and BIG compressed file making scripts.
|
-
Property svn:executable set to
*
|
| Line | |
|---|
| 1 | #!/bin/bash |
|---|
| 2 | # Bash script to create that big KNOPPIX file of live CD. |
|---|
| 3 | # Coyright 2005-2007 Alan Baghumian / GNU/GPL |
|---|
| 4 | |
|---|
| 5 | mv source/KNOPPIX/var/cache/apt/archives/*.deb /var/cache/apt/archives/ &>/dev/null |
|---|
| 6 | rm master/KNOPPIX/KNOPPIX |
|---|
| 7 | |
|---|
| 8 | if [ -f source/KNOPPIX/root/.bash_history ]; then |
|---|
| 9 | rm source/KNOPPIX/root/.bash_history |
|---|
| 10 | fi |
|---|
| 11 | |
|---|
| 12 | # SquashFS Compression |
|---|
| 13 | mksquashfs source/KNOPPIX/ master/KNOPPIX/KNOPPIX |
|---|
| 14 | |
|---|
| 15 | # OLD Cloop Compression |
|---|
| 16 | #mkisofs -R -U -V "Parsix" -cache-inodes -no-bak -pad source/KNOPPIX | nice -5 /usr/bin/create_compressed_fs - 65536 > master/KNOPPIX/KNOPPIX |
|---|
Note: See
TracBrowser
for help on using the repository browser.