Linux安裝系統注意事項及系統初始化

來源:互聯網
上載者:User

Linux安裝系統注意事項及系統初始化     Linux安裝系統注意事項         1.分區        學慣用途:        /boot:200M        /swap :記憶體的1到2倍        /:根據需要分配大小,比如虛擬機器下總空間是15G,那麼可以分配8——10G跟/分區,如果是生產環境,60——100G都很正常        /opt:最好有個單獨的分區,用以儲存資料、資料,下次使用系統此分區保持不變,就不會遺失資料。        2.根據需要安裝工具包。        3. 學習使用的話儘可能迷你安裝,只需要在最小化的基礎上安裝中文支援包即可。          系統初始化        1.修改主機名稱字 [plain] [root@localhost Desktop]# vim /etc/sysconfig/network    [root@localhost Desktop]# cat /etc/sysconfig/network  NETWORKING=yes  HOSTNAME=larrywen.host.com    [root@localhost Desktop]# hostname  localhost.localdomain    [root@localhost Desktop]# hostname larrywen.host.com  [root@localhost Desktop]# hostname  larrywen.host.com  #修改完後重啟系統或者關閉終端,再次執行hostname修改就可以看到效果           2.配置網路[plain] [root@larrywen ~]# vi /etc/sysconfig/network-scripts/  #區域網路,配置IPADDR和NETMASK即可           3.關閉安全相關的比如SELINUX防火牆[plain] [root@larrywen ~]# chkconfig NetworkManager off  [root@larrywen ~]# chkconfig iptables off  [root@larrywen ~]# chkconfig ip6tables off    [root@larrywen ~]# /etc/init.d/iptables stop  [root@larrywen ~]# /etc/init.d/ip6tables stop      [root@larrywen ~]# setenforce 0  #將SELINUX有enabled改為permissive  [root@localhost ~]# grep "^SELINUX=" /etc/sysconfig/selinux -n  8:SELINUX=permissive           4.yum源的配置[plain] [root@localhost ~]# mkdir /iso  mount /dev/cdrom /iso  cd /iso  ll  [root@localhost iso]# cd /etc/yum.repos.d/  [root@localhost yum.repos.d]# ls  rhel-source.repo  [root@localhost yum.repos.d]# cp rhel-source.repo iso.repo    [root@localhost yum.repos.d]# cat iso.repo   [rhel-iso]  name=Red Hat Enterprise Linux $releasever - $basearch - Source  baseurl=file:///iso  enabled=1  gpgcheck=0  gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release    [root@localhost yum.repos.d]# yum install vim man -y    #mount後重啟失效,要想永久生效,添加此句話  [root@localhost yum.repos.d]# echo "mount /dev/cdrom /iso" >> /etc/rc.local   [root@localhost yum.repos.d]# cat /etc/rc.local   #!/bin/sh  #  # This script will be executed *after* all the other init scripts.  # You can put your own initialization stuff in here if you don't  # want to do the full Sys V style init stuff.    touch /var/lock/subsys/local  mount /dev/cdrom /iso           5.其他可以自行配置,比如啟用中文IME、修改終端字型和顏色等等 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.