0

私は odroid-U3 を持っていますが、そこに Linux をインストールする方法がわかりません。どなたか教えてもらえますか? もう 1 つ質問があります。odroid-U3 は USB ポートから給電できますか?

4

2 に答える 2

1

以下から適切な Linux ディストリビューションを取得します。

http://os.archlinuxarm.org/os/

または、U3 と同じ U2 イメージを使用する以下の手順に従います。

SD カードの作成 次の手順の sdX は、コンピュータに表示される SD カードのデバイス名に置き換えてください。

Zero the beginning of the SD card:
dd if=/dev/zero of=/dev/sdX bs=1M count=8
Start fdisk to partition the SD card:
fdisk /dev/sdX
At the fdisk prompt, create the new partitions:
Type o. This will clear out any partitions on the drive.
Type p to list partitions. There should be no partitions left.
Type n, then p for primary, 1 for the first partition on the drive, and enter twice to accept the default starting and ending sectors.
Write the partition table and exit by typing w.
Create and mount the ext4 filesystem:
mkfs.ext4 /dev/sdX1
mkdir root
mount /dev/sdX1 root
Download and extract the root filesystem (as root, not via sudo):
wget http://archlinuxarm.org/os/ArchLinuxARM-odroid-u2-latest.tar.gz
bsdtar -xpf ArchLinuxARM-odroid-u2-latest.tar.gz -C root
Flash the bootloader files:
cd root/boot
./sd_fusing.sh /dev/sdX
cd ../..
Unmount the partition:
umount root
Insert the SD card into the board, connect ethernet, and apply 5V power.
Use the serial console (with a null-modem adapter if needed) or SSH to the IP address given to the board by your router.
Login as the default user alarm with the password alarm.
The default root password is root.

eMMC モジュールの作成

eMMC モジュールをマイクロ SD アダプターに接続し、それをコンピューターに接続します。上記の手順に従って Arch Linux ARM をインストールし、eMMC をマイクロ SD アダプターに接続したままボードの SD スロットに接続してボードを起動します。eMMC モジュールの保護されたブート領域にブートローダーを再フラッシュします。

cd /boot
./sd_fusing.sh /dev/mmcblk0
Power off the board:
poweroff
Remove the micro SD adapter, detach the eMMC module, and connect the eMMC module to its connector on the board.
Re-apply power the board.
Use the serial console (with a null-modem adapter if needed) or SSH to the IP address given to the board by your router.
Login as the default user alarm with the password alarm.
The default root password is root.
于 2015-11-27T18:57:36.010 に答える