Category Archives: OS

Munin & munin-node

The following examples use these addresses: Munin server: 192.184.94.230 (ramnode.advanxer.com) Munin node 1: 192.210.208.175 (bluevm.advanxer.com) Munin node 2: 54.254.177.162 (ec2.advanxer.com) Server side configuration /etc/munin/munin.conf htmldir /usr/share/nginx/www/munin # a simple host tree [ramnode.advanxer.com] address 127.0.0.1 use_node_name yes [bluevm.advanxer.com] address 192.210.208.175 use_node_name yes [ec2.advanxer.com] address 54.254.177.162 use_node_name yes # port 4950 Munin node configuration /etc/munin/munin-node.conf host_name vps.advanxer.com… Read More »

Loading

TACACS+ Config

Lab environment/requirement Ubuntu/Debian server Tacacs+ software from Shruberry Cisco Catalyst switches User id: advanxer Password: helloword Enable password: ciscoenable Download and install tacacs+ wget ftp://ftp.shrubbery.net/pub/tac_plus/tacacs+-F4.0.4.27a.tar.gz Extract it tar -zxvf tacacs+-F4.0.4.27a.tar.gz Go into extracted folder cd tacacs+-F4.0.4.27a Install dependencies (if needed) apt-get install build-essential flex bison libwrap0-dev Install tacacs+ ./configure make install Check tacacs+ is installed… Read More »

Loading

Configure Windows Live Custom Domains in Android

Tutorial: How to fetch your email from Windows Live Custom Domains 1. Go to Settings > Accounts > Add Account 2. Select Email 3. Fill in Username (username@domain) and Password. Click “Manual Setup” 4. Insert prefix \ before your username and blu-m.hotmail.com at server field.

Loading

Extract APK and decompile into Java source code

Decompiling apk to Dex format 1. Download Dex2Jar (Android runs applications which are in Dalvik Executable (.dex) format). 2. Run the command to convert apk to jar dex2jar targetapp.apk file(./dex2jar targetapp.apk on terminal) Viewing/Decompiling the Jar files to Java 1. Open ‘targetapp.apk.dex2jar.jar’ with jd-gui 2. File > Save All Sources to sava the class files in jar… Read More »

Loading