Wed 06 Apr 2011 09:23:36 PM UTC, comment #1:
Richard proposed to look at Remastersys:
http://geekconnection.org/remastersys/
They have packaged a shell script to install a Live system on disk. The package is providing the command “remastersys-installer” which is said to install the Live system.
To test it, we need to type several code lines as root:
=========================================
SOURCESLIST=/etc/apt/sources.list
DANSREGEXPEXCEPT=/etc/dansguardian/lists/exceptionregexpurllist
DANSSERVICE=/etc/init.d/dansguardian
# register remastersys repository
echo 'deb http://www.geekconnection.org/remastersys/repository debian/' >> $SOURCESLIST
# fix bug DansGuardian blocking deb's files
# see: https://gna.org/bugs/index.php?18003
echo '\.deb$' >> $DANSREGEXPEXCEPT
$DANSSERVICE reload
# install remastersys
apt-get update
apt-get install --assume-yes remastersys
# call installer
remastersys-installer gui
=========================================
The script is first installing missing packages, then asking questions, proposing to repartition the disk, and finally installing the Live system.
Note that tests in VirtualBox did not succeed but I'm not sure that my disk was large enough (2 GB only) and I'm half confident with VirtualBox for this kind of operation. Please report tests on a real machine if you have the opportunity to do this.
|