Linux CentOS 7 磁盘格式化mke2fs、mkfs.ext4、磁盘挂载及手动增加swap空间

一、 磁盘格式化

查看系统支持的分区类型: cat /etc/filesystems

[[email protected] ~]# cat /etc/filesystems 
xfs
ext4
ext3
ext2
nodev 
procnodev 
devpts
iso9660
vfat
hfs
hfsplus*
[[email protected] ~]# mountsysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)devtmpfs on /dev type devtmpfs (rw,nosuid,size=244792k,nr_inodes=61198,mode=755)securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_prio,net_cls)cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpuacct,cpu)cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)configfs on /sys/kernel/config type configfs (rw,relatime)/dev/sda3 on / type xfs (rw,relatime,attr2,inode64,noquota)systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=29,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)mqueue on /dev/mqueue type mqueue (rw,relatime)debugfs on /sys/kernel/debug type debugfs (rw,relatime)hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)/dev/sda1 on /boot type xfs (rw,relatime,attr2,inode64,noquota)tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=50748k,mode=700)/dev/sdb4 on /mnt type ext4 (rw,relatime,data=ordered)
[[email protected] ~]#

/ /boot 都是xfs文件系统

centos 7 xfs

centos 6 ext4

centos 5 ext3

格式化命令mke2fs

mke2fs -t xfs -b 2048 /dev/sdb1

格式化/dev/sdb1 类型为xfs 块大小2048

[[email protected] ~]# mke2fs -t ext4 -b 2048  /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)Filesystem label=OS type: LinuxBlock size=2048 (log=1)Fragment size=2048 (log=1)Stride=0 blocks, Stripe width=0 blocks305152 inodes, 2440704 blocks122035 blocks (5.00%) reserved for the super userFirst data block=0Maximum filesystem blocks=271056896149 block groups16384 blocks per group, 16384 fragments per group2048 inodes per groupSuperblock backups stored on blocks: 
	16384, 49152, 81920, 114688, 147456, 409600, 442368, 802816, 
1327104, 	2048000Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): doneWriting superblocks and filesystem accounting information: done   

[[email protected] ~]#

mkfs.ext4 /dev/sdb1

[[email protected] ~]# mkfs.ext4 /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)Filesystem label=OS type: LinuxBlock size=4096 (log=2)Fragment size=4096 (log=2)Stride=0 blocks, Stripe width=0 blocks305216 inodes, 1220352 blocks61017 blocks (5.00%) reserved for the super userFirst data block=0Maximum filesystem blocks=124990259238 block groups32768 blocks per group, 32768 fragments per group8032 inodes per groupSuperblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736Allocating group tables: done                            
Writing inode tables: done                            
Creating journal (32768 blocks): doneWriting superblocks and filesystem accounting information: done 

[[email protected] ~]#

blkid 查看没有挂载的分区UUID

[[email protected] ~]# blkid
/dev/sda1: UUID="e5344a19-9eec-459c-aa92-91dcb45bcb3e" TYPE="xfs" 
/dev/sda2: UUID="d2ed2e32-6864-483b-8626-2faa42e9a598" TYPE="swap" 
/dev/sda3: UUID="ed89722c-3249-4d7d-8d6f-c22416c9267b" TYPE="xfs" 
/dev/sdb1: UUID="91ab28a1-037e-4aea-8e3c-d9f408b5464c" TYPE="ext4" PARTLABEL="p1" PARTUUID="da815dbc-0437-431d-a2ab-22182868d970" 
/dev/sdb2: UUID="6cffe72d-a56e-4af6-aeeb-c3ce1aae8330" TYPE="ext4" PARTLABEL="p2" PARTUUID="d51c97c1-263b-406b-ad18-032967f302a1" 
/dev/sr0: UUID="2017-01-27-21-18-30-00" LABEL="CentOS 7 i686" TYPE="iso9660" 
/dev/sdb3: UUID="0f1a0771-561d-4882-88c7-71ea3700e64c" TYPE="ext4" PARTLABEL="p3" PARTUUID="24efcacf-98b8-444f-9680-47c24c556fc7" 
/dev/sdb4: UUID="7306780c-2706-4a34-922e-222fbb740b3e" TYPE="ext4" PARTLABEL="p4" PARTUUID="f30ed796-ed62-47ed-ae0d-aebe25b24703" 
[[email protected] ~]#

预留磁盘空间改为1%

