web-dev-qa-db-ja.com

Linuxインストール用のRAID0パーティショニング

最近、128GbSSDを搭載したASUSZenbook UX32VDを購入しました。これは、2台の64GbSSDドライブから作られたRAID-0のようです。 Windows8がプリインストールされています。

Windows8を維持したままArchLinuxをインストールしたいのですが、このRAID-0のパーティション分割に問題があります。 Windowsのディスク管理からWindows8のパーティションを縮小し、約30Gbの未割り当て領域を取得できましたが、LiveUSBからLinuxを起動すると、パーティションの処理方法がわかりません。

私は見えます /dev/sdaおよび/dev/sdb、これは私のRAID-0のSSDドライブに対応しているようです。 blkidは、これらのドライブについて次のように表示します。

/dev/sdb: TYPE="isw_raid_member" 
/dev/sda: TYPE="isw_raid_member" 

しかし、LiveUSBから起動したKaliLinuxでgpartedを起動すると、次のアラートウィンドウが表示されます。

  • まず、「Libparted Bug Found!:/ dev/sdaでの読み取りのシーク中に無効な引数」と「再試行」、「無視」、「キャンセル」ボタン。
  • 「無視」を押して「LibpartedBugFound!:バックアップGPTテーブルが破損していますが、プライマリはOKと表示されるため、「OK」ボタンと「キャンセル」ボタンで使用されます」と表示されます。
  • 「OK」を押して、関数_parse_header()の../../../libparted/labels/gpt.c:723で「LibpartedBug Found!:Assertion(last_usable <= disk-> dev-> length)」を取得します。失敗しました。」 「いいえ」ボタン付き。
  • 「いいえ」を押すと、gpartedが終了します。

だから私の質問は:LinuxがWindowsを維持しながらそこにインストールするためにこの構成で新しいパーティションを作成するにはどうすればよいですか?


追加情報:

gdisk on /dev/sda私に

Warning! Disk size is smaller than the main header indicates! Loading
secondary header from the last sector of the disk! You should use 'v' to
verify disk integrity, and perhaps options on the experts' menu to repair
the disk.
Caution: invalid backup GPT header, but valid main header; regenerating
backup header from main header.

Warning! One or more CRCs don't match. You should repair the disk!

Partition table scan:
  MBR: protective
  BSD: not present
  APM: not present
  GPT: damaged

****************************************************************************
Caution: Found protective or hybrid MBR and corrupt GPT. Using GPT, but disk
verification and recovery are STRONGLY recommended.
****************************************************************************

Command (? for help): p
Disk /dev/sda: 125045424 sectors, 59.6 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 72D98FD5-AFA6-4935-8DF5-B325A9C2B722
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 230686686
Partitions will be aligned on 2048-sector boundaries
Total free space is 62918589 sectors (30.0 GiB)

Number  Start (sector)    End (sector)  Size       Code  Name
   1            2048          616447   300.0 MiB   EF00  EFI system partition
   2          616448         2459647   900.0 MiB   2700  Basic data partition
   3         2459648         2721791   128.0 MiB   0C01  Microsoft reserved part
   4         2721792       125087743   58.3 GiB    0700  Basic data partition
   5       188002304       188721151   351.0 MiB   2700  
   6       188721152       230684671   20.0 GiB    2700  Basic data partition

gdisk on /dev/sdb私に

Partition table scan:
  MBR: not present
  BSD: not present
  APM: not present
  GPT: not present

Creating new GPT entries.

Command (? for help): p
Disk /dev/sdb: 125045424 sectors, 59.6 GiB
Logical sector size: 512 bytes
Disk identifier (GUID): 8BA050D6-16B3-418E-BAAE-7E2916A15267
Partition table holds up to 128 entries
First usable sector is 34, last usable sector is 125045390
Partitions will be aligned on 2048-sector boundaries
Total free space is 125045357 sectors (59.6 GiB)

Number  Start (sector)    End (sector)  Size       Code  Name
1
Anton Guryanov

あなたが求めているのは基本的に この質問です。 と同じですが、gdiskparted、または他のパーティショニングツールを使用する必要があることを追加します基盤となるディスクデバイスではなく、LinuxのRAIDデバイス(/dev/sdaおよび/dev/sdb)。

1
Rod Smith