CentOS

Linux distro RedHat clone.

http://mirrors.nfsi.pt/CentOS/6.5/isos/x86_64/CentOS-6.5-x86_64-bin-DVD1.iso

EPEL repositories

   1 wget http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
   2 wget http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
   3 sudo rpm -Uvh remi-release-5*.rpm epel-release-5*.rpm

Install PHP 5.4 on CentOS 6.5

https://webtatic.com/packages/php54/

Steps:

   1 lsb_release -a
   2 rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm
   3 yum install php54w
   4 yum install yum-plugin-replace
   5 yum replace php-common --replace-with=php54w-common
   6 service httpd restart

Minimal CentOS 6.5

https://docs.vagrantup.com/v2/boxes/base.html

Vagrant CentOS 5.10 box

Runs well on Toshiba NB200

   1 wget http://ftp.up.pt/CentOS/5.10/isos/i386/CentOS-5.10-i386-bin-1of8.iso
   2 cd /tmp
   3 mkdir centos5_10
   4 cd centos5_10
   5 wget https://vagrantcloud.com/box-cutter/centos510-i386/version/1/provider/virtualbox.box # centos510-i386-nocm.box
   6 mv virtualbox.box centos510-i386-nocm.box
   7 vagrant box add CentOS5_10 centos510-i386-nocm.box
   8 vagrant init CentOS5_10
   9 vagrant up # may take many minutes. In case of problem/taking too long start the VM directly with VirtualBox
  10 yum install  java-1.6.0.openjdk
  11 yum install unzip

JBoss 5.1.0

Tomcat 7.0.53

JBoss 7.1.1

Yii

Python 2.6

Package the box for centos510VB.box

Vagrant box CentOS 6.5

CentOS 6.4 i386 Minimal (VirtualBox Guest Additions 4.3.2, Chef 11.8.0, Puppet 3.3.1)

http://developer.nrel.gov/downloads/vagrant-boxes/CentOS-6.4-i386-v20131103.box

List RPM installed packages

Install htop 64 bit

CentOS 7 packages for docker java 8 and maven

   1 # install centos minimal with 64gb disk and 1GB mem 1 processor 
   2 ping –c 1 www.google.com
   3 yum -y update # as root
   4 yum -y install vim nano java-1.8.0-openjdk maven java-1.8.0-openjdk-devel wget unzip git
   5 curl –fSSL https://get.docker.com/ | sh
   6 systemctl start docker
   7 systemctl enable docker
   8 systemctl status docker
   9 usermod -aG docker centos
  10 # Add port forwarding to port 2222
  11 

CentOS (last edited 2023-02-05 19:42:21 by localhost)