Ya e probado con respin y se crea el instalador pero no se trae la apariencia que queremos, y con systemback hasta el momento solo hemos podido crear un live cd pero al momento de realizar la instalacion no nos arroja el error que no se uede montar la imagen del livecd.
Yo en lugar de buscar "soluciones" como respin o systemback que rearman una iso utilizaría el sistema live-build de Debian, hay varios scripts que automatizan el proceso para armar isos sin tener que repersonalizar una iso existente... Por ejemplo uno de los scripts que probé hace mucho era el de kali, que genera muy bién la iso y se la puede configurar totalmente para crear un sistema desde cero e incluso, aún así recomendaría quitar las modificaciones que se hicieron para la distro que no sean realmente necesarias...
http://git.kali.org/gitweb/?p=live-build-config.git;a=tree;hb=HEADWe first need to prepare the Kali ISO build environment by installing and setting up live-build and its requirements with the following commands:
apt install curl git live-build cdebootstrap
git clone git://git.kali.org/live-build-config.git
Now you can simply build an updated Kali ISO by entering the “live-build-config” directory and running our build.sh wrapper script, as follows:
cd live-build-config
./build.sh --distribution kali-rolling --verbose
# These are the different Desktop Environment build options:
#./build.sh --distribution kali-rolling --variant {gnome,kde,xfce,mate,e17,lxde,i3wm} --verbose
# To build a KDE ISO:
./build.sh --distribution kali-rolling --variant kde --verbose
# To build a MATE ISO:
./build.sh --distribution kali-rolling --variant mate --verbose
#...and so on.
we now support built in configurations for various desktop environments, including KDE, Gnome, E17, I3WM, LXDE, MATE and XFCE. To build any of these, you would use syntax similar to the following:
The “build.sh” script will take a while to complete, as it downloads all of the required packages needed to create your ISO. Good time for a coffee.
El entorno de escritorio que estamos usando es mate-core.
Otro pequeño detalle cuidado con ese metapaquete si se instala solo, es muy limitado y solo generaría un escritorio muy limitado y no tendría componentes escenciales como el del Network Manager, lightdm, etc... Además de que arrancar una interfaz tty con la interfaz mate sería un dolor de cabeza.
B#