centos7安装

centos下载地址:

http://mirrors.aliyun.com/centos/7.9.2009/isos/x86_64/CentOS-7-x86_64-DVD-2009.iso
更多版本查看:https://mirrors.aliyun.com/centos/或者百度搜索阿里云镜像站

Linux学习地址

http://v.xue.taobao.com/learn.htm?itemId=547318824992

1. 选择第一项

image.png

2. 选择English

image.png

3. 选择时区选择在地图上选择上海

image.png

image.png

4. 选择软件安装模块,选择server gui和development tools

image.png

image.png

5. 选择分区,默认

image.png

6. kdump是一种安全机制,虚拟机先不启用

kdump是在系统崩溃、死锁或者死机的时候用来转储内存运行参数的一个工具和服务
不需要分析内核崩溃原因的话,不用开启,需要的时候再开启也可以


7 选择网卡配置

image.png

image.png

8 点击begininstallkai开始安装

9 设置root用户密码为root

image.png

10 添加用户solegend 密码为solegend

image.png

11 安装完成点击重启

image.png

12 点击licence接受协议

13 点击finish

image.png

14 系统安装成功

image.png

15 卸载home 扩大root空间

centos7默认的root大小为50G,也就是说如果硬件分配时超过50G,大部分剩余空间都会分配给home。所以应该将home得空间分配给根目录

  • 修改fstab,centos启动时会对/etc/fstab的内容逐一检测,由于fstab默认有/home,如果不修改fstab,重启之后会发现centos宕机。
# 编辑fstab
vi /etc/fstab

##将一下内容注释
#/dev/mapper/centos-home /home                   xfs     defaults        0 0
  • 卸载home文件系统
##卸载
umount /home

##如果提示无法卸载,是因为有进程占用/home
##先安装psmisc
yum install -y psmisc
##可以用psmisc命令来停止占用的进程,执行
fuser -km /home/

##删除/home所在的lv 
lvremove /dev/mapper/centos-home
  • 扩展根目录
##扩展/所在的lv(以下是一块硬盘为2T时分配得空间)
lvextend -L +1993G /dev/mapper/centos-root

##扩展/文件系统 
xfs_growfs /dev/mapper/centos-root

##检查root文件系统的空间 
df -h

修改主机名称

hostnamectl set-hostname sansoftnexus

16 VritualBox中添加磁盘

  1. Virtualbox 菜单栏-> 设置-> 存储-> SATA控制器 -> 右击,选择“添加虚拟硬盘”
  2. 检查现在磁盘空间


    image.png
  3. 开始分区挂载
[root@leonarding1~]# fdisk /dev/sdb          sdb磁盘分区,有很多选项,我们选择m帮助信息
Device containsneither a valid DOS partition table, nor Sun, SGI or OSF disklabel
Building a new DOSdisklabel. Changes will remain in memory only,
until you decideto write them. After that, of course, the previous
content won't be recoverable.
 
The number ofcylinders for this disk is set to 2610.
There is nothingwrong with that, but this is larger than 1024,
and could incertain setups cause problems with:
1) software thatruns at boot time (e.g., old versions of LILO)
2) booting andpartitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)
Warning: invalidflag 0x0000 of partition table 4 will be corrected by w(rite)
 
Command (m forhelp): m                 选择m即可看到帮助信息
Command action
   a  toggle a bootable flag
   b  edit bsd disklabel
   c  toggle the dos compatibility flag
   d  delete a partition
   l  list known partition types
   m  print this menu
  n   add a new partition               创建一个新分区
   o  create a new empty DOS partition table
   p  print the partition table
   q  quit without saving changes
   s  create a new empty Sun disklabel
   t  change a partition's system id
   u  change display/entry units
   v  verify the partition table
   w  write table to disk and exit
   x  extra functionality (experts only)
 
Command (m forhelp): n                 创建一个新分区
Command action
   e  extended
   p  primary partition (1-4)
p                              选择p添加主分区
Partition number(1-4): 1           选择主分区编号为1,这样创建后的主分区为sdb1
First cylinder(1-2610, default 1):       选择格式化分区从第几个柱面开始
Using defaultvalue 1              直接“回车”默认从第1个柱面开始
Last cylinder or+size or +sizeM or +sizeK (1-2610, default 2610): 选择格式化分区从第几个柱面结束
Using defaultvalue 2610            直接“回车”默认从最后1个柱面结束
我们把所有20GB空间都格式化为一个分区了,如果有朋友想划分多个分区,如下方法
Last cylinder or+size or +sizeM or +sizeK (1-2610, default 2610): 以MB为单位输入自己想要的大小即可
这样我们就创建完一个分区,如果要创建更多分区可以照上面的步骤继续创建。
Command (m forhelp): w           键入w,保存设置并退出,完成新磁盘分区表创建
The partitiontable has been altered!
Calling ioctl() tore-read partition table.
Syncing disks.
[root@leonarding1~]# fdisk –l         我们在看一下系统磁盘空间分配情况
Disk /dev/sda:21.4 GB, 21474836480 bytes
255 heads, 63sectors/track, 2610 cylinders
Units = cylindersof 16065 * 512 = 8225280 bytes
   Device Boot     Start       End     Blocks  Id  System
