Find out the CPU is 32bit or 64bit
To find out system CPU is 64-bit capable or not, use /proc/cpuinfo. cat /proc/cpuinfo | grep flags If result contains "lm" (Long Mode), system CPU is 64-bit capable. As an…
To find out system CPU is 64-bit capable or not, use /proc/cpuinfo. cat /proc/cpuinfo | grep flags If result contains "lm" (Long Mode), system CPU is 64-bit capable. As an…
To find out if you are running a 64-bit or 32-bit kernel, uname command is enough: uname -m If the result is "x86_64", you are running an 64-bit kernel"i686" means…
One of the advantages of Debian operating system is the ability to live update a production server from current to next release. Under normal circumstances you do not have to…
Debian 7.0 Wheezy has been officially released on May 5, 2013. Wheezy is powered by Linux kernel 3.2 and multiarch support. Concerning LAMP software, Apache 2.2.22 MySQL 5.5.30 and PHP…
In a previous post I wrote about Memcached installation on Archlinux workstation. This is a similar post for Debian server machine. I will describe Memcached installation and configuration on a)…