首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >如何在odroid -u3(或其他odroid版本)上安装linux?

如何在odroid -u3(或其他odroid版本)上安装linux?
EN

Stack Overflow用户
提问于 2015-08-18 03:20:50
回答 2查看 1.9K关注 0票数 0

我有一个odroid-U3,我不知道如何在它上安装linux,有人能告诉我怎么做吗?我还有另外一个问题,可以用USB接口驱动odroid-U3吗?

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2016-08-28 00:50:51

你可以按照archlinuxarm.org/platforms/armv7/samsung/odroid-u3的官方指南

注意:如果您在执行第7步时仍停留在第7步

代码语言:javascript
复制
cd root/boot
./sd_fusing.sh /dev/sdX
cd ../..

您可以打开文件sd_fusing.sh,更改行

代码语言:javascript
复制
#!/usr/bin/bash

转到

代码语言:javascript
复制
#!/bin/bash
票数 0
EN

Stack Overflow用户

发布于 2015-11-27 18:57:36

从以下位置获取适当的linux发行版:

代码语言:javascript
复制
http://os.archlinuxarm.org/os/

或者按照下面的步骤使用U2映像,这对于U3来说是一样的:

SD卡创建在以下说明中用SD卡的设备名称替换sdX,因为它出现在您的计算机上。

代码语言:javascript
复制
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模块的受保护引导区域:

代码语言:javascript
复制
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.
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/32062989

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档