zoukankan      html  css  js  c++  java
  • linux命令之partprobe

    使用fdisk工具只是将分区信息写入到磁盘,如果需要使用mkfs格式化并使用分区,则需要重新启动系统。partprobe 是一个可以修改kernel中分区表的工具,可以使kernel重新读取分区表而不用重启系统。

    # partprobe
    这个命令执行完毕之后不会输出任何返回信息,你可以使用mke2fs命令在新的分区上创建文件系统。
    在Linux中使用fdisk命令进行分区时,有时会遇到“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@rhel7 ~]# man partprobe
    PARTPROBE(8)                                                             GNU Parted Manual                                                            PARTPROBE(8)
    
    NAME
           partprobe - inform the OS of partition table changes
    
    SYNOPSIS
           partprobe [-d] [-s] [devices...]
    
    DESCRIPTION
           This manual page documents briefly the partprobe command.
    
           partprobe  is  a program that informs the operating system kernel of partition table changes, by requesting that the operating system re-read the partition
           table.
    
    OPTIONS
           This program uses short UNIX style options.
    
           -d     Don't update the kernel.
    
           -s     Show a summary of devices and their partitions.
    
           -h     Show summary of options.
    
           -v     Show version of program.
  • 相关阅读:
    calc PI
    c# 设置水印,消除水印
    设置windows10 背景颜色
    C# 获取当前路径
    反编译工具
    c# 窗口API,以及全屏锁定一些tips
    c# 几种singleton 实现
    List<T> JIT 分配策略
    软件工程
    mariaDB 安装/卸载+启动/关闭 服务
  • 原文地址:https://www.cnblogs.com/rusking/p/5764245.html
Copyright © 2011-2022 走看看