cain wrote:I notice that total memory being used in top is about 200+ MB greater than what conky is showing, any reason for this?
Total memory and actual used memory are different figures. For example lets look at the "free" command:
total used free shared buffers cached
Mem: 1001 668 332 0 46 315
-/+ buffers/cache: 306 695
Swap: 2559 0 2559
This shows i'm using 668Mb of RAM, when actually, that figure includes the "cached" section. The "cached" section is for memory that has been used to cache any files on disk, the second that any of this memory is needed it'll be cleaned and made available. So actual used memory by programs and applications is in the region of 340mb.
cain wrote:Could someone point me to a site, or just explain to me where Applications go when you use app-get, I get so lost in the filesystem and find it highly frustrating everything is not in some kind of system like Windows. To be honest, I figured Linux distros aimed at helping linux beginners such as Ubuntu or Mint or whatever, would have used a more direct and understandable file system for non-linuxians. Something I will have to learn. The whole file system is hella intimidating.
Oh yes, it can be confusing, but don't worry too much, the only areas you'll have to deal mostly with is your home directory. If you want to see where apps are installed to when using the apt-get command, just run this command:
This will show all the files installed for that package and their related locations
$ dpkg -L irssi
/.
/etc
/etc/irssi.conf
/usr
/usr/lib
/usr/lib/perl5
/usr/lib/perl5/Irssi.pm
/usr/lib/perl5/Irssi
/usr/lib/perl5/Irssi/TextUI.pm
/usr/lib/perl5/Irssi/UI.pm
/usr/lib/perl5/Irssi/Irc.pm
/usr/lib/perl5/auto
...
cain wrote:Is there a way to change the colors of the GRUB ? I like matrix green. For that matter, is it possible to change the font color of the entire CB theme? I can't seem to find it anywhere. Changed Terminator, Conky and Tint2s colors to Green, just want sans-serif to match everywhere.
Yes, you can edit the /boot/grub/menu.lst to change the settings. You'll see a option like the following:
color light-blue/black light-cyan/blue
Change the colours as needed, but please TAKE A BACKUP OF THIS FILE FIRST, it could possibly turn your machine unbootable by editing this file. If that does happen (worse case senario) just boot a live CD, mount your existing HDD, and replace the current menu.lst with the backup version. I'm sure someone will help you if that happens 