Wow… I joked about this day coming, and here it is!
Google announced today about plans to develop it’s own operating system, Google Chrome OS, based on the Linux kernel and boasting promises of speed, simplicity and security. Oh, and it’ll also be open source.
Read MoreThere may come a time where you try to run a command on many files in a folder and you’ll get this annoying message similar to this:
-bash: //bin/chown: Argument list too long
The reason for this annoyance is that Linux kernel has a limitation of bytes it can process through as arguments in exec() commands. Try:
[root@x folder]# egrep ARG_MAX /usr/include/linux/limits.h
#define ARG_MAX 131072 /* # bytes of args + environ for exec() */
And you’ll see what I mean.
Read MoreThis has been tested on CentOS but should work on most distros:
Memcache is a caching mechanism for PHP which speeds up access to data by storing it in the RAM. Memcache runs as a server in a similar fashion to a database, except that data is not persistent in the long term. The great thing about Memcache is you don’t need to recompile php. Here’s some instructions on how to install and set it up.
Read MoreThis post is inspired by Russ Whittmann and Europheus’ solutions , with these goals/improvements in mind:
Here’s some handy tips for managing your qmail queue on a linux machine, which can be helpful for debugging:
Read More