Archive

Archive for the ‘Software Applications’ Category

How do I compare two binary files on Linux?

February 19th, 2010 No comments

The easiest way I found is dumping the binaries into text files using hexdump and then comparing them with your favourite program (diff, Meld, etc.). E.g.:

hexdump -C a.bin >a.txt
hexdump -C b.bin >b.txt
diff a.txt b.txt

Read more…

How do I add VNC to Terminal Server Client in Ubuntu?

February 19th, 2010 No comments

From a terminal type:

sudo apt-get install xtightvncviewer

Read more…

Asterisk PBX with X100P Clone (Part 1: Installation)

November 1st, 2008 2 comments

Introduction

Here you have the first part of my experience on installing Asterisk PBX with an Intel X100P clone FXO to allow my extensions to make (and receive) phone calls to the telco line.

Read more…