博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VBox fdisk 不显示 添加的硬盘 解决方法
阅读量:5118 次
发布时间:2019-06-13

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

 

 

用fdisk 命令查看不到我们添加的磁盘:

 

[root@rac1 ~]# fdisk -l

 

Disk /dev/sda: 32.2 GB, 32212254720 bytes

255 heads, 63 sectors/track, 3916 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: 0x00085ca1

 

  Device Boot      Start         End     Blocks   Id  System

/dev/sda1  *           1          26      204800  83  Linux

Partition 1 does not end on cylinderboundary.

/dev/sda2              26         281    2048000   82  Linux swap / Solaris

Partition 2 does not end on cylinder boundary.

/dev/sda3             281        3917   29203456   83  Linux

[root@rac1 ~]#

 

--但查看/proc/partitions,可以显示:

[root@rac1 ~]# cat/proc/partitions

major minor #blocks  name

 

  8        0   31457280 sda

  8        1     204800 sda1

  8        2    2048000 sda2

  8        3   29203456 sda3

  8       16    8388608 sdb

  8       32    8388608 sdc

  8       48    8388608 sdd

  8       64    8388608 sde

  8       80    1048576 sdf

  8       96    1048576 sdg

  8      112    1048576 sdh

[root@rac1 ~]#

 

手工执行:start_udev 后,用fdisk命令也可以查看到磁盘。

 

推测udev在启动的过程出现问题。

 

查看系统udev服务的状态:

[root@rac1 ~]# service udev-post status

[root@rac1 ~]# chkconfig udev-post --list

udev-post       0:off  1:on    2:on    3:on   4:on    5:on    6:off

[root@rac1 ~]# service udev-post start

Retrigger failed udev events[  OK  ]

 

 

注意:

我这是Oracle linux ,所以udev服务是:udev-post, 如果是redhat ,对应的服务是:udev

 

 

不深入研究这个问题,将start_udev添加到启动项,保证能正常使用就可以了。

 

[root@rac2 ~]# vim /etc/rc.d/rc.local

 

#!/bin/sh

#

# This script will be executed *after* allthe other init scripts.

# You can put your own initialization stuffin here if you don't

# want to do the full Sys V style initstuff.

 

touch /var/lock/subsys/local

 

/sbin/start_udev

 

 

随笔小记之。

 

 

 

 

 

 

 

 

 

 

 

 

版权所有,文章允许转载,但必须以链接方式注明源地址,否则追究法律责任!

QQ:      251097186

Skype:    tianlesoftware

Email:    

Blog:    

Weibo:    

Twitter: 

Facebook:

Linkedin:

转载于:https://www.cnblogs.com/tianlesoftware/p/3609069.html

你可能感兴趣的文章
Linux命令应用大词典-第4章 目录和文件操作
查看>>
A + B Problem II
查看>>
app与服务端通信时如何进行消息校验
查看>>
AS3优化性能笔记二
查看>>
wpf combobox
查看>>
#小练习 SGMLParser练习 分类: HTMLParser ...
查看>>
Insert语句对于三种类型的内表的不同效果
查看>>
qml:基本知识记录
查看>>
时间戳
查看>>
算法入门(一) 排序
查看>>
第十一次作业
查看>>
如何实现Servlet的单线程模式
查看>>
Java学习笔记八
查看>>
mybatis分页插件PagePlugin
查看>>
Sizeof与Strlen的区别与联系
查看>>
JAVA协变返回类型
查看>>
Windows 下,使用 Pycharm + Anaconda(NumPy,SciPy 等集成包)的环境配置
查看>>
[SmartTV_Samsung]Samsung Smart TV 开发环境搭建
查看>>
Ruby学习笔记(二)——从管道读取数据
查看>>
Word Capitalization
查看>>