当前位置:首页 > 数码 >

新的硬盘没显示出来(加了硬盘没有显示出来)

来源:原点资讯(m.360kss.com)时间:2022-12-02 23:34:21作者:YD166手机阅读>>

查看磁盘分区信息

$ fdisk -l Disk /dev/sda: 32.2 GB, 32212254720 bytes 255 heads, 63 sectors/track, 3916 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x000c20c5 Device Boot Start End Blocks Id System /dev/sda1 * 1 64 512000 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 64 2611 20458496 8e Linux LVM Disk /dev/mapper/vg_centos6-lv_root: 18.8 GB, 18798870528 bytes 255 heads, 63 sectors/track, 2285 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000 Disk /dev/mapper/vg_centos6-lv_swap: 2147 MB, 2147483648 bytes 255 heads, 63 sectors/track, 261 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000创建新的分区

格式化未使用的磁盘空间

$ fdisk /dev/sda WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change display units to sectors (command 'u'). Command (m for help): n #添加新的分区 Command action e extended p primary partition (1-4) p #主分区 Partition number (1-4): 3 #分区号 First cylinder (2611-3916, default 2611): Using default value 2611 Last cylinder, cylinders or size{K,M,G} (2611-3916, default 3916): Using default value 3916 Command (m for help): t #格式化 Partition number (1-4): 3 #需要格式化的分区 Hex code (type L to list codes): 8e #分区格式 Changed system type of partition 3 to 8e (Linux LVM) Command (m for help): w #保存退出 The partition table has been altered! Calling ioctl() to re-read partition table. WARNING: Re-reading the partition table failed with error 16: Device or resource busy. The kernel still uses the old table. The new table will be used at the next reboot or after you run partprobe(8) or kpartx(8) Syncing disks.

查看分区信息

$ fdisk -l Disk /dev/sda: 32.2 GB, 32212254720 bytes 255 heads, 63 sectors/track, 3916 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x000c20c5 Device Boot Start End Blocks Id System /dev/sda1 * 1 64 512000 83 Linux Partition 1 does not end on cylinder boundary. /dev/sda2 64 2611 20458496 8e Linux LVM /dev/sda3 2611 3916 10483750 8e Linux LVM Disk /dev/mapper/vg_centos6-lv_root: 18.8 GB, 18798870528 bytes 255 heads, 63 sectors/track, 2285 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000 Disk /dev/mapper/vg_centos6-lv_swap: 2147 MB, 2147483648 bytes 255 heads, 63 sectors/track, 261 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00000000

看到/dev/sda3分区已经成功,但是没法使用,是因为分区表没更新,根据提示使用partprobe命令更新分区表,如果没有此命令,请安装parted包

$ partprobe Warning: WARNING: the kernel failed to re-read the partition table on /dev/sda (Device or resource busy). As a result, it may notreflect all of your changes until after reboot.Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.Warning: Unable to open /dev/sr0 read-write (Read-only file system). /dev/sr0 has been opened read-only.Error: Invalid partition table - recursive partition on /dev/sr0. $ ll /dev/sda sda sda1 sda2

此时我们创建的sda3分区根本没显示出来,分区表更新失败

查看官网文档,解决方法:https://access.redhat.com/solutions/57542

官网给出原因:

partprobe在RHEL5中常用于通知操作系统磁盘上的分区表更改。在RHEL6中,只有当那些磁盘上任何分区都没有在使用的磁盘下(例如,mounted)它才会触发OS去更新磁盘的分区表。如果正在使用磁盘上的任何分区,partprobe则不会触发操作系统更新系统中的分区,因为在某些情况下它被认为是不安全的。

推荐解决方法:

  1. 在修改磁盘上的分区表之前卸载磁盘的所有分区,然后运行partprobe以更新系统中的分区。
  2. 如果无法做到这一点(例如,挂载的分区是系统分区),请在修改分区表后重新引导系统。重启后将重新读取分区信息。
更新分区表信息

如果添加了新分区且未修改任何现有分区,请考虑使用该partx命令更新系统分区表

列出分区表

$ partx -l /dev/sda # 1: 2048- 1026047 ( 1024000 sectors, 524 MB) # 2: 1026048- 41943039 ( 40916992 sectors, 20949 MB) # 3: 41943040- 62910539 ( 20967500 sectors, 10735 MB) # 4: 0- -1 ( 0 sectors, 0 MB)

读取磁盘并尝试将所有分区添加到系统

