這篇文章主要介紹“RHEL 6.4操作系統(tǒng)安裝方法”,在日常操作中,相信很多人在RHEL 6.4操作系統(tǒng)安裝方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”RHEL 6.4操作系統(tǒng)安裝方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)主要從事網(wǎng)頁設(shè)計(jì)、PC網(wǎng)站建設(shè)(電腦版網(wǎng)站建設(shè))、wap網(wǎng)站建設(shè)(手機(jī)版網(wǎng)站建設(shè))、自適應(yīng)網(wǎng)站建設(shè)、程序開發(fā)、網(wǎng)站優(yōu)化、微網(wǎng)站、小程序設(shè)計(jì)等,憑借多年來在互聯(lián)網(wǎng)的打拼,我們在互聯(lián)網(wǎng)網(wǎng)站建設(shè)行業(yè)積累了豐富的成都做網(wǎng)站、網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、網(wǎng)絡(luò)營銷經(jīng)驗(yàn),集策劃、開發(fā)、設(shè)計(jì)、營銷、管理等多方位專業(yè)化運(yùn)作于一體。
1.新建虛擬機(jī)
解決方法
如果不支持,點(diǎn)擊取消并關(guān)閉虛擬機(jī)軟件。
重新啟動(dòng)電腦,進(jìn)入 BIOS, 將虛擬機(jī)選項(xiàng)打開 (F2 或者Delete鍵)
不同品牌、型號(hào)電腦進(jìn)入 BIOS 方法、虛擬化選項(xiàng)有所不同
此處分配60G的磁盤空間
OS:Red Hat Enterprise Linux 6.4-64bit
IP:192.168.6.10
hostname:rhel64
root:beijing
oracle:oracle
DB:oracle 11.2.0.4
SID:PROD
sys:oracle
system:oracle
scott:tiger
2. RedHat Enterprise Linux 6.4 64 位系統(tǒng)安裝
2.1 啟動(dòng)虛擬機(jī)安裝
默認(rèn)第一項(xiàng)按回車 進(jìn)入圖形化安裝界面
Skip 跳過安裝介質(zhì)檢測
鍵盤布局 默認(rèn) U.S.English
默認(rèn)第一項(xiàng) 基本存儲(chǔ)設(shè)備 Next
Yes ,discard any data,丟棄數(shù)據(jù)
主機(jī)名:rhel64
默認(rèn)是 DHCP 修改手動(dòng)設(shè)置 Manual 配置靜態(tài) ip Apply
close -Next,選擇 Asia/Shanghai
設(shè)置超級用戶 root 密碼
Use ALL Space,勾選 Review,Use All Space:使用整塊硬盤 自動(dòng)分區(qū)
查看操作系統(tǒng)默認(rèn)分區(qū)
修改分區(qū)大小 增加/u01
/ 20G
swap 4G
/u01 56G
Format 格式化-Write changes to disk
系統(tǒng)裝在本地磁盤/dev/sda
Desktop - Customize now,桌面和軟件開發(fā)平臺(tái)默認(rèn)有圖形化
軟件包組,
Compatibility libraries 兼容性庫,向下兼容,通常裝 oracle 必選
語言可以勾選中文支持 登錄時(shí)輸入用戶名后可更改語言
檢查包依賴關(guān)系 開始安裝
安裝完成重啟 reboot
2.2 初始化操作系統(tǒng)
兩次 Forward
不注冊 No- Register later
不創(chuàng)建用戶
2.3.系統(tǒng)安裝完成初始配置
配置本地主機(jī)名解析/etc/hosts
[root@rhel64 ~]# cat /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=rhel64
GATEWAY=192.168.6.1
禁用防火墻、NetworkManager
[root@rhel64 ~]# chkconfig iptables off
[root@rhel64 ~]# chkconfig NetworkManager off
[root@rhel64 ~]# chkconfig --list iptables
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@rhel64 ~]# chkconfig --list NetworkManager
NetworkManager 0:off 1:off 2:off 3:off 4:off 5:off 6:off
禁用 selinux
重啟驗(yàn)證
[root@rhel64 ~]# reboot
[root@rhel64 ~]# getenforce
[root@rhel64 ~]# service iptabels stastus
[root@rhel64 ~]# service NetworkManager status
配置 yum 軟件倉庫
[root@rhel64 ~]# mkdir /mnt/dvd
[root@rhel64 ~]# mount /dev/sr0 /mnt/dvd
[root@rhel64 ~]# df -Th
[root@rhel64 ~]# cp /etc/yum.repos.d/rhel-source.repo /etc/yum.repos.d/rhel-source.repo.bak
[root@rhel64 ~]# vi /etc/yum.repos.d/rhel-source.repo
[rhel6.4]
name= rhel6.4
baseurl=file:///mnt/dvd/Server
gpgcheck=0
注解:
enabled=1 #這個(gè)選項(xiàng)表示這個(gè)repo中定義的源是啟用的,0為禁用
gpgcheck=1 #這個(gè)選項(xiàng)表示這個(gè)repo中下載的rpm將進(jìn)行g(shù)pg的校驗(yàn),已確定rpm包的來源是有效和安全的
驗(yàn)證
[root@rhel64 ~]# yum clean all
[root@rhel64 ~]# yum list
[root@rhel64 ~]# yum install lrzsz
安裝 vmware tools
安裝前先將掛載的光盤彈出,安裝后 方便全屏虛擬機(jī)控制臺(tái)界面以及進(jìn)行文件傳輸
[root@rhel64 ~]# cd /media/VMware\ Tools/
[root@ rhel64 VMware Tools]# ll
[root@ rhel64 VMware Tools]# mkdir /tmp/tools
[root@ rhel64 VMware Tools]# tar -xvf VMwareTools-10.0.10-4301679.tar.gz -C /tmp/tools/
[root@ rhel64 ~]# cd /tmp/tools/vmware-tools-distrib/
[root@ rhel64 vmware-tools-distrib]# ll
[root@ rhel64 vmware-tools-distrib]# sh vmware-install.pl
默認(rèn)回車,安裝完成重啟驗(yàn)證
到此,關(guān)于“RHEL 6.4操作系統(tǒng)安裝方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!