1,536 bytes added
, 10:55, 20 September 2013
== Reduce the high Count of installed Packages ==
Remark: YOU MUST KNOW WHICH PROGRAM NAME YOU NEEDs!! only for advanced USERS/EXPERTS!
To Setup a small System you need a "netinstall" CD Image and then
install a minimal System, next step edit the apt.conf file for advanced settings on console:
$sudo nano /etc/apt/apt.conf
<pre>
APT::Install-Recommends "0";
APT::Install-Suggests "0";
Acquire::PDiffs "false";
Acquire::Languages "none"; # set true for none English
</pre>
save and exit,
now run on console:
<pre>
$sudo apt-get update
$sudo apt-get dist-upgrade
</pre>
this reconfigure the package database index for dependencies!
now setup you wanted System Software like gnome:
<pre>
$sudo apt-get install gnome-core xserver-xorg
</pre>
Remark: Missed Software must be manual installed now by yourself package for package
Cleanup a Running System:
To remove unwanted Packages use the "apt-get autoremove --purge" command like on console:
<pre>
$ sudo apt-get autoremove dbus gnome-shell consolekit --purge
</pre>
to remove preinstalled Libs do:
<pre>
$sudo -s #switch to root account
$dpkg --list |grep "^rc" | cut -d " " -f 3 | xargs sudo dpkg --purge # can used 2 to 3 times!! agian
$deborphan | xargs sudo apt-get -y remove --purge # can used 2 to 3 times!! agian
</pre>
Remark: If deborphan is not know you have to install the tool with cause its not a basic package:
<pre>
$sudo apt-get install deborphan
</pre>