4

I have Ubuntu 14.04 and I want to create my own customized Live CD. I chose to use the Ubuntu Customization Kit, which I added as a package to my Ubuntu install on my Hard Disk. Now I would like to add some packages to the LiveCD. When attempting to use the Customization Kit, I get the question:
Would you like to continue building, or use the console?

If I choose "Continue building" the iso file gets created and I have no option to include the extra packages I want. If I choose to use the console, no package manager starts.

There is no "Run package manager" option available.

enter image description here

If I enter

sudo apt-get install vlc

the console outputs:

E: Unable to locate package vlc

I also tried to install the Synaptic Package Manager but the program uses my installation of Ubuntu instead the one of the live CD. Then I tried to use File > Save Marking As ... and saved the file under ~/tmp/remaster-root. Afterwards I tried to copy the cached packages with the built in file explorer from the local installation to the live CD (~/tmp/remaster-root/var/cache/apt/archives/) but the files aren't copied. The whole thing is in a VMware but it should make no difference. I also tried it with the console

cp -a /var/cache/apt/archives/* ~/tmp/remaster-root/var/cache/apt/archives

cp: target '/home/anonymous/tmp/remaster-root/var/cache/apt/archives' is not a directory

How do I integrate packages like VLC, Truecrypt or TBB into the LiveCD?

testing
  • 141

1 Answers1

1

Select console application from your prompt and then when it appears run

echo -e "\ndeb http://archive.ubuntu.com/ubuntu/ trusty universe\ndeb http://archive.ubuntu.com/ubuntu/ trusty multiverse\n" >> /etc/apt/sources.list

to set apt-get sources and then

apt-get update
apt-get install vlc
user304539
  • 41
  • 3