Skip to content
clearkimura edited this page Mar 21, 2016 · 90 revisions

User will be guided to prepare, install and run Customizer. Read the instructions carefully before following. It's concise and short enough already. If in doubt, read FAQ.

1. What to prepare

Before installing and running Customizer, user must prepare the following.

IMPORTANT Use the same release and architecture of both host system and Live CD, but not necessarily be the same operating system.

For example, a user can run Xubuntu 14.04 32-bit host system to remaster Ubuntu Mini Remix 14.04 32-bit ISO image. Using same release (14.04) and same architecture (32-bit).

2. How to install

First, install the optimal dependencies.

sudo apt-get install git build-essential fakeroot make binutils g++ \
 python python-dev python-qt4 pyqt4-dev-tools squashfs-tools \
 xorriso x11-xserver-utils xserver-xephyr qemu-kvm dpkg-dev \
 debhelper qt4-dev-tools qt4-linguist-tools \
 --no-install-recommends

Then, download the latest release from master branch and install it.

wget https://github.com/clearkimura/Customizer/archive/master.tar.gz
tar zxvf master.tar.gz
cd Customizer-master
make deb
cd
sudo dpkg -i *.deb

Installing via dpkg will make removing the program easier, by running sudo dpkg -r customizer in Terminal. For other releases and methods, refer to Installation.

3. How to run

The graphical user interface (GUI) provides most features and convenience. The command-line interface (CLI) provides minimal features and accepts one option at a time without arguments.

sudo customizer-gui

To run CLI, replace customizer-gui with customizer -h instead.

Else, run GUI from application menu or application launcher of choice. Recent releases of Ubuntu use pkexec to run graphical applications, since gksu has been deprecated.

To learn how to configure and use Customizer, see Features.

Clone this wiki locally