bbjjqq 发表于 2009-10-21 11:22

fdisk 错误怎么解决

用fisk 进行分区,在write的时候报错

WARNING: Re-reading the partition table failed with error 22: 无效的参数.

jerrywjl 发表于 2009-10-21 11:22

原帖由 bbjjqq 于 2009-10-21 11:30 发表 http://linux.chinaunix.net/bbs/images/common/back.gif
这个我式了,我是这样操作的
fdisk /dev/sdb1
o
w
然后还是提示上面的信息


难道不是fdisk /dev/sdb吗?为什么是fdisk /dev/sdb1呢?!

zyp339025518 发表于 2009-10-21 11:26

How To Fix "Warning: Re-reading the partition table failed with error 22: Invalid argument" Error on Linux
If you are getting the following error while trying to change the default fat32 partition on a new drive to another linux partition type, I might have the answer for you.
This is the error that you keep getting:
WARNING: Re-reading the partition table failed with error 22: Invalid argument.
The kernel still uses the old table.
The new table will be used at the next reboot.
Syncing disks.
Here's the way to fix it, noting that this will wipe your drive. Start up fdisk for the appropriate drive (may not be /dev/sde for you)
fdisk /dev/sde
Then use the "o" option, which according to the menu is:
   o   create a new empty DOS partition table
Now write the changes to disk with "w", and then open up fdisk again. Now you can create your partition.
Don't forget to actually create the filesystem for your new partition, which can be done with "mkfs". You can also use the shortcut method like this:
mkfs.reiserfs /dev/sde1
The nice thing is that the shortcut is easy to type with command line completion.



网上看到的!

bbjjqq 发表于 2009-10-21 11:29

在线等

zyp339025518 发表于 2009-10-21 11:29

这个报错是不是发生在你将一个fat32的分区格式化成linux分区的时候啊?


重启以后没有用吗?“The new table will be used at the next reboot.”这句话有吗?

[ 本帖最后由 zyp339025518 于 2009-10-21 11:31 编辑 ]

bbjjqq 发表于 2009-10-21 11:30

这个我式了,我是这样操作的
fdisk /dev/sdb1
o
w
然后还是提示上面的信息

bbjjqq 发表于 2009-10-21 11:31

回复 #4 zyp339025518 的帖子

是的

zyp339025518 发表于 2009-10-21 11:32

哦,只要达到目的就行,没有图形分区工具吗?

bbjjqq 发表于 2009-10-21 11:33

没用过,linux下有自带的吗

zyp339025518 发表于 2009-10-21 11:40

你是什么版本的linux有的,partitioneditor就是图形界面的,还蛮好用的!
页: [1] 2 3
查看完整版本: fdisk 错误怎么解决