Techy Things

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...

Create a symbolic link 0

Create a symbolic link

$> ln -s source newlink I've been using this command for more than 10 years and I still need to look it up to see the parameter order !

Check who is using port 80 on linux 0

Check who is using port 80 on linux

Check what application is using port 80 sudo netstat -pnlt | grep ':80'   To review what port apache is binded on : sudo netstat -pnlt | grep http    

Sencha touch advanced getting-started guide (windows) 0

Sencha touch advanced getting-started guide (windows)

Installation rubyinstaller-2.0.0-p353-x64.exe node-v0.10.26-x64.msi compass sass npm install phonegap -g # Version in 2014 : v3.3.0-0.19.6 sencha fs web -p 80 start -map /path/to/sencha/folder/ Building for production sencha phonegap init sencha phonegap init com.oligny.tracker Tracker...