Monthly Archive: May 2014

Add new software source in Debian 0

Add new software source in Debian

To add a new repo to the software source, do the the following : Go into Administration > Software Sources Add your software sources, for example : deb http://ftp.us.debian.org/debian/ sid main deb-src http://ftp.us.debian.org/debian/ sid main proceed with installation...

Add debuginfo repo in CentOS 1

Add debuginfo repo in CentOS

Error : Missing separate debuginfos, use: debuginfo-install glibc-2.12-1.132.el6.x86_64 libgcc-4.4.7-4.el6.x86_64 libstdc++-4.4.7-4.el6.x86_64 Problem during install $> sudo debuginfo-install glibc-2.12-1.132.el6.x86_64 libgcc-4.4.7-4.el6.x86_64 libstdc++-4.4.7-4.el6.x86_64 (...) Could not find debuginfo for main pkg: glibc-2.12-1.132.el6.x86_64 Could not find debuginfo pkg for...

Surviving inside of gdb - Advance notions and best use 0

Surviving inside of gdb - Advance notions and best use

GDB Bootcamp Survival of the fittest Getting around To start a session : $> gdb my-super-awesome-program To start a session with arguments : $> gdb --args my-super-awesome-program --temperature hot --voltage high To run (the thing starts...