Home

News

What's Coming?

SYSTMBX has not been posting new tutorials for a couple on months now. Why?

I've been hired by a new company and I'm pretty busy configuring there new firewall... pfSense.

Yup that's right! New tutorials will be based on my experience and implementation on pfSense (specifically 2.0RC3 which is the latest version as of this time). Like dual wan, load-balancing, ipsec, vlan, etc.

So, that what is coming. :)

How To Install Nginx With PHP 5.3 And PHP-FPM Support On CentOS 6 PDF Print E-mail
( 1 Vote )
How To - Nginx
Written by Christian Foronda   
Wednesday, 20 July 2011 19:08

This tutorial is tested only on CentOS 6.0 but might also work on future CentOS 6 versions.

This is done on a bare install of CentOS 6.

 

Update your packages:

# yum -y update

 

Last Updated on Friday, 22 July 2011 08:22
Read more...
 
How To Configure Lighttpd With PHP And MySQL Support On CentOS 6 PDF Print E-mail
( 2 Votes )
How To - Lighttpd
Written by Christian Foronda   
Wednesday, 20 July 2011 13:30

This tutorial is tested on a bare installation of CentOS 6.

Install wget:

# yum install wget

 

Install RPMforge repository:

# wget -c http://pkgs.repoforge.org/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
# rpm -ivh rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

 

Temporarily disable SELinux:

# echo 0 > /selinux/enforce

 

Last Updated on Wednesday, 20 July 2011 14:27
Read more...
 
Solaris: libintl.so.8: open failed: No such file or directory PDF Print E-mail
( 0 Votes )
How To - Solaris
Written by Christian Foronda   
Tuesday, 05 July 2011 19:05

Recently, after pkg-get upgrade on Solaris 5.10. I encountered a missing file error:

libintl.so.8: open failed: No such file or directory

 

Reinstalling libintl8 fix the problem. Go to ibiblio.org repository and download the latest version:

# /bin/wget -c http://mirrors.ibiblio.org/pub/mirrors/opencsw/current/sparc/5.10/libintl2-0.18.1.1,p,REV=2011.02.12-SunOS5.9-sparc-CSW.pkg.gz

 

Install the package:

# gunzip libintl2-0.18.1.1,p,REV=2011.02.12-SunOS5.9-sparc-CSW.pkg.gz
# pkgadd -d libintl8-0.18.1.1,p,REV=2011.03.15-SunOS5.9-sparc-CSW.pkg

 

 
How To Install Nginx With PHP 5.2 Support On CentOS 5.6 PDF Print E-mail
( 2 Votes )
How To - Nginx
Written by Christian Foronda   
Friday, 01 July 2011 11:30

This tutorial is tested only on CentOS 5.6 but might also work on other CentOS 5 versions.

This is done on a fresh install of CentOS 5.6.

Update your packages:

# yum -y update

 

Read more...
 
How To Install Nginx With PHP 5.3 Support On Ubuntu 10.04 LTS Lucid PDF Print E-mail
( 2 Votes )
How To - Nginx
Written by Christian Foronda   
Thursday, 30 June 2011 17:30

This tutorial is tested only on Ubuntu Server 10.04 LTS Lucid but also might work on other Ubuntu versions.

I assume that you have a fresh install of Ubuntu Server 10.04 LTS Lucid.

Update your packages:

# aptitude update
# aptitude safe-upgrade

 

Last Updated on Thursday, 30 June 2011 21:33
Read more...