blocks reserved for the super user

[[email protected] ~]# mke2fs -m 1 /dev/sdb1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks305216 inodes, 1220352 blocks12203 blocks (1.00%) reserved for the super user
First data block=0Maximum filesystem blocks=124990259238 block groups32768 blocks per group, 32768 fragments per group8032 inodes per group
Superblock backups stored on blocks: 
	32768, 98304, 163840, 229376, 294912, 819200, 884736Allocating group tables: done                            
Writing inode tables: done                            
Writing superblocks and filesystem accounting information: done

多少字节对应一个inode

默认大概1:4的关系:

305216 inodes, 1220352 blocks

mke2fs -i 8192 -t ext4 /dev/sdb1

610432 inodes, 1220352 blocks

mkfs.xfs -f /dev/sdb2

[[email protected] ~]# blkid 
/dev/sda1: UUID="e5344a19-9eec-459c-aa92-91dcb45bcb3e" TYPE="xfs" 
/dev/sda2: UUID="d2ed2e32-6864-483b-8626-2faa42e9a598" TYPE="swap" 
/dev/sda3: UUID="ed89722c-3249-4d7d-8d6f-c22416c9267b" TYPE="xfs" 
/dev/sdb1: UUID="13eb97d6-fd9a-4205-b8a3-026f63a5fb55" TYPE="xfs" PARTLABEL="p1" PARTUUID="da815dbc-0437-431d-a2ab-22182868d970" 
/dev/sdb2: UUID="5601594d-ef23-4532-b275-1add4c5e0649" TYPE="xfs" PARTLABEL="p2" PARTUUID="d51c97c1-263b-406b-ad18-032967f302a1"
/dev/sr0: UUID="2017-01-27-21-18-30-00" LABEL="CentOS 7 i686" TYPE="iso9660" 
/dev/sdb3: UUID="0f1a0771-561d-4882-88c7-71ea3700e64c" TYPE="ext4" PARTLABEL="p3" PARTUUID="24efcacf-98b8-444f-9680-47c24c556fc7" 
/dev/sdb4: UUID="7306780c-2706-4a34-922e-222fbb740b3e" TYPE="ext4" PARTLABEL="p4" PARTUUID="f30ed796-ed62-47ed-ae0d-aebe25b24703"

du -sb 可查看原大小

二、 磁盘挂载

mount /dev/sdb4 /mnt

df -h

[[email protected] ~]# mount /dev/sdb2 /opt
[[email protected] ~]# mount
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)devtmpfs on /dev type devtmpfs (rw,nosuid,size=244792k,nr_inodes=61198,mode=755)securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=620,ptmxmode=000)tmpfs on /run type tmpfs (rw,nosuid,nodev,mode=755)tmpfs on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755)cgroup on /sys/fs/cgroup/systemd type cgroup (rw,nosuid,nodev,noexec,relatime,xattr,release_agent=/usr/lib/systemd/systemd-cgroups-agent,name=systemd)pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)cgroup on /sys/fs/cgroup/freezer type cgroup (rw,nosuid,nodev,noexec,relatime,freezer)cgroup on /sys/fs/cgroup/memory type cgroup (rw,nosuid,nodev,noexec,relatime,memory)cgroup on /sys/fs/cgroup/pids type cgroup (rw,nosuid,nodev,noexec,relatime,pids)cgroup on /sys/fs/cgroup/perf_event type cgroup (rw,nosuid,nodev,noexec,relatime,perf_event)cgroup on /sys/fs/cgroup/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset)cgroup on /sys/fs/cgroup/net_cls,net_prio type cgroup (rw,nosuid,nodev,noexec,relatime,net_prio,net_cls)cgroup on /sys/fs/cgroup/cpu,cpuacct type cgroup (rw,nosuid,nodev,noexec,relatime,cpuacct,cpu)cgroup on /sys/fs/cgroup/devices type cgroup (rw,nosuid,nodev,noexec,relatime,devices)cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)cgroup on /sys/fs/cgroup/hugetlb type cgroup (rw,nosuid,nodev,noexec,relatime,hugetlb)configfs on /sys/kernel/config type configfs (rw,relatime)/dev/sda3 on / type xfs (rw,relatime,attr2,inode64,noquota)systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=29,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)mqueue on /dev/mqueue type mqueue (rw,relatime)debugfs on /sys/kernel/debug type debugfs (rw,relatime)hugetlbfs on /dev/hugepages type hugetlbfs (rw,relatime)/dev/sda1 on /boot type xfs (rw,relatime,attr2,inode64,noquota)tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=50748k,mode=700)/dev/sdb4 on /mnt type ext4 (rw,relatime,data=ordered)/dev/sdb2 on /opt type xfs (rw,relatime,attr2,inode64,noquota)
[[email protected] ~]#
[[email protected] opt]# mount /dev/sdb2 /opt
[[email protected] opt]# ls
[[email protected] opt]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda3        28G  960M   27G   4% /
devtmpfs        240M     0  240M   0% /dev
tmpfs           248M     0  248M   0% /dev/shm
tmpfs           248M  4.6M  244M   2% /run
tmpfs           248M     0  248M   0% /sys/fs/cgroup
/dev/sda1       197M  105M   93M  54% /boot
tmpfs            50M     0   50M   0% /run/user/0/dev/sdb4        11G   41M  9.9G   1% /mnt
/dev/sdb2       2.8G   33M  2.8G   2% /opt
[[email protected] opt]# umount /dev/sdb2
[[email protected] opt]# df -hFilesystem      Size  Used Avail Use% Mounted on
/dev/sda3        28G  960M   27G   4% /
devtmpfs        240M     0  240M   0% /dev
tmpfs           248M     0  248M   0% /dev/shm
tmpfs           248M  4.6M  244M   2% /run
tmpfs           248M     0  248M   0% /sys/fs/cgroup
/dev/sda1       197M  105M   93M  54% /boot
tmpfs            50M     0   50M   0% /run/user/0/dev/sdb4        11G   41M  9.9G   1% /mnt
[[email protected] opt]

