Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen RevisionVorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
embedded_systems:ti_sitara_am335x:beaglebone_blue:writesdcardimage [2018-04-16 01:26] akunzembedded_systems:ti_sitara_am335x:beaglebone_blue:writesdcardimage [2021-10-15 09:26] (aktuell) Urs Graf
Zeile 1: Zeile 1:
-====== Write image to SD Card ======+====== Write Image to SD Card ======
  
-On the Beagle Bone Blue, there is already a preinstalled OS on the eMMC (internal flash memory). It is recommendet to use this OS. If using a newer version, it is not guaranteed that everything is already set up correctly since the image is for more than one Beagle Bone board types.+On the Beagle Bone Blue, there is already a preinstalled OS on the eMMC (internal flash memory). It is recommendet to use this OS. If using a newer version, it is not guaranteed that everything is already set up correctly since these images are made for different Beagle Bone board types.
  
-It is recommended to use the following image since it fully supports the robotics cape library. With the image from 2018, the robotics cape library does not work due to an issue with the PRU-ICSS driver by the time writing this.+It is recommended to use the following image since it fully supports the robotics cape library. With the images from 2018, the robotics cape library does not work due to an issue with the PRU-ICSS driver by the time writing this.
  
-[[https://rcn-ee.com/rootfs/bb.org/testing/2017-03-07/iot/]]+[[https://debian.beagleboard.org/images/bone-debian-8.7-iot-armhf-2017-03-19-4gb.img.xz]]
  
  
-The following steps describe how to install an OS image onto a SD card using a Linux host. Afterwards, the SD card can be inserted into the BeagleBone board. The board will boot from the SD card.+The following steps describe how to install an OS image onto a SD card using a Linux host. Afterwards, the SD card can be inserted into the BeagleBone board. The board will boot from the SD card automatically.
  
 1. Download the newest or desired image from: [[https://beagleboard.org/latest-images]] 1. Download the newest or desired image from: [[https://beagleboard.org/latest-images]]
Zeile 14: Zeile 14:
 2. Prepare an SD card. Backup all Data from the SD card since they will be lost after writing the image! 2. Prepare an SD card. Backup all Data from the SD card since they will be lost after writing the image!
  
-3. Compare hash of the image with the one on the download page to make sure the image was downloaded correctly. Use for example **sha256sum** program which is installed on standard linux desktop distributions already.+3. Compare hash of the image with the one on the download page to make sure the image was downloaded correctly. Use for example **sha256sum** program which is preinstalled on standard linux desktop distributions already.
 <code> <code>
-ntbler@ntbhost:~$ sha256sum bone-debian-9.3-iot-armhf-2018-03-05-4gb.img.xz +ntbler@ntbhost:~$ sha256sum bone-debian-8.7-iot-armhf-2017-03-07-4gb.img 
-33fc557f32005c811bd449a59264da6b4a9b4ea9f87a1ee0aa43ae651c7f33d1  bone-debian-9.3-iot-armhf-2018-03-05-4gb.img.xz+943cc82959224ab49bf562b38088c2e20dd8596d1e9485b6490065459c9df178  bone-debian-8.7-iot-armhf-2017-03-07-4gb.img 
 </code>  </code> 
  
Zeile 55: Zeile 56:
  
 6. Now, the image can be copied onto the SD card using **dd**. **Make sure to not choosing the wrong device, otherwise you will destroy your filesystem and loose all your data!** 6. Now, the image can be copied onto the SD card using **dd**. **Make sure to not choosing the wrong device, otherwise you will destroy your filesystem and loose all your data!**
 +
 <code> <code>
 ntbler@ntbhost:~/images$ ls ntbler@ntbhost:~/images$ ls
-bone-debian-9.3-iot-armhf-2018-03-05-4gb.img  bone-debian-9.3-iot-armhf-2018-03-05-4gb.img.xz +bone-debian-8.7-iot-armhf-2017-03-07-4gb.img 
-ntbler@ntbhost:~/images$ sudo dd if=./bone-debian-9.3-iot-armhf-2018-03-05-4gb.img of=/dev/mmcblk0 bs=1M+ 
 +ntbler@ntbhost:~/images$  sudo dd if=./bone-debian-8.7-iot-armhf-2017-03-07-4gb.img of=/dev/mmcblk0 bs=1M
 3400+0 records in 3400+0 records in
 3400+0 records out 3400+0 records out
-3565158400 bytes (3.6 GB, 3.3 GiB) copied, 294.984 s, 12.1 MB/s+3565158400 bytes (3.6 GB, 3.3 GiB) copied, 72.6061 s, 49.1 MB/ssha
 </code> </code>