centos6超20TB磁盘的分区格式化的示例代码

一、服务器环境配置:

1、检查磁盘分区:

近期项目有个服务从虚拟机迁移到物理机,服务磁盘用户自己做了raid为3.8TB 2块磁盘配置 Raid1然后又3.8TB 6块磁盘配置了Raid5,安装操作系统使用的sda 3.8TB空间的raid1已分区。3.8TB*6的磁盘sdb共20TB的空间需要分区,并挂载给系统做存储使用。步骤如下:

1.1查询确认sdb状态:

# fdisk -l
WARNING: GPT (GUID Partition Table) detected on '/dev/sda'! The util fdisk doesn't support GPT. Use GNU Parted.
Disk /dev/sda: 4000.2 GB, 4000225165312 bytes
255 heads, 63 sectors/track, 486333 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

  Device Boot   Start     End   Blocks  Id System
/dev/sda1        1   267350 2147483647+ ee GPT
Partition 1 does not start on physical sector boundary.
WARNING: GPT (GUID Partition Table) detected on '/dev/sdb'! The util fdisk doesn't support GPT. Use GNU Parted
Disk /dev/sdb: 20001.1 GB, 20001125826560 bytes
255 heads, 63 sectors/track, 2431665 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

  Device Boot   Start     End   Blocks  Id System
/dev/sdb1        1   267350 2147483647+ ee GPT
Partition 1 does not start on physical sector boundary.

Disk /dev/mapper/VolGroup-LogVol00: 2531.7 GB, 2531690283008 bytes
255 heads, 63 sectors/track, 307793 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

Disk /dev/mapper/VolGroup-LogVol01: 1468.0 GB, 1468006400000 bytes
255 heads, 63 sectors/track, 178474 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

1.2、sdb磁盘分区:

# parted /dev/sdb
GNU Parted 2.1
使用 /dev/sdb
Welcome to GNU Parted! Type 'help' to view a list of commands.
(parted) print    #查看当前分区
Model: LSI MRSASRoMB-8i (scsi)
Disk /dev/sdb: 20.0TB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start End Size File system Name 标志

(parted) mkpart primary 0% 100%    #将磁盘所有空间分为一个区
(parted) print      #再次查询磁盘分区
Model: LSI MRSASRoMB-8i (scsi)
Disk /dev/sdb: 20.0TB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt

Number Start  End   Size  File system Name   标志
 1   1049kB 20.0TB 20.0TB        primary
(parted) quit
信息: You may need to update /etc/fstab.

1.3、正确格式化的方法:

a、使用mkfs命令(如下)格式化是无法格式化的,检查为mkfs.ext4无法格式化16TB以上的分区,原因为Centos6.10 e2fsprogs版本为1.41.12,需升级为1.42版本

mkfs.ext4 /dev/sdb1     #无法如此格式化

b、升级e2fsprogs版本:

tar zvxf e2fsprogs-1.42.10.tar.gz
cd e2fsprogs-1.42.10
mkdir build
cd build/
../configure
make
make install  ##如有“忽略”错误正常。

c、查询需要分区的扇区大小

# df -h
Disk /dev/sdb: 20001.1 GB, 20001125826560 bytes
255 heads, 63 sectors/track, 2431665 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk identifier: 0x00000000

  Device Boot   Start     End   Blocks  Id System
/dev/sdb1        1   267350 2147483647+ ee GPT
Partition 1 does not start on physical sector boundary.

d、对磁盘重新格式化命令如下:

# mke2fs -O 64bit,has_journal,extents,huge_file,flex_bg,uninit_bg,dir_nlink,extra_isize -i 267350 /dev/sdb1
mke2fs 1.42.10 (18-May-2014)

Warning: the fs_type huge is not defined in mke2fs.conf

Creating filesystem with 4883086848 4k blocks and 76298240 inodes
Filesystem UUID: 74dabc93-177b-4531-aab9-e55a1e2efe9d
Superblock backups stored on blocks:
  32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,
  4096000, 7962624, 11239424, 20480000, 23887872, 71663616, 78675968,
  102400000, 214990848, 512000000, 550731776, 644972544, 1934917632,
  2560000000, 3855122432

Allocating group tables: 完成
正在写入inode表: 完成
Creating journal (32768 blocks): 完成
Writing superblocks and filesystem accounting information: 完成    

