web-dev-qa-db-ja.com

Unix端末を使用してOSXでディスクを暗号化する

OS X 10.8.4のコマンドラインを介してディスクを暗号化するためのネイティブユーティリティ(おそらくdiskutilの下)があるかどうかを知りたいです。 FileVaultまたはMacOSのディスクユーティリティEraseタブを使用できますが、コマンドラインの代替手段があるかどうかだけが気になります。

3
Jules

次のコマンドを使用して、コマンドラインから暗号化できます。

diskutil cs convert /Volumes/your_drive_name_here -passphrase

次のような出力が得られるはずです。

computer name:~ username$ diskutil cs convert /Volumes/your_drive_name_here -passphrase
New passphrase for converted volume:
Confirm new passphrase:
Started CoreStorage operation on disk2s1 your_drive_name_here
Resizing disk to fit Core Storage headers
[ - 0%..10%.............................................. ]
Creating Core Storage Logical Volume Group
Attempting to unmount disk2s1
Switching disk2s1 to Core Storage
Waiting for Logical Volume to appear
Mounting Logical Volume
Core Storage LVG UUID: D1EAB2C3-EC21-41DA-AD60-75E1302E247B
Core Storage PV UUID: 991C89E9-A628-408C-AAFF-39A561FCB95C
Core Storage LV UUID: 36483526-6C2C-43FA-A4B7-6F503473F1C2
Core Storage disk: disk3
Finished CoreStorage operation on disk2s1 your_drive_name_here
Encryption in progress; use `diskutil coreStorage list` for status

詳細を記載した投稿があります。

http://derflounder.wordpress.com/2012/01/06/encrypting-10-7-non-boot-volumes-without-erasing-them/

6
Rich Trouton

Mountain Lion以降をお持ちの場合は、fdesetupを使用してください

2
spuder