CentOS Quick Install CD ISO Images from Cpanel
The ISO files can be downloaded from:
http://layer1.cpanel.net/CentOS-5.4-i386-cPanel.iso
http://layer1.cpanel.net/CentOS-5.4-x86_64-cPanel.iso
Sample kickstart file for automated CentOS Linux installs: http://httpupdate.cpanel.net/cpanel-ks.cfg
How to install or add a package in FreeBSD
To install a Port: (ImageMagick as an example)
cd /usr/ports/graphics/ImageMagick/ && make install clean
If you do not have a source of local packages (such as a FreeBSD CD-ROM set) then it will probably be easier to use the -r option to pkg_add(1). This will cause the utility to automatically determine the correct object format and release and then fetch and install the package from an FTP site.
The example above would download the correct package and add it without any further user intervention.
pkg_info(1) is a utility that lists and describes the various packages installed.
To remove a previously installed software package, use the pkg_delete(1) utility.
How to Install RVSkins
RVSkin is an awesome skin for cPanel, the installation is pretty straight-forward, and is done via SSH, RVSkin is a multilingual, multi-theme advanced skin management software for cPanel server.
Root access is required.
mkdir /root/rvadmin
cd /root/rvadmin
wget http://download.rvglobalsoft.com/download.php/download/rvskin-auto/saveto/rvauto.tar.bz2
bunzip2 -d rvauto.tar.bz2
tar -xvf rvauto.tar
perl /root/rvadmin/auto_rvskin.pl
You can now login to WHM (as root) and navigate to RVSkin Manager, listed under Plugins in the left-hand navigation.
How to install Softaculous in WHM
1) In order to install Softaculous ensure ionCube Loaders are enabled.
If it is not enabled you can go to WHM >> Tweak Settings >>PHP >> Select ioncube from Loader to use for internal cPanel PHP
2) Now Login to the server as root.
3)Go to the directory /usr/local/cpanel/whostmgr/docroot/cgi
cd /usr/local/cpanel/whostmgr/docroot/cgi
4) Download Softaculous
wget -N http://www.softaculous.com/ins/addon_softaculous.php
5) Change the permissions to 755
chmod 755 addon_softaculous.php
That’s for the command line.
Now login to WHM
6) Go to WHM > Plugins> Softaculous – Instant Installs
Necessary packages for ffmpeg and ffmpeg-php Install
First run the command uname to find the arch
Then download rpmforge-release
rpm -Uhv http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.1-1.el5.rf.x86_64.rpm
yum clean all
yum update
yum install ffmpeg ffmpeg-devel
yum install mplayer mencoder
yum install gcc gmake make libcpp libgcc libstdc++ gcc4 gcc4-c++ gcc4-gfortran
yum install subversion ruby ncurses-devel ruby-libs
yum install flvtool2*
Run svn checkout:
svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg
svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer
cd /usr/local/src/mplayer
svn update
cd /usr/local/src
Copy codecs for mplayer:
mv /usr/local/src/essential-20061022/* /usr/local/lib/codecs/
chmod -R 755 /usr/local/lib/codecs/
If you are using secure tmp:
mkdir /usr/local/src/tmp
chmod 777 /usr/local/src/tmp
export TMPDIR=/usr/local/src/tmp
For ffmpeg-php
wget http://downloads.sourceforge.net/project/ffmpeg-php/ffmpeg-php/0.6.0/ffmpeg-php-0.6.0.tbz2?use_mirror=nchc
tar -xjf ffmpeg-0.5.2.1.tbz2
phpize
./configure
make
make install