博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
解决linux分区提示doesn't contain a valid partition table
阅读量:5231 次
发布时间:2019-06-14

本文共 1248 字,大约阅读时间需要 4 分钟。

目前 partition table 大概有叁种: 最传统的 mbr、大容量的 gpt、小设备的 无; 遇上最后那种就会出现 "doesn't contain a valid partition table(不包含有效的分区表)" 提示 ...意思就是说你还没有分区!

解决办法可以参考下面的方法:
发现有问题:
Disk /dev/vdb doesn't contain a valid partition table

sudo fdisk /dev/vdb

跟着向导一步步做下去(如果不知道该输入什么,就输入“m”并回车,可以打印出菜单):
Command (m for help): 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
(后面的菜单省略,太长了)
这里我们要添加一个新的分区,所以输入“n”:
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-14098, default 1): (此处直接回车)
Using default value 1
Last cylinder or +size or +sizeM or +sizeK (1-14098, default 14098): (此处直接回车)
Using default value 14098
Command (m for help): p
Disk /dev/sdb: 115.9 GB, 115964116992 bytes
255 heads, 63 sectors/track, 14098 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes

Device Boot Start End Blocks Id System

/dev/sdb1 1 14098 113242153+ 83 Linux
现在可以写入分区表了,所以输入“w”:
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.
现在再 sudo fdisk -l,结果正常。

转载于:https://www.cnblogs.com/zeze/p/6276836.html

你可能感兴趣的文章
2. DTD约束XML
查看>>
转: Github访问慢解决办法
查看>>
MySQL性能优化最佳实践 - 05 MySQL核心参数优化
查看>>
北京二手房价10月微涨 业内:坚持限购就不会大涨
查看>>
bootstrap轮播图不能显示左右箭头
查看>>
H5下拉刷新和上拉加载实现原理浅析
查看>>
微信小程序请求wx.request数据,渲染到页面
查看>>
ecshop后台新功能及权限的添加
查看>>
Merge Intervals
查看>>
[学习]Effective C++ 3rd
查看>>
(转)php简单工厂模式实例讲解
查看>>
图片轮播
查看>>
KeepCode 4 解题报告
查看>>
数位统计/数位DP 专题
查看>>
[原创]cocos2d-x + Lua接入iOS原生SDK的实现方案
查看>>
转: python 操作串口
查看>>
【watcher】 #02 c# 中实现时间戳等,日期数字及大概率绝对随机数 实现
查看>>
如何优雅地发布Hexo博客
查看>>
cocosbuilder3.0使用小记
查看>>
winform用户控件、动态创建添加控件、timer控件、控件联动
查看>>