溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Linux下partprobe命令的使用方法

發(fā)布時(shí)間:2021-08-05 10:55:28 來源:億速云 閱讀:153 作者:chen 欄目:系統(tǒng)運(yùn)維

這篇文章主要講解了“Linux下partprobe命令的使用方法”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“Linux下partprobe命令的使用方法”吧!

linux上,在安裝系統(tǒng)之后,可否創(chuàng)建分區(qū)并且在不重新啟動機(jī)器的情況下系統(tǒng)能夠識別這些分區(qū)?
解決方法:

你可以使用一個(gè)叫做partprobe的工具。它包含在parted的rpm軟件包中。在Red Hat Enterprise Linux 3上他的版本是parted-1.6。 partprobe 是一個(gè)可以修改kernel中分區(qū)表的工具??梢允筴ernel重新讀取分區(qū)表。如下命令可以查看你的系統(tǒng)是否安裝了parted軟件包

代碼如下:


rpm -q parted


舉例來說:

代碼如下:


# rpm -q parted


parted-1.6.3-29

你可以使用up2date命令安裝這個(gè)軟件包,如果在你的系統(tǒng)已經(jīng)正確地注冊到RHN上了。否則你可以從光盤上安裝這個(gè)文件。

你可以使用fdisk或者其他命令創(chuàng)建一個(gè)新的分區(qū),然后使用partprobe命令重新讀取分區(qū)表。

代碼如下:


# partprobe


這個(gè)命令執(zhí)行完畢之后不會輸出任何返回信息,你可以使用mke2fs命令在新的分區(qū)上創(chuàng)建文件系統(tǒng)。

在Linux中使用fdisk命令進(jìn)行分區(qū)時(shí),有時(shí)會遇到“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.”這種告警信息。如下所示

代碼如下:


[root@localhost ~]# fdisk /dev/sde


 
The number of cylinders for this disk is set to 18928.
There is nothing wrong with that, but this is larger than 1024,
and could in certain setups cause problems with:
1) software that runs at boot time (e.g., old versions of LILO)
2) booting and partitioning software from other OSs
   (e.g., DOS FDISK, OS/2 FDISK)
 
Command (m for help): p
 
Disk /dev/sde: 155.6 GB, 155692564480 bytes
255 heads, 63 sectors/track, 18928 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
 
   Device Boot      Start         End      Blocks   Id  System
/dev/sde1               1       18275   146793906    5  Extended
/dev/sde5               1       18275   146793874+  83  Linux
 
Command (m for help): n
Command action
   l   logical (5 or over)
   p   primary partition (1-4)
p
Partition number (1-4): 2
First cylinder (18276-18928, default 18276):
Using default value 18276
Last cylinder or +size or +sizeM or +sizeK (18276-18928, default 18928):
Using default value 18928
 
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.
Syncing disks.

此時(shí)使用fdisk命令看不到新建的分區(qū)信息,可以使用partprobe命令解決這個(gè)問題而不用重啟系統(tǒng),因?yàn)閜artprobe可以使kernel重新讀取分區(qū)信息,從而避免重啟系統(tǒng)。

代碼如下:

partprobe - inform the OS of partition table changes

感謝各位的閱讀,以上就是“Linux下partprobe命令的使用方法”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對Linux下partprobe命令的使用方法這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI