Install Alpine in QEMU: Difference between revisions

From Alpine Linux
(Remove Category:Installation)
(→‎Create the Virtual Machine: qemu-kvm is replaced with qemu --enable-kvm)
Line 14: Line 14:
{{Cmd|qemu -cdrom alpine-2.3.6-x86_64.iso -hda alpine.qcow -boot d -net nic -net user -m 256 -localtime}}
{{Cmd|qemu -cdrom alpine-2.3.6-x86_64.iso -hda alpine.qcow -boot d -net nic -net user -m 256 -localtime}}


{{Tip|Replace <tt>qemu</tt> with <tt>qemu-kvm</tt> if your hardware support this.}}
{{Tip|Add option <tt>--enable-kvm</tt> if your hardware support this.}}


Log in as root (no password) and run: {{Cmd|setup-alpine}}
Log in as root (no password) and run: {{Cmd|setup-alpine}}

Revision as of 22:59, 7 May 2016

Before You Start

Create the Virtual Machine

Create a disk image if you want to install Alpine Linux.

qemu-img create alpine.qcow 8G

The following command starts qemu with the alpine iso image as cdrom and boot device, the default network configuration, 256 MB memory, and the disk image that was created in the previous step.

qemu -cdrom alpine-2.3.6-x86_64.iso -hda alpine.qcow -boot d -net nic -net user -m 256 -localtime

Tip: Add option --enable-kvm if your hardware support this.

Log in as root (no password) and run:

setup-alpine

At the question on how to use the disk select sys.

Booting the Virtual Machine

After the installation qemu can be started from disk image (-boot c) without cdrom.

qemu alpine.qcow -boot c -net nic -net user -m 256 -localtime