- Android Things Projects
- Francesco Azzola
- 217字
- 2021-07-02 20:46:24
How to install Android Things using OS X
If you have a Mac OS X, the steps to install Android Things are slightly different. There are several options to flash this OS to the SD card; you will learn the fastest and easiest one.
These are the steps to follow:
- Format your SD card using FAT32. Insert your SD card into your Mac and run Disk Utility. You should see something like this:

- Download the Android Things OS image using this link: https://developer.android.com/things/preview/download.html.
- Unzip the file you have downloaded.
- Insert the SD card into your Mac.
- Now it is time to copy the image to the SD card. Open a terminal window and write the following:
sudo dd bs=1m if=path_of_your_image.img of=/dev/rdiskn
Where the path_to_your_image is the path to the file with the img extension you downloaded at step 2. In order to find out the rdiskn you have to select Preferences and then System Report. The result is shown in the following screenshot:

The BSD name is the disk name we are looking for. In this case, we have to write the following:
sudo dd bs=1m if=path_of_your_image.img of=/dev/disk1
That's all. You have to wait until the image is copied into the SD card. Do not forget that the copying process could take a while. So be patient!
推薦閱讀
- Java Web開發學習手冊
- Cocos2d-x游戲開發:手把手教你Lua語言的編程方法
- JavaFX Essentials
- Web Development with Django Cookbook
- Learning ASP.NET Core 2.0
- 數據結構與算法JavaScript描述
- Learning Neo4j 3.x(Second Edition)
- 深入淺出RxJS
- PhpStorm Cookbook
- iOS編程基礎:Swift、Xcode和Cocoa入門指南
- 微信小程序入門指南
- Programming with CodeIgniterMVC
- 細說Python編程:從入門到科學計算
- Learning JavaScript Data Structures and Algorithms(Second Edition)
- Learning iOS Security