mount -o ro

默认选项:

defaults              Use default options: rw, suid, dev, exec, auto, nouser, and async.

              Note that the real set of the all default mount options depends on kernel and filesystem              type. See the begin of this section for more details.
remount
              Attempt to remount an already-mounted filesystem.  This is commonly used to  change  the
              mount flags for a filesystem, especially to make a readonly filesystem writable. It does              not change device or mount point.

              The remount functionality follows the standard way how  the  mount  command  works  with
              options  from fstab. It means the mount command doesn‘t read fstab (or mtab) only when a
              device and dir are fully specified.

              mount -o remount,rw /dev/foo /dir

              After this call all old mount options are replaced and arbitrary  stuff  from  fstab  is
              ignored,  except  the  loop=  option which is internally generated and maintained by the
              mount command.

              mount -o remount,rw  /dir

              After this call mount reads fstab (or mtab) and merges these options with  options  from
              command line ( -o ).

分区挂载配置文件fstab

/etc/fstab

配置文件中六列代表意思:

第一列:挂载的磁盘

第二列:挂载的位置

第三列:挂载磁盘的分区类型

第四列:挂载时的选项

第五列:能否被dump备份命令作用:dump是一个用来作为备份的命令。通常这个参 数的值为0或者1

  • 0:代表不要做dump备份
  • 1:代表要每天进行dump的操作
  • 2:代表不定日期的进行dump操作

第六列:是否检验扇区:开机的过程中,系统默认会以fsck检验我们系统是否为完整(clean)。

  • 0:不要检验
  • 1:最早检验(一般根目录会选择)
  • 2:1级别检验完成之后进行检验-
## /etc/fstab# Created by anaconda on Tue Aug  1 06:43:54 2017## Accessible filesystems, by reference, are maintained under ‘/dev/disk‘# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#UUID=ed89722c-3249-4d7d-8d6f-c22416c9267b /                       xfs     defaults        0 0UUID=e5344a19-9eec-459c-aa92-91dcb45bcb3e /boot                   xfs     defaults        0 0UUID=d2ed2e32-6864-483b-8626-2faa42e9a598 swap                    swap    defaults        0 0
## /etc/fstab# Created by anaconda on Tue Aug  1 06:43:54 2017## Accessible filesystems, by reference, are maintained under ‘/dev/disk‘# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#UUID=ed89722c-3249-4d7d-8d6f-c22416c9267b /                       xfs     defaults        0 0UUID=e5344a19-9eec-459c-aa92-91dcb45bcb3e /boot                   xfs     defaults        0 0UUID=d2ed2e32-6864-483b-8626-2faa42e9a598 swap                    swap    defaults        0 0/dev/sdb2                                 /opt                    xfs     defaults        0 0

