我有一个odroid-U3,我不知道如何在它上安装linux,有人能告诉我怎么做吗?我还有另外一个问题,可以用USB接口驱动odroid-U3吗?
发布于 2016-08-28 00:50:51
你可以按照archlinuxarm.org/platforms/armv7/samsung/odroid-u3的官方指南
注意:如果您在执行第7步时仍停留在第7步
cd root/boot
./sd_fusing.sh /dev/sdX
cd ../..您可以打开文件sd_fusing.sh,更改行
#!/usr/bin/bash转到
#!/bin/bash发布于 2015-11-27 18:57:36
从以下位置获取适当的linux发行版:
http://os.archlinuxarm.org/os/或者按照下面的步骤使用U2映像,这对于U3来说是一样的:
SD卡创建在以下说明中用SD卡的设备名称替换sdX,因为它出现在您的计算机上。
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适配器,并将其插入计算机。按照上述步骤安装,并用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.https://stackoverflow.com/questions/32062989
复制相似问题