This filesystem will be automatically checked every 34 mounts or      ##提示180天问题
180 days, whichever comes first. Use tune2fs -c or -i to override.

e、解决180天问题

# tune2fs -i 3650d /dev/sdb1
tune2fs 1.42.10 (18-May-2014)
Setting interval between checks to 315360000 seconds

#确认时间正确
# tune2fs -l /dev/sdb1
tune2fs 1.42.10 (18-May-2014)
Filesystem volume name:  <none>
Last mounted on:     <not available>
Filesystem UUID:     74dabc93-177b-4531-aab9-e55a1e2efe9d
Filesystem magic number: 0xEF53
Filesystem revision #:  1 (dynamic)
Filesystem features:   has_journal ext_attr dir_index filetype extent 64bit flex_bg sparse_super huge_file uninit_bg dir_nlink extra_isize
Filesystem flags:     signed_directory_hash
Default mount options:  user_xattr acl
Filesystem state:     clean
Errors behavior:     Continue
Filesystem OS type:    Linux
Inode count:       76298240
Block count:       4883086848
Reserved block count:   244154342
Free blocks:       4877929145
Free inodes:       76298229
First block:       0
Block size:        4096
Fragment size:      4096
Group descriptor size:  64
Blocks per group:     32768
Fragments per group:   32768
Inodes per group:     512
Inode blocks per group:  32
Flex block group size:  16
Filesystem created:    Fri Jun 5 17:08:54 2020
Last mount time:     Fri Jun 5 17:14:34 2020
Last write time:     Fri Jun 5 17:15:58 2020
Mount count:       1
Maximum mount count:   34
Last checked:       Fri Jun 5 17:08:54 2020           ##开始时间
Check interval:      315360000 (121 months, 2 weeks, 6 days)
Next check after:     Mon Jun 3 17:08:54 2030           ##最终时间
Lifetime writes:     349 MB
Reserved blocks uid:   0 (user root)
Reserved blocks gid:   0 (group root)
First inode:       11
Inode size:      256
Required extra isize:   28
Desired extra isize:   28
Journal inode:      8
Default directory hash:  half_md4
Directory Hash Seed:   0f4e7ee0-4aec-41cf-b81a-7d5a4ed045c4
Journal backup:      inode blocks

1.4、挂载磁盘:

a、挂载磁盘

# cd /
# mkdir data
# mount /dev/sdb1 /data
# df -Th
Filesystem      Type  Size Used Avail Use% Mounted on
/dev/mapper/VolGroup-LogVol00
           ext4  2.3T  12G 2.2T  1% /
tmpfs        tmpfs  32G 144K  32G  1% /dev/shm
/dev/sda1      ext4  477M  41M 412M  9% /boot
/dev/mapper/VolGroup-LogVol01
           ext4  1.4T  70M 1.3T  1% /home
/dev/sdb1      ext4  19T  20K  18T  1% /data

b、设置开机挂载

在文件尾部增加一行如下内容,需注意实际的文件路径。

vim /etc/fstab

/dev/sdb1        /data          ext4  defaults    0 0

