0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

MacでSDカードにパーティションを切る

Posted at

GUIからすんなり出来なかったので、メモ書き程度に。

目的

128GBのSDカードを、4:6でパーティションを分けたい。

事象

ディスクユーティリティを使用して、パーティションを切ろうとしたが、ボタンがグレーアウトされて押せない。

解決策

ターミナルを使用してコマンド実行。

実施詳細

1.ターミナルを開く
2.diskutil listで、SDカードのIDENTIFIERを確認

diskutil list

私の環境では「/dev/disk2」というIDENTIFIER名でした

3.diskutil partitionDiskで、パーティションを分割

diskutil partitionDisk /dev/disk2 2 JournaledHFS+ sdcard1 40% JournaledHFS+ sdcard2 60%

「/dev/disk2」を4:6に分割
40%がsdcard1
60%がsdcard2

4.もう一度diskutil listでSDカードの状態を確認

diskutil list

(中略)

/dev/disk2 (external, physical):
   #:                       TYPE NAME                    SIZE       IDENTIFIER
   0:      GUID_partition_scheme                        *125.1 GB   disk2
   1:                        EFI EFI                     209.7 MB   disk2s1
   2:                  Apple_HFS sdcard1                 49.9 GB    disk2s2
   3:                  Apple_HFS sdcard2                 74.7 GB    disk2s3
0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?