Linux格式化分区报错Could not start /dev/sda No such file or directory 解决办法

简介:

查看已经分好的区

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[root@yong ~] # fdisk -l /dev/sda
  
Disk  /dev/sda : 21.5 GB, 21474836480 bytes
255 heads, 63 sectors /track , 2610 cylinders
Units = cylinders of 16065 * 512 = 8225280bytes
Sector size (logical /physical ): 512 bytes  /512  bytes
I /O  size (minimum /optimal ): 512 bytes / 512bytes
Disk identifier: 0x7d57cb1f
  
   Device Boot      Start         End      Blocks  Id  System
/dev/sda1                1        2610   20964793+   5  Extended
/dev/sda5                1         128    1028097   83  Linux
/dev/sda6              129         256    1028128+  83  Linux
/dev/sda7              257         384    1028128+  83  Linux

格式化新分区的时候,报错,提示下面的错误,没有这个文件或目录。

Could not stat /dev/sda7 --- No such fileor directory

The device apparently does not exist; didyou specify it correctly?


1
2
3
4
5
[root@yong ~] # mke2fs -t ext4 /dev/sda7
mke2fs 1.41.12 (17-May-2010)
Could not stat  /dev/sda7  --- No such fileor directory
  
The device apparently does not exist; didyou specify it correctly?

 

解决方法:执行partprobe 命令

partprobe包含在parted的rpm软件包中。

partprobe可以修改kernel中分区表,使kernel重新读取分区表。 

因此,使用该命令就可以创建分区并且在不重新启动机器的情况下系统能够识别这些分区。

 

查看是否安装过该命令:

1
2
[root@yong~] # rpm -q parted
packageparted is not installed


提示没有安装过,则需要安装parted

安装命令:#yum install parted #前提是保证你的虚拟机可以上网,要从网络下载安装包

1
[root@yong~] # yum install parted

 Loadedplugins: fastestmirror

1
2
3
4
5
6
7
Loadingmirror speeds from cached hostfile
  * base: mirrors.skyshe.cn
  * extras: mirrors.skyshe.cn
  * updates: mirrors.skyshe.cn
base                                                 | 3.7 kB     00:00     
extras                                                |3.3 kB     00:00     
updates                                              | 3.4 kB     00:00
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Settingup Install Process
ResolvingDependencies
-->Running transaction check
--->Package parted.i686 0:2.1-25.el6 will be installed
-->Finished Dependency Resolution
  
DependenciesResolved
  
=============================================================================
  Package          Arch           Version                Repository      Size
=============================================================================
Installing:
  parted           i686           2.1-25.el6             base           595 k
  
TransactionSummary
=============================================================================
Install       1 Package(s)
  
Totaldownload size: 595 k
Installedsize: 2.1 M
Isthis ok [y /N ]: y
DownloadingPackages:
parted-2.1-25.el6.i686.rpm                            | 595 kB    00:16     
Runningrpm_check_debug
RunningTransaction Test
TransactionTest Succeeded
RunningTransaction
   Installing : parted-2.1-25.el6.i686                                    1 /1 
   Verifying : parted-2.1-25.el6.i686                                   1 /1 
  
Installed:
   parted.i686 0:2.1-25.el6                                                  
  
Complete!


安装完成后,再进行查询一次,已经安装成功。

1
2
[root@yong~] # rpm -q parted
parted-2.1-25.el6.i686


 

执行一下该命令:

1
2
3
4
5
6
[root@yong~] # partprobe
Warning:WARNING: the kernel failed to re- read  the partition table on  /dev/sda  (Deviceor resource busy).  As a result, it maynot reflect all of your changes  until  after reboot.
Warning:WARNING: the kernel failed to re- read  the partition table on  /dev/sdb  (Deviceor resource busy).  As a result, it maynot reflect 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 .

 

然后执行格式化,就OK了,如果还提示出错,重启之后再执行格式化就可以了。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[root@yong~] # mkfs -t ext4 /dev/sda7
mke2fs1.41.12 (17-May-2010)
Filesystemlabel=
OStype: Linux
Blocksize=4096 (log=2)
Fragmentsize=4096 (log=2)
Stride=0blocks, Stripe width=0 blocks
64384inodes, 257032 blocks
12851blocks (5.00%) reserved  for  the super user
Firstdata block=0
Maximumfilesystem blocks=264241152
8block  groups
32768blocks per group, 32768 fragments per group
8048inodes per group
Superblockbackups stored on blocks: 
     32768, 98304, 163840, 229376
  
Writinginode tables:  done                           
Creatingjournal (4096 blocks):  done
Writingsuperblocks and filesystem accounting information:  done
  
Thisfilesystem will be automatically checked every 35 mounts or
180days, whichever comes first.  Use tune2fs-c or -i to override.






本文转自 模范生 51CTO博客,原文链接:http://blog.51cto.com/mofansheng/1585612,如需转载请自行联系原作者

目录
相关文章
|
3月前
|
存储 监控 安全
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
在Linux中,⼀个EXT3的文件分区,当使用touch test.file命令创建⼀个新文件时报错,报错的信息是提示磁盘已满,但是采用df -h命令查看磁盘大小时,只使用了,60%的磁盘空间,为什么会出现这个情况?
|
3月前
|
Linux 开发工具 数据安全/隐私保护
【Deepin 20系统】Linux系统开机显示Failed to start Rotate log files
如果解决了该问题,系统仍然进不去不要惊慌,继续排查下一个错误。
91 4
|
3月前
|
存储 Linux 5G
linux操作系统初始化后,再也不用手动分区了
linux操作系统初始化后,再也不用手动分区了
33 0
|
3月前
|
监控 Linux
在Linux中,如何检测并修复/dev/hda5?
在Linux中,如何检测并修复/dev/hda5?
|
3月前
|
Linux
在Linux中,如何创建一个分区?
在Linux中,如何创建一个分区?
|
3月前
|
Linux 开发工具
在Linux中,如何创建一个新的分区并格式化为EXT4文件系统?
在Linux中,如何创建一个新的分区并格式化为EXT4文件系统?
|
5月前
|
Linux Shell 虚拟化
开机自动挂载NTFS分区至Linux:分步指南
在Linux中自动挂载Windows NTFS分区,需创建挂载点(如`/media/c_win`),识别分区(如`/dev/sda1`),获取UUID,并编辑`fstab`文件添加挂载信息。推荐使用UUID以保持稳定性。在VMware环境中可能需添加`force`选项。完成这些步骤后,重启系统,NTFS分区将自动挂载。这对于双系统用户非常方便。
|
5月前
|
IDE Linux 开发工具
43. 【Linux教程】创建分区
43. 【Linux教程】创建分区
29 0
|
3天前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
18 3
|
3天前
|
监控 安全 Linux
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景
在 Linux 系统中,网络管理是重要任务。本文介绍了常用的网络命令及其适用场景,包括 ping(测试连通性)、traceroute(跟踪路由路径)、netstat(显示网络连接信息)、nmap(网络扫描)、ifconfig 和 ip(网络接口配置)。掌握这些命令有助于高效诊断和解决网络问题,保障网络稳定运行。
15 2