小樱 发表于 2018/1/18 02:16

linux centos 6.9 64位系统图文安装教程 minimal版本怎么装

linux centos 6.9 64位系统图文安装教程 minimal版本怎么装

install system with basic video driver
选择安装到硬盘驱动器


to begin testing the media before installation press ok.
choose skip to skip the media test and start the installation.
选择skip跳过检测


what language would you like to use during the installation process?
系统语言我们选择简体中文


which model keyboard is attached to this computer?
这里选默认us直接回车OK


error peocessing drive:
this device may need to be reinitialized.
reinitializing will cause all data to be lost!
this action may also be applied to all other disks needing reinitialization.
错误的磁盘分区
你的磁盘需要重新初始化
初始化会丢失目前所有数据
你可以在下方选择初始化方案
因为是全新的服务器新硬盘没有数据,我们选择re-initialize all进行初始化磁盘


in which time zone are you located?
设置你的时区,在中国就默认UTC+8就是上海


pick a root password. you must type it twice to ensure you know it and not make a typing mistake.
设置系统的root管理员密码,请确认两边以防输入错误


installation requires partitioning of your hard drive. the default layout is suitable for most users. select what spaceto use and which drives to use as the install target.
提示你需要安装到哪,我们选择use entire space使用所有硬盘空间


the partitioning options you have selected will now be written to disk. any data on deleted or reformatted partitions will be lost.
提示是否开始,选择write changes to disk确认执行


等待ISO系统镜像内容拷贝到硬盘


开始安装请等待直到完成


congratulations, your centos installation is complete.
成功安装,回车重启系统


再次进入引导页面,选择boot from local drive从硬盘启动系统

经典熟悉的启动画面


输入root
与你的密码进行登陆服务器


输入ifup eth0来启用网卡
系统默认会通过dhcp来进行分配网络,确保你的路由器设备可以正常运转
输入ping www.baidu.com进行测试网络是否正常


此时,已经可以通过xshell等软件来进行远程ssh登陆服务器管理了

设置开机自动启用网卡
sed -i 's/ONBOOT=no/ONBOOT=yes/g' /etc/sysconfig/network-scripts/ifcfg-eth0

下方是系统优化
关闭selinux服务,更好的兼容运行服务器软件
setenforce 0 && sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
开机启动项优化
http://bbs.itzmx.com/thread-8000-1-1.html
解锁ulimit
http://bbs.itzmx.com/thread-8598-1-1.html
nf_conntrack优化,参考第一项即可
http://bbs.itzmx.com/thread-88435-1-1.html
其他内核参数优化自己想了
Linux centos如何修改系统时间为+8北京时区
https://bbs.itzmx.com/thread-8534-1-1.html


如果你需要关闭swap虚拟内存来降低磁盘io使用率,仅保留物理内存工作,方法如下
vi /etc/fstab
输入字符a进入编辑状态,修改如下,在最前方增加一个#符号,然后按下esc按钮,输入:wq保存退出
#/dev/mapper/VolGroup-lv_swap

此时,系统磁盘容量占用679M,如果你安装以下运行库,系统磁盘容量将会涨到994M占用。

可选安装一些系统必备软件运行库,当然如果你是服务器提供商模板制作者,可以仅仅安装wget下载工具运行库即可
yum -y install which file wget make automake gcc gcc-c++ quota unzip bzip2 gc gdb libjpeg-turbo libtiff libpng bind-utils
yum -y install epel-release
yum -y install nload iftop iotop htop lrzsz



此时可以输入shutdown -h 0
关闭服务器,并且弹出光驱并且重新开机,即可正常工作的服务器来了


教程中使用的系统镜像地址:https://mirrors.tuna.tsinghua.edu.cn/centos/6.9/isos/x86_64/CentOS-6.9-x86_64-minimal.iso
af4a1640c0c6f348c6c41f1ea9e192a2CentOS-6.9-x86_64-minimal.iso

linux系统查看历史ssh命令输入内容.bash_history文件 清空日志记录方法
https://bbs.itzmx.com/forum.php?mod=viewthread&tid=12224&fromuid=1
linux系统查看历史ssh登录内容 清空日志记录方法
https://bbs.itzmx.com/forum.php?mod=viewthread&tid=97223&fromuid=1
linux centos 7 vps云服务器修改/etc/hosts文件不起效果,重启后自动恢复原状导致域名解析失效
https://bbs.itzmx.com/forum.php?mod=viewthread&tid=102206&fromuid=1

页: [1]
查看完整版本: linux centos 6.9 64位系统图文安装教程 minimal版本怎么装