Overview Writing Computer Programs: Programs start as a set of instructions written by humans. They start as an idea, which are put into text as a source file, containing source code. The source file is transformed into an object file by the compiler. Then a program called a linker takes the object file and combines […]
What is C?
C is a programming language, it is a method of communicating with a computer. C is a particularly flexible language and has been used for micro-controllers, operating systems, applications and graphics programming. An improved C language called C++ has been invented and it does lots of things you don’t know about like calling constructors and […]
SSH: What is SSH (Secure Shell)?
SSH Background SSH, secure shell, is a software based approach to network security. All data sent and received using SSH is encrypted and later decrypted. It has a client-server architecture, so you will need an ssh client on your local computer and an ssh on the remote computer (the computer you want to connect to). […]
You have not Installed GEO IP: Steps(Debian Wheezy Specific): 1. aptitude install libgeoip-dev php5-geoip php5-geo 2. aptitude install php5-dev 3. pecl install geoip 4. cd /etc/php/apache2 5. rmate php.ini 6. Add to ectensions 7. extension=geoip.so modified from: IT Knowledge Base
Command Not Found: You’ve been having a good day up till now When you type a common command in unix, it could be ls or last or who or grep or in my case rmate when low and behold, a response: bash: Command not Found This is very annoying and is often the case where […]