Gutknecht also made a CD edition (of MATE edition), here:
viewtopic.php?f=61&t=103449. The torrent is not seeding right now, which would be helpful as it included a list of packages removed to make it fit on a CD.
Alternative is to run the following command from the Live DVD or from an installation:
- Code: Select all
dpkg-query -Wf '${Installed-Size}\t${PackageSpec}\n' | sort -n
It lists all the packages, in ascending order of disk space (KiB) used for the installed package. I've put the list from the Linux Mint 13 Xfce DVD here:
http://pastebin.com/XhPWxyPDObvious candidate packages to remove would be LibreOffice, which would save over 200 MiB of disk space (though not sure how much this shrinks the ISO image). See what actions it would do to remove it with:
- Code: Select all
sudo apt-get remove --simulate libreoffice-core
Take a good note of which packages are removed, and which are installed (to fill some dependencies). After installing from your CD, you'll want to install the packages removed by the above action and possibly remove the ones installed (but it looks like it installs just Python 3, which is fine). To actually do the removal, drop the "--simulate" from the command so it becomes:
- Code: Select all
sudo apt-get remove libreoffice-core
Another one is Thunderbird, saving 45 MiB of disk space:
- Code: Select all
sudo apt-get remove thunderbird
If you still need more, you can save 25 MiB of disk space by removing non-western fonts (unless you need those):
- Code: Select all
sudo apt-get remove fonts-kacst fonts-kacst-one fonts-khmeros-core fonts-lao fonts-nanum fonts-takao-pgothic fonts-thai-tlwg fonts-tlwg-garuda fonts-tlwg-kinnari fonts-tlwg-loma fonts-tlwg-mono fonts-tlwg-norasi fonts-tlwg-purisa fonts-tlwg-sawasdee fonts-tlwg-typewriter fonts-tlwg-typist fonts-tlwg-typo fonts-tlwg-umpush fonts-tlwg-waree ttf-indic-fonts-core ttf-punjabi-fonts ttf-wqy-microhei
After that you can look at removing applications like Banshee, gThumb or VLC. You can easily install these later, and you wouldn't immediately need these to get your fresh installation of Linux Mint up and running (unlike Firefox and XChat, which are rather handy to have for problem solving).