man mount man fstab

查看UUID 命令blkid

[[email protected] opt]# blkid  /dev/sdb4/dev/sdb4: UUID="7306780c-2706-4a34-922e-222fbb740b3e" TYPE="ext4" PARTLABEL="p4" PARTUUID="f30ed796-ed62-47ed-ae0d-aebe25b24703" 
[[email protected] opt]#

写入fstab

## /etc/fstab# Created by anaconda on Tue Aug  1 06:43:54 2017## Accessible filesystems, by reference, are maintained under ‘/dev/disk‘# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#
UUID=ed89722c-3249-4d7d-8d6f-c22416c9267b /                       xfs     defaults        0 0
UUID=e5344a19-9eec-459c-aa92-91dcb45bcb3e /boot                   xfs     defaults        0 0
UUID=d2ed2e32-6864-483b-8626-2faa42e9a598 swap                    swap    defaults        0 0
/dev/sdb2                                 /opt                    xfs     defaults        0 0
UUID=7306780c-2706-4a34-922e-222fbb740b3e     /mnt                     ext4    defaults        0 0

三、手动增加swap空间

当有需求要增加swap空间时,增加步骤如下 :

  • 1、dd if=/dev/zero of=/tmp/newdisk bs=1M count=100 生成100M磁盘
  • 2、chmod 600 /tmp/newdisk 修改磁盘文件权限
  • 3、mkswap -f /tmp/newdisk 格式化磁盘
  • 4、free -m 查看原swap 大小
  • 5、swapon /tmp/newdisk 挂载新磁盘到swap中
  • 6、free -m 再查看swap大小
  • 7、swapoff /tmp/newdisk 卸载新加swap
  • 8、free -m 最后看swap大小是否恢复
  • 9、rm -rf /tmp/newdisk 删除生成的磁盘文件
[[email protected] opt]# dd if=/dev/zero of=/tmp/newdisk bs=1M count=100
100+0 records in100+0 records out104857600 bytes (105 MB) copied, 3.73145 s, 28.1 MB/s
[[email protected] opt]# ll /tmp
total 102400-rw-r--r-- 1 root root 104857600 Aug 17 01:28 newdisk
[[email protected] opt]# ls -lh /tmp
total 100M
-rw-r--r-- 1 root root 100M Aug 17 01:28 newdisk
[[email protected] opt]# mkswap -f /tmp/newdisk 
Setting up swapspace version 1, size = 102396 KiB
no label, UUID=14cdc2cb-dc3c-4d7e-a486-deb1f7f3201c
[[email protected] opt]# free -m
              total        used        free      shared  buff/cache   available
Mem:            495          68         142           4         285         401Swap:          2047           0        2047
[[email protected] opt]# swapon /tmp/newdisk 
swapon: /tmp/newdisk: insecure permissions 0644, 0600 suggested.
[[email protected] opt]# free -m
              total        used        free      shared  buff/cache   available
Mem:            495          68         142           4         285         401Swap:          2147           0        2147
[[email protected] opt]# chmod 600 /tmp/newdisk
 [[email protected] opt]# 
 [[email protected] opt]# swapoff /tmp/newdisk 
 [[email protected] opt]# free -m
              total        used        free      shared  buff/cache   available
Mem:            495          68         142           4         285         401Swap:          2047           0        2047
[[email protected] opt]#  rm -rf /tmp/newdisk 
[[email protected] opt]#
时间: 2024-10-27 07:16:35

Linux CentOS 7 磁盘格式化mke2fs、mkfs.ext4、磁盘挂载及手动增加swap空间的相关文章

Linux centosVMware 磁盘格式化、磁盘挂载、手动增加swap空间

一.磁盘格式化 磁盘分区后不能直接使用,需要对每一个分区格式化,格式化其实就是安装系统文件. 命令mke2fs:不支持格式化成xfs系统文件  mkfs.ext4 == mke2fs -t ext4  两个命令相等 -b :表示分区时设定每个数据区块占用的空间大小 -i :表示设定inode的大小 - N:表示设定inode的数据 -c:表示在格式化前先检测下磁盘是否有问题 -L:表示预设该分区的标签 -t:用来指定文件系统的类型 [[email protected] ~]# fdisk -l

linux磁盘格式化、磁盘挂载、手动增加swap空间

