- Welcome to Geeksww.com
categories
Database Management Systems
- MS SQL Server
- MySQL
- Oracle Berkeley DB
Libraries
- Apache Portable Runtime
- Apache Portable Runtime Utility
- Flex
- Freetds
- Libiconv
- Libmcrypt
- Libmhash
- Libpng
- Libxml
- Libxslt
- m4
- Neon (webdav)
- OpenSSL
- zLib
Miscellaneous
- Bison
- Byacc
- UML
- Varnish Cache
Operating Systems
- Linux
- MacOS X
- MS Windows
Servers
- Apache Web Server
- Internet Information Services
- Node.js
- vsftpd FTP Server
Tools
- Development
- Security
Web Development
- AJAX
- Dart
- Javascript
- PHP
- Python
tags cloud
Prev | 1 2 3 4 5 6 7 8 9 10 | Next
Installing OpenSSL on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you how to install OpenSSL on Ubuntu 12.04. The process is very simple. For this tutorial, I'll be installing openssl version 0.9.8e and the latest 1.0.1g (released Apr 07, 2014). Linux kernel is 3.2.0-23-powerpc-smp. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.6.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations...(Read more)
Category:
Libraries > OpenSSL > Installation
Tags:
Giving Apache Web Server A Different Name by changing Source Code Before Installation (very simple instructions)
Submitted by Webmaster on Thursday January 15, 2009
I am going to show you how to change Apache's source code before compiling and installing so that it always shows a different name while using the technique described <a href="http://www.techsww.com/tutorials/miscellaneous/tips_and_tricks/how_find_web_server_information_using_http_telnet.php">here</a>. I have used Apache version 2.0.59 for this tutorial...(Read more)
Category:
Servers > Apache Web Server > Tips and Tricks
Tags:
Configuring MacOS X to compile and install open source software using XCode Tools
Submitted by Webmaster on Thursday January 15, 2009
If you want to compile and install Open Source Software on your MacOS X machine then you should install MacOS X's XCode tools. XCode tools provide the compilers and other software development kits (SDKs) to enable you to compile and install open source software on your computer...(Read more)
Category:
Operating Systems > MacOS X > Tools
Tags:
Installing MySQL Client tools, binaries, and library on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you how to install MySQL Client tools, binaries, and library on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing MySQL Client tools, binaries, and library version 5.0.45. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS x)...(Read more)
Category:
Database Management Systems > MySQL > Installation
Tags:
Working with BASH environment variables (simple commands for beginners)
Submitted by Webmaster on Thursday January 15, 2009
You'll learn the following in this tutorial. * Display names and values of all environment variables * Assign value to an environment variable * Print value of a particular environment variable * Append value to an existing environment variable * Make the variable globally accessible * Delete an environment variable..(Read more)
Category:
Operating Systems > Linux > Tips and Tricks
Tags:
Installing Berkeley Yet Another Compiler Compiler (byacc) on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you how to install Berkeley Yacc (byacc) on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing Berkeley Yacc (byacc) version 1.9. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS X)...(Read more)
Category:
Miscellaneous > Byacc > Installation
Tags:
How to download and install Bison (GNU Parser Generator) on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you <i>how to download and install Bison (GNU Parser Generator) on Ubuntu Linux Server</i>. The process is very simple. For this tutorial, I'll be installing Bison version 2.3. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS X)...(Read more)
Category:
Miscellaneous > Bison > Installation
Tags:
Installing m4 Macro Processor on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you how to install m4 (macro processor) on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing m4 version 1.4.10. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS X)...(Read more)
Category:
Libraries > m4 > Installation
Tags:
Installing Libpng on Ubuntu Linux
Submitted by Webmaster on Thursday January 15, 2009
This short tutorial shows you how to install libpng on Ubuntu Linux Server. The process is very simple. For this tutorial, I'll be installing libpng version 1.2.18. Linux kernel is 2.6.15-26-powerpc. I have used a Mac Mini (powerpc/ppc architecture). GCC version number is 4.0.3. Your configuration may be different from mine but the installation steps below should work fine for most configurations with little or no change at all (including other Linux distributions and even unixes e.g. MacOS x)...(Read more)
Category:
Libraries > Libpng > Installation
Tags:
Difference between '==' (equal) and '===' (identical) comparison operators in PHP (with examples)
Submitted by Webmaster on Thursday January 15, 2009
Two of the many comparison operators used by PHP are '==' (i.e. equal) and '===' (i.e. identical). The difference between the two is that '==' should be used to check if the values of the two operands are equal or not. On the other hand, '===' checks the values as well as the type of operands...(Read more)
Category:
Web Development > PHP > Tips and Tricks