What are the legal consequences of customizing the LiveCD?

the organization I work at wants to create a custom Ubuntu LiveCD, the customizations are: Pre-installed programs, plugins, some device drivers, and aesthetics such as icons and backgrounds, as well as changing Firefox's homepage and removing unneeded packages.

Not big changes, obviously, and we wish to distribute this custom image for clients to use as a bootable CD or USB stick in order to have a quick environment where all our tools are available instantly.

What are the licensing and legal consequences of this? What if some of the programs or plugins that are to be pre-packaged are not GPL'd? I should finally note that we are not changing any code in the kernel or any other distro component.

Thank you for your time!


Start by reading the Derivative Distro Howto.

You can certainly make a distribution based on Ubuntu, and as far as I know there is no specific restriction on the live CD, so you can make derivative works based on it.

The code isn't be a problem: as far as I know it's all freely redistribuable software, Ubuntu doesn't have any specific rights to distribute that you don't also have. But the branding — trademarks and artwork — might be. The obvious thing you should check is what you may do with the Ubuntu artwork, and how you're allowed to use the name (it's trademarked).

A typical example of artwork and trademark-related limitation is the Iceweasel saga. The Mozilla foundation wants only “acceptable” derivatives of Firefox to have the Firefox brand, so even though the software is free software (as in free speech), the branding is not. Although the Mozilla foundation was prepared to trust Debian to make only acceptable changes, such as security fixes, they were not willing to extend that trust to others. But the Debian Free Software Guidelines specify that the “license must not be specific to Debian”, so that people in your position know that they can make derivatives. Since no acceptable compromise was found, Debian does not distribute “Firefox”, it distributes “Iceweasel” with the same code and different branding.

Ubuntu is less strict on that point, so if you want to make a derivative, you do have to check whether you may retain the branding on any component you change (starting with the distribution as a whole).


You might want to look over the Mozilla Trademark Policy If I recall it has some interesting rules about what you may do if you choose to call the product Mozilla Firefox.

Oh, and I am not a Lawyer, please seek legal counsel before redistributing anything with other peoples Trademarks, Copyrights, and Patents.


Regarding the GPL question, yes, you can bundle GPL apps alongside non-GPL apps, as long as the latter are not derivative works of the former and you don't break the terms of the GPL apps you do ship.

See the relevant entry on the GPL FAQ site.

As other people mentioned, you may also need to consider the Ubuntu trademark policy. Which for your case probably just means labelling the CD as a remix of Ubuntu, not Ubuntu itself.

For the stuff you're talking about, it sounds fine, but typical IANAL qualifications apply.


I think if you are re-distributing it for free you do not have to do anything. But if you are trying to sell it for commercial purpose you need to care about every packages it contain with there GPL/LGPL/MPL etc license terms. And you should have a third party license documentation, where you have to list all the package it is using and give the source link such as git/svn/http url for that packages. For example if you have 5000 packages in your CD, you should write them in your license document all 5000 packages.

See my another answer: https://askubuntu.com/a/88430/24988

  • Correct me if i am wrong, i am not a lawyer. Just looking for correct answer