Tags
apache apparmor apt apt-get bash common mysql convert date diff division dpkg emails file find floating Forking https kickstart linux localtime Monitoring mysql package perl PHP phpmyadmin php seconds ago point Postfix queue rpm setup shell scripting size ssh subversion svn time time diff ubuntu UTC viewvc vim wordpress hacks wordpress tips wordpress tricks-
Meta
Recent Comments
- infosb on How to Disable Media Manager Services
- tago on OpenLDAP: failed init (bdb)
- ocanizo on daemontools: /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference in envdir.o
- Shorten urls service make money on How To Get Yesterday's Date using BASH Shell Scripting
- sahil on daemontools: /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference in envdir.o
- Cesar on No recognized SSL/TLS toolkit detected
- Ladd on daemontools: /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference in envdir.o
- Mladen on How to Automatically Start Pageant with Private Keys in Windows
Categories
-
Recent Posts
- PHP: Get URL Content Using PHP Curl
- Netgear: Using WNDR3700 as Wireless Access Point
- Mac: How To Shutdown Using Command Line
- Linux: Send Process To Background And Logout
- Xbox: Westinghouse LCD TV and Xbox 360 Universal Remote
- Linux: Using Daemonize To Run User Processes In The Background
- Subversion: svn undo delete before commit
- Linux: How To Fix “node js openssh not found”
Blogroll
News
February 2012 M T W T F S S « Nov 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
CNN.com
BBC- Wolves fail in new Curbishley bid
- Western journalists 'die in Homs'
- First verdict in supergrass case
- St Paul's camp appeal bid refused
- Second body discovered in resort
- Deadly Afghan protests spreading
- Leguizamo to play Del Boy in US
- Germany criticised for castration
- How much Christianity is hidden in British society?
- Path of tsunami debris mapped out
AL JAZEERA ENGLISH (AJE)- 'Journalists killed' in Homs shelling
- UN watchdog 'denied access to key Iran site'
- Rudd departure shakes Australian government
- Clashes in Afghanistan over 'Quran burning'
- Officials claim high turnout for Yemen vote
- New Zealand remembers 2011 quake victims
- Indonesian police storm jail as inmates riot
- African envoy in Senegal to defuse tension
- Megaupload founder released on bail
- 'Waterworld' super planet confirmed
Archives
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- April 2010
- March 2010
- February 2010
- December 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- June 2008
- May 2008
- April 2008
- March 2008
Category Archives: Networking
Netgear: Using WNDR3700 as Wireless Access Point
Basic Configuration WNDR3700 needs to be configured using its installation CD After it is set to factory default, its default IP is 192.168.1.1 Access Point Setup Plug your Internet connection into the WAN port (yellow) on the WNDR3700 Power cycle … Continue reading
Posted in Networking
Leave a comment
Wireshark: Common Filters
DISPLAY FILTER EXPLANATION EXAMPLE eth.addr source or destination mac-address eth.addr == 00:1a:6b:ce:fc:bb eth.src source mac-address eth.src == 00:1a:6b:ce:fc:bb eth.dst destination mac-address eth.dst == 00:1a:6b:ce:fc:bb arp.dst.hw_mac target mac-address arp.dst.hw_mac == 00:1a:6b:ce:fc:bb arp.dst.proto_ipv4 target IPv4 address arp.dst.proto_ipv4 == 10.10.10.10 arp.src.hw_mac sender mac-address … Continue reading
Posted in Networking
Leave a comment
nTop: How To Fix RD: Disabled – unable to create base directory
1. faster one sudo chown -R nobody:nogroup /var/lib/ntop 2. slower but nicer sudo chmod 755 /var/lib/ntop sudo mkdir /var/lib/ntop/rrd sudo chown -R nobody:nogroup /var/lib/ntop/rrd and then you can run sudo ntop & and connect to it on http://localhost:3000 Source: Ubuntuforums.org
Posted in Networking
Leave a comment
Linux: How To Set a Static IP Address
On Ubuntu, say you want to give your machine the IP address: 192.168.1.100 Add this to your /etc/network/interfaces: auto eth0 iface eth0 inet static address 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255 gateway 192.168.1.1 This line makes the interface enabled at bootup: … Continue reading
Posted in Linux, Networking
Leave a comment