Day: April 1, 2019

Reset Windows Update Tool

:: ==================================================================================:: Re-posting this here because I admire the good work by Sir Manuel Gil::…

LAMPP: Change Apache Listening Port

Change Apache listening port:vim /opt/lampp/etc/httpd.confEdit line:Listen 80 (change to 8888)OPEN port 8888:vim /etc/sysconfig/iptables-A RH-Firewall-1-INPUT -m…

File Searching in Linux

Step 1 Index your file system with updatedb. This makes a list of files so…

Yum commands to update server

Wanna ace your Linux job interviews? Well, read more Linuxy stuff and cramp your brain…

CentOS 5: Installing XAMPP, and Gallery2

1. Install CentOS 5 - Do not install MySQL, Apache, and FTP - edit /etc/resolv.conf…

Installing Red5 on CentOS 5

I mostly work with Debian Etch 4 but the process would pretty much be the…

CentOS 5.1 Server Setup Notes

CentOS 5.1 Server Setup: LAMP, Email, DNS, FTP, ISPConfig (a.k.a. The Perfect Server) This tutorial…

Installing FFMPEG and FFMPEG-PHP

How to install ffmpeg, ffmpeg-PHP, Mplayer, Mencoder, flv2tool, LAME MP3 Encoder, and Libog from source…

Install MySQL on CentOS 5.2

To install MySQL, we do this:yum install mysql mysql-devel mysql-serverThen we create the system startup…

Install Apache2 with PHP and Ruby on CentOS 5.2

yum install php php-devel php-gd php-imap php-ldap php-mysql php-odbc php-pear php-xml php-xmlrpc curl curl-devel perl-libwww-perl…

Install ISPConfig on CentOS 5.2

cd /var/www/html wget  tar xvfz ISPConfig-2.2.24.tar.gz cd install_ispconfig ./setup

How to configure CentOS 5.2 to use RPMForge and YUM

rpm -Uhv yum update   Yum install [package name] Yup info [package name] Yum remove…

LAMPP Passwords Change

Change ProFTP password: vim /opt/lampp/etc/proftpd.conf <?-- delete the last line in password, leave the first…

Some MySQL Admin Stuff

make sure it's running ps -ef | grep mysql Creating MySQL DB HOWTO on creating…

SENDMAIL Configurations

SMTP relay will also check the source of sender by using ping-back. Thus, the servername…

Linux: How to set a static IP address

Set Static IP Address ---- vim /etc/sysconfig/networking/profiles/default/ifcfg-eth0 vim /etc/sysconfig/network-scripts/ifcfg-eth0 ---- DEVICE=eth0 BOOTPROTO=none HWADDR=00:0C:29:d7:5b:d3 ONBOOT=yes TYPE=Ethernet…

Linux: Compiling Software

Install From RPM: rpm -ivh PACKAGENAME   Install from TAR.GZ tar -xzvf PACKAGENAME cd PACKAGENAME…

Linux: How to create samba shares for Windows

Install Samba: yum install samba   SELinux:  setsebool -P samba_enable_home_dirs 1   Run the utility…

Installing VNC on Centos 5.3

Install VNC server package upon server setup, then run in include GNOME desktop environment: #…

Adding Repositories in Centos 5.3

yum install yum-priorities vim /etc/yum/pluginconf.d/priorities.conf ---- [main] enabled=1 ----   Install RPMForge: cd /home wget…