Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Assign Static IP if needed
  2. Code Block
    themeEmacs
    languagebash
    yum upgrade -y
  3. Enable OpenSSH:
    1. Code Block
      themeEmacs
      languagebash
      chkconfig sshd on
      service sshd start

 

Install Extra Repository

Code Block
themeEmacs
languagebash
wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm
rpm -i rpmforge-release-0.5.2-2.el6.rf.*.rpm

...

Code Block
themeEmacs
languagebash
mkdir /home/vault/vmware
cp /media/VMware\ Tools/VMwareTools-*.tar.gz /home/vault/vmware
cd /home/vault/vmware && tar xzf VMwareTools-*.tar.gz && cd vmware-tools-distrib/
yum install gcc gcc-c++ kernel-devel kernel-headers make -y
reboot
./vmware-install.pl

Install Webmin

Create the /etc/yum.repos.d/webmin.repo file containing:
Code Block
themeEmacs
languagebash
[Webmin]
name=Webmin Distribution Neutral
#baseurl=http://download.webmin.com/download/yum
mirrorlist=http://download.webmin.com/download/yum/mirrorlist
enabled=1

Install

Code Block
themeEmacs
languagebash
wget http://www.webmin.com/jcameron-key.asc
rpm --import jcameron-key.asc
yum install webmin -y
nano /etc/webmin/miniserv.conf 
change default port and listen from 10000 to 82 and save.
service webmin restart
echo '-A INPUT -m state --state NEW -m tcp -p tcp --dport 82 -j ACCEPT' >> /etc/sysconfig/iptables
service iptables restart