$ partx -v -a /dev/sda device /dev/sda: start 0 size 62914560 gpt: 0 slices dos: 4 slices # 1: 2048- 1026047 ( 1024000 sectors, 524 MB) # 2: 1026048- 41943039 ( 40916992 sectors, 20949 MB) # 3: 41943040- 62910539 ( 20967500 sectors, 10735 MB) # 4: 0- -1 ( 0 sectors, 0 MB) BLKPG: Device or resource busy error adding partition 1 BLKPG: Device or resource busy error adding partition 2 added partition 3

  • 出现添加1,2分区错误是正常的,因为1,2分区已经添加过了

再去查看系统,已经正常/dev/sda3 已经显示

$ ls /dev/sda* /dev/sda /dev/sda1 /dev/sda2 /dev/sda3

栏目热文

硬盘能识别但显示不出来(移动硬盘闪灯但读不出)

硬盘能识别但显示不出来(移动硬盘闪灯但读不出)

不知道大家有没有出现这样的问题,想要给自己的电脑加装固态硬盘,但是把固态硬盘确认正确装到主机中之后,打开”我的电脑“里面...

2022-12-02 23:38:59查看全文 >>

硬盘插上不显示怎么回事(第二块硬盘突然消失了)

硬盘插上不显示怎么回事(第二块硬盘突然消失了)

移动硬盘相对于U盘,虽然音量很大,但效果大于U盘,它可以用作数据存储或作为移动系统。但是,有些用户在使用移动硬盘连接到计...

2022-12-02 22:57:35查看全文 >>

识别了硬盘但是不显示(硬盘识别出来了但不在)

识别了硬盘但是不显示(硬盘识别出来了但不在)

一个U盘,插到电脑上后,电脑检测不到U盘,但电脑可以检测到移动硬盘。根据故障提示分析此故障可能是U盘问题引起的,造成此故...

2022-12-02 23:40:26查看全文 >>

硬盘显示不出来是怎么回事(硬盘有东西打开显示不出怎么处理)

硬盘显示不出来是怎么回事(硬盘有东西打开显示不出怎么处理)

  硬盘读不出来怎么办?硬盘内部是一个洁净程度极高的无尘环境(并非真空),其主要包括:盘片、磁头、盘片主轴、控制电机、磁...

2022-12-02 23:08:41查看全文 >>

为什么有一个硬盘显示不出来(硬盘有东西打开显示不出怎么处理)

为什么有一个硬盘显示不出来(硬盘有东西打开显示不出怎么处理)

win7系统用户在使用电脑时遇到开机弹出Windows检测到一个硬盘问题的提示框,接下来给大家分享Windows检测到一...

2022-12-02 23:13:06查看全文 >>

硬盘在电脑上突然显示不出来(电脑硬盘突然显示不出来怎么办)

硬盘在电脑上突然显示不出来(电脑硬盘突然显示不出来怎么办)

磁盘作为电脑的主要存储介质,可以存储大量的二进制数据。早期电脑使用的磁盘是软磁盘(简称软盘),如今常用的磁盘是硬磁盘(简...

2022-12-02 23:43:00查看全文 >>

第二块硬盘显示脱机发生签名冲突(磁盘脱机与另磁盘签名发生冲突)

第二块硬盘显示脱机发生签名冲突(磁盘脱机与另磁盘签名发生冲突)

朱一旦说:能力越大,劳力越戴。数据党表示,硬盘越多,负担越大。十几年来小电影排位论次也要几个T,居家旅行求学上班的照片视...

2022-12-02 23:11:11查看全文 >>

为什么硬盘插上不显示(硬盘装上去显示不出来怎么回事)

为什么硬盘插上不显示(硬盘装上去显示不出来怎么回事)

随着科技的进步,我们的生活水平也随着提升,给我们一群离不开电脑的人群来说,硬盘的进步也是我们生活水平质量提高的重要元素!...

2022-12-02 23:21:08查看全文 >>

win10新装硬盘不显示(新买的固态插上没显示)

win10新装硬盘不显示(新买的固态插上没显示)

英特尔于今年秋季全新发布了第11代处理器(Intel Tiger Lake),采用新的Intel Volume Mana...

2022-12-02 23:44:41查看全文 >>

硬盘总是莫名其妙消失(硬盘无缘无故消失重启就好了)

硬盘总是莫名其妙消失(硬盘无缘无故消失重启就好了)

硬盘作为重要数据的存储设备越来越让许多人离不开它了,那么我们就应该在平时使用时好好的呵护它,以免不适当的操作或是因为其它...

2022-12-02 23:30:39查看全文 >>

文档排行