Raspberrypi: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== Overview == Raspberry pi 정보 정리 == See also == * https://raymii.org/s/blog/Broken_Corrupted_Raspberry_Pi_SD_Card.html - Broken Corrupted Raspberry Pi SD Card cat...") |
No edit summary |
||
Line 1: | Line 1: | ||
== Overview == | == Overview == | ||
Raspberry pi 정보 정리 | Raspberry pi 정보 정리 | ||
== Installation == | |||
dd 명령어를 이용하여 다운받은 이미지를 SD 카드로 복사하면 된다. | |||
<pre> | |||
$ ls | |||
2015-05-05-raspbian-wheezy.img | |||
$ sudo dd bs=4M if=./2015-05-05-raspbian-wheezy.img of=/dev/mmcblk0 | |||
</pre> | |||
== See also == | == See also == | ||
* https://raymii.org/s/blog/Broken_Corrupted_Raspberry_Pi_SD_Card.html - Broken Corrupted Raspberry Pi SD Card | * https://raymii.org/s/blog/Broken_Corrupted_Raspberry_Pi_SD_Card.html - Broken Corrupted Raspberry Pi SD Card | ||
* https://www.raspberrypi.org/documentation/installation/installing-images/linux.md - Installing Operating System Images on Linux | |||
[[category:raspberrypi]] | [[category:raspberrypi]] |
Revision as of 21:51, 8 September 2015
Overview
Raspberry pi 정보 정리
Installation
dd 명령어를 이용하여 다운받은 이미지를 SD 카드로 복사하면 된다.
$ ls 2015-05-05-raspbian-wheezy.img $ sudo dd bs=4M if=./2015-05-05-raspbian-wheezy.img of=/dev/mmcblk0
See also
- https://raymii.org/s/blog/Broken_Corrupted_Raspberry_Pi_SD_Card.html - Broken Corrupted Raspberry Pi SD Card
- https://www.raspberrypi.org/documentation/installation/installing-images/linux.md - Installing Operating System Images on Linux