Source code of cluster suite and GFS (Global file system) Redhat Enterprise Linux 5 can be downloaded using Git (Git is an open source version control system designed to handle very large projects with speed and efficiency.)
- Download Git from http://git.or.cz/
- run following commands
git clone git://sources.redhat.com/git/cluster.git
cd cluster
git checkout -b rhel5 origin/RHEL5
- You can download binary packages for the same from the Centos site. To download all the packages automatically, Save the following lines in a file say cluster_download.sh and then do chmod 755 cluster_download.sh ; ./cluster_download.sh
#!/bin/bash #ricci
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/ricci-0.10.0-6.el5.centos.1.i386.rpm
#conga
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/luci-0.10.0-6.el5.centos.1.i386.rpm
#system-config cluster
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/system-config-cluster-1.0.50-1.3.noarch.rpm
#lvm2
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/lvm2-2.02.26-3.el5.i386.rpm
#lvm2-cluster
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/lvm2-cluster-2.02.26-1.el5.i386.rpm
#system config lvm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/system-config-lvm-1.0.22-1.0.el5.noarch.rpm
#cman download
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/cman-2.0.73-1.el5.i386.rpm
#cman updated
wget -c http://linux.en.com.sg/centos/5.1/updates/i386/RPMS/cman-2.0.73-1.el5_1.1.i386.rpm
#cman-devel
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/cman-devel-2.0.73-1.el5.i386.rpm
#cman devel updated
wget -c http://linux.en.com.sg/centos/5.1/updates/i386/RPMS/cman-devel-2.0.73-1.el5_1.1.i386.rpm
#rgmanager
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/rgmanager-2.0.31-1.el5.centos.i386.rpm
#gnbd
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/gnbd-1.1.5-1.el5.i386.rpm
#GFS
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/gfs-utils-0.1.12-1.el5.i386.rpm
#gfs2 utils
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/gfs2-utils-0.1.38-1.el5.i386.rpm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/modcluster-0.10.0-5.el5.centos.i386.rpm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/oddjob-0.27-7.i386.rpm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/oddjob-devel-0.27-7.i386.rpm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/oddjob-libs-0.27-7.i386.rpm
wget -c http://linux.en.com.sg/centos/5.1/os/i386/CentOS/device-mapper-1.02.20-1.el5.i386.rpm
Anuj.