22
21

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 5 years have passed since last update.

Raspberry pi のSDカードをMac OS Xでバックアップしてレストアして。

Last updated at Posted at 2014-02-28

バックアップ

データを丸っと取ってくる。

sudo dd bs=1m if=/dev/disk{NUM} of=~/Desktop/backup.img

レストア

SDカードを差し込んだら、FATにフォーマットしてそのボリュームを一度コマンドでアンマウントします。
フォーマットはディスクユーティリティーなどを使用してください。

sudo umount -fv /Volumes/{UNTITLED}

次にデータを流し込みます。

sudo dd bs=1m if=~/Desktop/backup.img of=/dev/disk{NUM}
22
21
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
22
21

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?