到此这篇关于centos6超20TB磁盘的分区格式化的示例代码的文章就介绍到这了,更多相关centos6磁盘分区格式化内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • 怎样给centos系统扩展磁盘分区的实现方法

    问题/故障/场景/需求 eve-ng的虚拟机ova的硬盘只有38G,需要增加空间,在vmware直接扩展硬盘后,重启系统,使用fdisk -l可以看到硬盘扩大了,但文件系统并没有扩大,还需要将这些新增的空间扩展分配到某个文件系统才行.下面记录了整个扩展过程 解决方法/步骤 在VM里扩大磁盘到250G重启系统后,查看当前的文件系统的情况 root@eve-ng:~# df -h Filesystem Size Used Avail Use% Mounted on udev 7.9G 0 7.9G

  • centos6超20TB磁盘的分区格式化的示例代码

    一.服务器环境配置: 1.检查磁盘分区: 近期项目有个服务从虚拟机迁移到物理机,服务磁盘用户自己做了raid为3.8TB 2块磁盘配置 Raid1然后又3.8TB 6块磁盘配置了Raid5,安装操作系统使用的sda 3.8TB空间的raid1已分区.3.8TB*6的磁盘sdb共20TB的空间需要分区,并挂载给系统做存储使用.步骤如下: 1.1查询确认sdb状态: # fdisk -l WARNING: GPT (GUID Partition Table) detected on '/dev/sd

  • python实现excel公式格式化的示例代码

    之前跟一些小伙伴有个讨论: 大概就是很多跟数据打交道的朋友都面对过很复杂的excel公式,有时嵌套层数特别多,肉眼观看很容易蒙圈. 有了这样的需求,我就有了解决问题的想法,说干就干,于是一个比较牛逼的excel公式格式化的工具就出现了. 效果体验 先看看效果吧: =IF(C11>100%*C4,IF(C11<=200%*C4,C11*50%-C4*15%,C11*60%-C4*35%),IF(C11<=C4*50%,C11*30%,C11*40%-C4*5%)) 的格式化结果是: =IF

  • php自定义的格式化时间示例代码

    如:时间刚好是5分钟前,则对应的时间戳就会被格式化为5分钟前,不多说了,直接贴上代码: 复制代码 代码如下: /** * 格式化时间 * @param integer $timestamp 时间戳 * @param string $format dt=日期时间 d=日期 t=时间 u=个性化 其他=自定义 * @param integer $timeoffset 时区值 * @param string $custom_format 自定义时间格式 * @return string */ publ

  • Android 国际货币格式化的示例代码

    简评:今天介绍下 Android 中国际货币格式化的一个小小知识点. 目前为止,货币格式化最简单的方式是调用 NumberFormat.getCurrencyInstance() 获得 NumberFormat 实例来把数字格式化为货币格式的字符串(当然也可以把字符串转换成数字).可以根据当前设备的位置来获取 java.util.Currency 实例再以此进行货币的格式化. 但如果我们的应用只接受特定的几种货币,那这种随着用户设备位置而修改货币格式就不是一个好的做法. 你可能会说「这简单啊,那

  • Linux分区格式化的命令

    当硬盘分区完成后,需要对分区进行格式化. 使用mkfs工具对硬盘分区进行格式化,支持MBR和GPT两种分区表. 命令1:格式化sdb1分区为ext3格式 mkfs.ext3 /dev/sdb1 mke2fs 1.41.12 (17-May-2010) 文件系统标签= 操作系统:Linux 块大小=4096 (log=2) 分块大小=4096 (log=2) Stride=0 blocks, Stripe width=0 blocks 131072 inodes, 524288 blocks 26

  • php格式化json函数示例代码

    本文讲述了php格式化json函数的示例代码.分享给大家供大家参考,具体如下: <?php $arr = array("ret"=>0,"data"=>array('a' => 1, 'b' => '2', 'c' => 3, 'd' => 4, 'e' => 5)); $json = json_encode($arr); /** * Formats a JSON string for pretty printing

  • java 数值类型分秒时间格式化的实例代码

    java 数值类型分秒时间格式化的实例代码 java 实例代码: import java.util.concurrent.TimeUnit; public class DateUtils { private static final String[] UNIT_DESC = new String[]{"天", "小时", "分钟", "秒"}; /** * 格式化持续时间<br/> * 将持续时间,格式化为 xx天

  • Go 字符串格式化的实例代码详解

    Go对字符串格式化提供了良好的支持.下面我们看些常用的字符串格式化的例子. package main import "fmt" import "os" type point struct { x, y int } func main() { // Go提供了几种打印格式,用来格式化一般的Go值,例如 // 下面的%v打印了一个point结构体的对象的值 p := point{1, 2} fmt.Printf("%v\n", p) // 如果所格式

  • python 字符串格式化的示例

    一.旧式的字符串格式化 % 操作符 参考以下示例: >>> name = "Eric" >>> "Hello, %s." % name 'Hello, Eric.' 当有多个变量需要插入到字符串中时: >>> name = "Eric" >>> age = 74 >>> "Hello, %s. You are %s." % (name,

  • C/C++ 监控磁盘与目录操作的示例

    遍历磁盘容量: #include <stdio.h> #include <Windows.h> void GetDrivesType(const char* lpRootPathName) { UINT uDriverType = GetDriveType(lpRootPathName); switch (uDriverType) { case DRIVE_UNKNOWN:puts("未知磁盘"); break; case DRIVE_NO_ROOT_DIR:

随机推荐