LoginSignup
0
1

More than 5 years have passed since last update.

RedHatEnterpriseLinuxのインストール

Last updated at Posted at 2016-10-31

RHEL6.5をインストールしてみる。

これはだいぶ昔に書いたブログ(今は消滅)の記事です。
間違ってた箇所、更新された箇所などあればご指摘ください。

  1. オフィシャルからRHEL6.5をダウンロード。 (要会員登録)

2.インストール作業。
基本的にはすべてはいを選択。
サーバーは「基本サーバ」で。
(こっそりGUI入れましたが。)

3.インストール後、SELinux、IPtablesの無効化

/etc/rc.d/init.d/iptables stop
chkconfig iptables off

chkconfig --list iptables
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off

setenforce 0

4.host設定

IPADDR=XXX.XXX.XXX.XXX
DNS1=XXX.XXX.XXX.XXX
GATEWAY=XXX.XXX.XXX.XXX
NETMASK=XXX.XXX.XXX.XXX

ONBOOT=no
↓
ONBOOT=yes

BOOTPROTO=dhcp
↓
BOOTPROTO=static

5.リポジトリをEPEL(centOSのリポジトリ)に変更(無償で使う場合のみ)

uname -a

であらかじめ、x86_64かi386か見ておくこと。

wget http://dl.fedoraproject.org/pub/epel/6Server/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6-8.noarch.rpm

6.リブート

reboot

インストール完了!
遊び倒すぞっ!!!

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1