Category: linux

0

  Retinal Web Security Scanner http://www.beyondtrust.com/Products/RetinaWebSecurityScanner/ Description: We are using this at work to validate the security of our appliances.  

Cool libraries to do awesome things ! 0

Cool libraries to do awesome things !

KineticJS https://github.com/ericdrowell/KineticJS/ Description: With this you can build a small game or dynamic UI that runs in the browser. It has good 2D drawing capabilities as well as animations and user-control - which means...

wrong ELF class: ELFCLASS64 0

wrong ELF class: ELFCLASS64

error while loading shared libraries: libXv.so.1: wrong ELF class: ELFCLASS64 [root@kraken sbin]# ./krakend ./krakend: error while loading shared libraries: libXv.so.1: wrong ELF class: ELFCLASS64 Solution : Either install the 32-bit library missing -or- compile...

R programming howto 0

R programming howto

R programming notes and how to do. Split data frame by month s <- split(airquality, airquality$Month) # will output a list of data.frame. One data.frame per month. Applying a mean function to data splitted...

Saving the master boot record of hard-disk under Debian 0

Saving the master boot record of hard-disk under Debian

Backup The first line is to backup MBR, the second line is to backup extended partitions (important just as well!!) $> dd if=/dev/sda of=/tmp/backup-sda.mbr bs=512 count=1 $> sfdisk -d /dev/sda > /tmp/backup-sda.sfdisk Restore $>...

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