磁盘格式化: 查看文件系统格式,centos7的文件系统格式默认xfs(centos6以前都是ext版本格式按序排列) [[email protected] ~]# cat /etc/filesystems     //查看系统支持的文件系统格式 xfs ext4 ext3 ext2 nodev proc nodev devpts iso9660 vfat hfs hfsplus * mount 查看这个系统分区的文件类型格式 mke2fs  -t    指定密钥格式化成什么样的系统(但不支持x

磁盘格式化,磁盘挂载,手动增加swap空间

硬盘格式化 #cat /etc/filesystems @查看系统的格式类型 在之前的老版本系统: CentOS 6 使用 ext4:  CentOS 5 使用 ext3: CentOS 更老的版本使用 ext2:CentOS 7 使用 xfs 格式化磁盘: #mkfs.xfs -b 2048 -m 1 /dev/sdb1 @mkfs.xfs 使用xfs类型格式化硬盘 @-b 自定义块大小 @-m 自定义默认保留空间为1% #mke2fs -t ext4 /dev/sdb1  ==  #mkfs

2017-12-29 3周5次课 磁盘格式化、挂载、手动增加swap空间

4.5/4.6 磁盘格式化  ·linux支持的文件系统格式: [[email protected] ~]# cat /etc/filesystems xfs ext4 ext3 ext2 nodev proc nodev devpts iso9660 vfat hfs hfsplus * ·CentOS7 默认系统:xfs ·查看分区文件系统:mount [[email protected] ~]# mount ##在结果中,只需要关注/dev/开头的行,例如: /dev/sda1 on /b

磁盘格式化、磁盘挂载以及手动增加swap空间

磁盘格式化 cat /etc/filesystems:查看centos7操作系统所支持的文件系统类型. centos7默认的文件系统类型为xfs.早期版本使用的是ext文件系统,6使用的是ext4,5使用的是ext3,依此类推.可以使用mount命令来查看分区的挂载情况以及文件系统类型(只能查看到已经挂载的分区,没有挂载的分区可以使用blkid命令查看文件系统类型). mke2fs命令:格式化分区. 用法:mke2fs -t 文件系统 分区. 这个命令不能格式化为xfs文件系统,不支持,需要使用

26期20180615磁盘格式化挂载以及手动增加swap空间

6月15日任务 4.5/4.6 磁盘格式化4.7/4.8 磁盘挂载4.9 手动增加swap空间 磁盘格式化 分区后只有格式化后才可以使用 可以查看文件系统  cat /etc/filesystems 可以查看centos7支持的文件格式 centos7默认的是 xfs的文件格式 centos6默认的是ext4  格式化的命令是:  mke2fs  -t 指定文件系统类型 -b 指定块大小 fdisk -l 查看目前的分区 可以看到sdb已经分了一个区sdb1 格式化一下 但是遗憾的是mke2fs

Linux学习笔记(十五)磁盘格式化、磁盘挂载、手动增加swap空间

一.磁盘格式化 cat /etc/filesystems 查看系统支持的文件格式 mount 查看系统的文件格式可以看到根目录和.boot都是xfs 格式centos6使用的是ext4centos5使用的ext3之前是ext2 mke2fs-t指定文件格式 ext4 .ext3-b指定块大小,文件都比较大时,块可以大一点,比如视频.高清图片比较小时可以将块设置小一点,加快读取速度-m指定给root用户预留的空间大小,1就是1%,0.1就是0.1%-i指定多少字节占一个inode号 如果不指定-t

磁盘格式磁盘挂载,手动增加swap空间

[[email protected] ~]# cat /etc/filesystems    7.2所支持的格式 xfs                                                      默认的文件系统 ext4 ext3 ext2 nodev proc nodev devpts iso9660 vfat hfs hfsplus 格式化命令 mke2fs  -t   ext4    格式化你想要的格式     命令加格式 mke2fs  -t   ext4

磁盘格式化和挂在及手动增加swap空间

4.5/6 磁盘格式化 4.7/8 磁盘挂载 4.9 手动增加swap空间 4.5/6 磁盘格式化 在windows操作系统中,硬盘有fat32和ntfs等多种格式.在linux中同样如此.CentOS 6之前,主要是ext4.ext3和ext2等格式.在CentOS 7这个版本开始,默认的磁盘格式变成了xfs格式. [[email protected] ~]# cat /etc/filesystems #产看文件系统配置文件 xfs        #centos 7支持 ext4