How To Install simple-cdd on Ubuntu 18.04

In this tutorial we learn how to install simple-cdd on Ubuntu 18.04. simple-cdd is create customized debian-installer CDs

Introduction

In this tutorial we learn how to install simple-cdd on Ubuntu 18.04.

What is simple-cdd

simple-cdd is:

Simple-CDD is a limited though relatively easy tool to create a customized debian-installer CD.

It includes simple mechanisms to create “profiles” that define common system configurations, which can be selected during system installation. Simple-CDD also makes it easy to build CDs with language and country settings pre-configured.

This can be used to create a crude “Custom Debian Distribution” using packages from Debian, with pre-configuration of packages that use debconf. Custom configuration scripts can be specified to handle packages that don’t support debconf pre-configuration.

Testing CD images with qemu is also made simple with a provided script.

There are three methods to install simple-cdd on Ubuntu 18.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install simple-cdd Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install simple-cdd using apt-get by running the following command:

sudo apt-get -y install simple-cdd

Install simple-cdd Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install simple-cdd using apt by running the following command:

sudo apt -y install simple-cdd

Install simple-cdd Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install simple-cdd using aptitude by running the following command:

sudo aptitude -y install simple-cdd

How To Uninstall simple-cdd on Ubuntu 18.04

To uninstall only the simple-cdd package we can use the following command:

sudo apt-get remove simple-cdd

Uninstall simple-cdd And Its Dependencies

To uninstall simple-cdd and its dependencies that are no longer needed by Ubuntu 18.04, we can use the command below:

sudo apt-get -y autoremove simple-cdd

Remove simple-cdd Configurations and Data

To remove simple-cdd configuration and data from Ubuntu 18.04 we can use the following command:

sudo apt-get -y purge simple-cdd

Remove simple-cdd configuration, data, and all of its dependencies

We can use the following command to remove simple-cdd configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge simple-cdd

References

Summary

In this tutorial we learn how to install simple-cdd package on Ubuntu 18.04 using different package management tools: apt, apt-get and aptitude.