Angstrom linux を入れなおす。
今までは、BeagleBone Black に Raspberry Pi と同じに扱えるように Debian を入れていたが、Cloud9 で開発したいので、改めて Angstrom を入れ直す。
- http://beagleboard.org/latest-images/ から、BeagleBone Black 用の Angstrom Distribution の最新バージョンをダウンロード
- 解凍。拡張子 .xz なので、lhaz とか対応しているアーカイバで。xzを使うときは
1xz -dv xz形式の圧縮ファイル名 - 出てきたイメージを Win32DiskImager などで microSD に書き込む。
- microSD を本体にさして、ネットワークケーブルをつないで電源 ON。
DHCPで接続するので、ルータなどで確認。
SSHなどで接続可能。初期はユーザID:root / パスワード:なし
パスワードは早めに設定しておこう。 - SD容量の拡張。初期では2Gしか確保されない。8Gを使ったので拡張する。
123456789101112131415root@beaglebone:~# fdisk /dev/mmcblk0Welcome to fdisk (util-linux 2.21.2).Changes will remain in memory only, until you decide to write them.Be careful before using the write command.Command (m for help): pDisk /dev/mmcblk0: 8168 MB, 8168931328 bytes4 heads, 16 sectors/track, 249296 cylinders, total 15954944 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk identifier: 0x00000000 Device Boot Start End Blocks Id System/dev/mmcblk0p1 * 63 144584 72261 c W95 FAT32 (LBA)/dev/mmcblk0p2 147456 7127039 3489792 83 LinuxCommand (m for help): dPartition number (1-4): 2Partition 2 is deletedCommand (m for help): nPartition type: p primary (1 primary, 0 extended, 3 free) e extendedSelect (default p): pPartition number (1-4, default 2): 2First sector (144585-15954943, default 144585):Using default value 144585Last sector, +sectors or +size{K,M,G} (144585-15954943, default 15954943):Using default value 15954943Partition 2 of type Linux and of size 7.6 GiB is setCommand (m for help): wThe partition table has been altered!Calling ioctl() to re-read partition table.WARNING: Re-reading the partition table failed with error 16: Device or resource busy.The kernel still uses the old table. The new table will be used atthe next reboot or after you run partprobe(8) or kpartx(8)Syncing disks. - パッケージをアップデートする。
1# opkg update# opkg upgrade
加筆中・・・