Skip to main content

How To: Install PHP from source code on ...

All Linux distributions come with PHP. However, it is recommended to download latest PHP source code, compile and install on Linux. This will make it easier to upgrade PHP on an ongoing basis immediately after a new patch or release is available for download from PHP. This article explains how to install PHP5 from source […]

How to: Install and configure DRBD on Ce...

How to: Install and configure DRBD on CentOS 6 DRBD® refers to block devices designed as a building block to form high availability (HA) clusters – Distributed Replicated Block Device This is done by mirroring a whole block device via an assigned network. Distributed Replicated Block Device can be understood as network based raid-1. So, […]

PHP and Apache Installation on CentOS Ho...

centos - geek-kb.com

PHP and Apache Installation on CentOS In this tutorial: how to install PHP and Apache on CentOS.   CentOS comes with Apache v.2.2.3 and PHP v.5.1.6 and they are easily installed via the default CentOS Package Manager, yum. The advantage of using yum (as opposed to installing via source code) is that you will get any […]

How To: Reset MySQL Password

mysql password

From time to time it happens that mysql password for root user gets lost and you are required to reset mysql password. here’s how it’s done: System Requirements: A Linux or Windows machine running mysql server. The following process will teach you how to reset mysql password for root user (or any other user) on […]

How To: Install Aircrack and Reaver on U...

Aircrack

1. The articles contained on the website are for educational purposes only encouraging users and Admins to better understand the environmental security measurement and enable safer digital environment.
Geek-KB.com does not encourage, condone, or orchestrate attempts of hacking into other servers or any other illegal activities. All actions taken by users are strictly independent of Geek-KB.com. We are not responsible for any misuse of the techniques listed on this website.
2. Geek-KB.com has the sole discretion to remove/edit users, articles, external resources, or any other user-submitted content to protect itself from legal harm. This legal disclaimer may be modified at any time without notice.
3. Any damage caused by using any of the techniques taken from https://www.geek-kb.com is at your own risk and responsibility;

Strace Examples

Strace

Trace the Execution of an Executable You can use strace command to trace the execution of any executable. The following example shows the output of strace for the Linux ls command. $ strace ls execve(“/bin/ls”, [“ls”], [/* 21 vars */]) = 0 brk(0) = 0x8c31000 access(“/etc/ld.so.nohwcap”, F_OK) = -1 ENOENT (No such file or directory) […]