在 Solaris 中使用 fdisk -r 讀取磁碟

在 Solaris 中使用 fdisk -r 讀取磁碟

在閱讀 Solaris 上的 fdisk 手冊頁時,我遇到了 -r 標誌:

 -r 
  Read from disk and write to stdout. See -o and -s, which 
  specify the starting point and size of operation.

使用 fdisk -r 僅輸出幫助頁面。

答案1

要執行 fdisk -r,您需要成為 root 並提供原始磁碟設備,例如 /dev/rdsk/c0t0d0s0。然後你需要用 -o 選項告訴它偏移塊,用 -s 選項告訴它塊的數量。

嘗試:

$ fdisk -r -o 20 -s 20 /dev/rdsk/c0t0d0s0 > {some other disk directory file}

相關內容