Forked from humbertodias/gist:6237f80df9a4bccf98be298057a82cf2
Last active
August 6, 2020 06:33
-
-
Save huhuang03/4a443be8402a0fe8a47a6a0c52ccd991 to your computer and use it in GitHub Desktop.
Qemu with ARM on Mac OSX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# QEmu | |
brew install qemu | |
# Home for out tests | |
mkdir ~/arm-emu | |
cd ~/arm-emu | |
# Download initrd and kernel | |
wget http://ftp.de.debian.org/debian/dists/jessie/main/installer-armel/current/images/versatile/netboot/initrd.gz | |
wget http://ftp.de.debian.org/debian/dists/jessie/main/installer-armel/current/images/versatile/netboot/vmlinuz-3.16.0-6-versatile | |
# Creating disk | |
qemu-img create -f qcow2 armdisk.img 1G | |
# Running | |
qemu-system-arm -M versatilepb -kernel \ | |
vmlinuz-3.16.0-6-versatile \ | |
-initrd initrd.gz \ | |
-hda armdisk.img \ | |
-append "root=/dev/ram" \ | |
-m 256 |
我遇到了下载安装文件一直失败的问题,安装失败!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
期间从mirror下载的时候,我选的是清华的mirror。可能会出现下载失败的问题,多重试几次可以解决。