/dev/sda1   *        1        13     104391  83  Linux
/dev/sda2           14       2610   20860402+  8e  Linux LVM
 
Disk/dev/sdb: 21.4 GB, 21474836480 bytes    这时我们可以看到新磁盘已经加入分区表了
255heads, 63 sectors/track, 2610 cylinders
Units =cylinders of 16065 * 512 = 8225280 bytes
   Device Boot     Start       End     Blocks  Id  System
/dev/sdb1           1       2610   20964793+  83  Linux
下面我们给新磁盘的/dev/sdb1分区进行格式化操作
[root@leonarding1~]# mkfs -t ext4 /dev/sdb1   用ext4格式对/dev/sdb1分区进行格式化
mke4fs 1.41.12(17-May-2010)
Filesystem label=
OS type: Linux                     操作系统类型Linux
Block size=4096(log=2)                操作系统块大小4k
Fragment size=4096(log=2)
Stride=0 blocks,Stripe width=0 blocks
1310720 inodes,5241198 blocks
262059 blocks(5.00%) reserved for the super user
First data block=0
Maximum filesystemblocks=4294967296
160 block groups
32768 blocks pergroup, 32768 fragments per group
8192 inodes pergroup
Superblock backupsstored on blocks:
       32768, 98304, 163840, 229376, 294912,819200, 884736, 1605632, 2654208,
       4096000
 
Writing inodetables: done                   
Creating journal(32768 blocks): done
Writingsuperblocks and filesystem accounting information: done
 
This filesystemwill be automatically checked every 35 mounts or
180 days,whichever comes first.  Use tune4fs -c or-i to override.
到此我们的新分区格式化完毕,下面我们就要挂载上分区就可以使用啦!
[root@leonarding1~]# df –h           这是我们还没有挂载新分区之前的挂载点分布
Filesystem         Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                 17G   15G 1.6G  90% /
/dev/sda1           99M   23M  71M  25% /boot
tmpfs             731M  320M 411M  44% /dev/shm
/dev/sr0           55M   55M    0 100% /media/VBOXADDITIONS_4.2.6_82870
 
[root@leonarding1/]# mkdir /u02    在根目录上创建一个新的挂载目录/u02
[root@leonarding1/]# mount /dev/sdb1 /u02   将新磁盘分区挂载到/u02目录下
[root@leonarding1/]# df –h           这是我们挂载新分区之后的挂载点分布
Filesystem         Size  Used Avail Use% Mounted on
/dev/mapper/VolGroup00-LogVol00
                 17G   15G 1.6G  90% /
/dev/sda1           99M   23M  71M  25% /boot
tmpfs             731M  320M 411M  44% /dev/shm
/dev/sr0           55M   55M    0 100% /media/VBOXADDITIONS_4.2.6_82870
/dev/sdb1           20G  172M  19G   1% /u02
现在我们可以正常使用新添加的磁盘空间了
[root@leonarding1/]# cd /u02
[root@leonarding1u02]# mkdir app           创建一个app目录试试
[root@leonarding1u02]# ll
total 20
drwxr-xr-x 2 rootroot  4096 Apr 14 09:12 app     ok成功创建木有问题
drwx------ 2 rootroot 16384 Apr 14 08:59 lost+found
到此Virtualbox中Linux添加一个新磁盘->创建分区->格式化->挂载分区系列操作完毕
Virtualbox 添加磁盘创建分区  格式化  挂载分区
开机自动挂载新磁盘分区/dev/sdb1
[root@leonarding1 /]# vim /etc/fstab            修改文件,在文件最后新增一行
/dev/VolGroup00/LogVol00 /                 ext3    defaults       1 1
LABEL=/boot          /boot              ext3    defaults       1 2
tmpfs              /dev/shm            tmpfs   defaults       0 0
devpts             /dev/pts            devpts  gid=5,mode=620  0 0
sysfs              /sys               sysfs   defaults       0 0
proc               /proc              proc    defaults       0 0
/dev/VolGroup00/LogVol01 swap               swap    defaults       0 0
/dev/sdb1           /u02               ext4     defaults       0 0
这样在重启系统后就会自动挂载到/u02目录上

你可能感兴趣的:(centos7安装)