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
CNN.com- Philippines issues local tsunami alert
- 'I'm sorry. Goodbye' precedes fatal Washington explosion
- Australians urged to flee flooding
- More caucuses next stop for Romney
- Activist: Rockets rip through Syrian city
- Sex abuse cases close school for days
- Lacrosse player faces trial in ex's death
- Saudi woman sues over right to drive
- Gingrich's Southern revival strategy
- Opinion: Syria in for bloody stalemate
BBC- Police chief at Leveson Inquiry
- Many trapped in Lahore collapse
- Romanian PM resigns over protests
- Web firms remove India material
- Syria troops step up Homs bombing
- Accidents due to icy conditions
- MP's call to fight web extremists
- Bank lending 'to shrink' in 2012
- Capello opposes FA Terry decision
- Woman runs for Mexico presidency
AL JAZEERA ENGLISH (AJE)- Suu Kyi given go-ahead to run in by-election
- Romania's PM resigns over austerity protests
- Abbas 'proposed as PM' in unity government
- US seeks 'clarification' over Egypt NGO trial
- Scores trapped in Pakistan building collapse
- Syrian army 'steps up Homs offensive'
- Obama 'in lockstep' with Israel on Iran issue
- Mexico's ruling party picks female candidate
- Noriega hospitalised over suspected stroke
- New York Giants win Super Bowl title
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
Monthly Archives: July 2010
VIM: How To Show Control Characters
How to show all control characters in VIM: :set list And to disable: :set nolist
Posted in Editors
Leave a comment
Unix: How to Install BerkeleyDB From Source
This documentation is buried in the source as HTML, so I’m posting it here for convenience. Building for UNIX/POSIX The Berkeley DB distribution builds up to four separate libraries: the base C API Berkeley DB library and the optional C++, … Continue reading
Posted in Databases, Linux
Leave a comment
CSS: How To Always Show Vertical Scrollbar
To avoid webpage shifting, you can always have the vertical scrollbar visible by doing this: html { overflow-y: scroll; } Note: This only seems to work in Firefox and Internet Explorer.
Ubuntu: Flushing IpTables Causes Loss of Internet Connection
If you are trying to disable the firewall, but lose Internet connection in the process, use this script: iptables -F iptables -X iptables -t nat -F iptables -t nat -X iptables -t mangle -F iptables -t mangle -X iptables -P … Continue reading
Posted in Firewall, Linux
Leave a comment
Linux: How To Edit resolv.conf Using dhclient.conf
So, you’re trying to get here: /etc/resolv.conf: nameserver 192.168.1.1 domain aaa.com search aaa.com bbb.com You need to edit dhclient.conf like this: /etc/dhcp3/dhclient.conf: supersede domain-name-servers 192.168.1.1; supersede domain-name “aaa.com”; append domain-name ” bbb.com”; There must be a space before the bbb.com … Continue reading
Posted in Linux
Leave a comment
Windows: Kill All Chrome Processes At Once
Run this on the command line: taskkill /F /IM chrome.exe /T /F = force kill /IM = image name /T = kill all child processes as well To create a shortcut, right-click the desktop, then New -> Shortcut. For location, … Continue reading
Posted in Browsers, Windows
Leave a comment
Ubuntu: How To Enable Sound
HP xw6400 Workstation: How to fix your machine if your speakers don’t work. Determine your sound card model: cat /proc/asound/card0/codec#* | grep Codec Look up the model in this list: http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio-Models.txt Edit your ALSA (Advanced Linux Sound Architecture) conf file: … Continue reading
Ubuntu: How to Determine Motherboard Type
lshw – list hardware sudo lshw lspci – list all PCI devices sudo lspci
Ubuntu: APT and DPKG
How to display the files of a package installed? To list all the files provided by the installed package foo execute the command dpkg –listfiles foo Note that the files created by the installation scripts aren’t displayed. http://www.debian.org/doc/FAQ/ch-pkgtools.en.html
Posted in Linux
Leave a comment
Windows Vista: How To Enable Telnet
By default, Vista installs without telnet available. Here is how to enable telnet in Vista: 1. Open ‘Control Panel’ 2. Select ‘Programs and Features’ 3. In the left column, select ‘Turn Windows features on or off’ (get ready for the … Continue reading
Posted in Windows
Leave a comment