mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-02 01:18:08 +01:00
Highlight need for 32-bit kernel; use 4G ram by default
It will always fit within 4G RAM.
This commit is contained in:
parent
622b4de875
commit
c8998e9e71
2 changed files with 2 additions and 2 deletions
|
|
@ -18,7 +18,7 @@ Get me started!
|
||||||
1. ``git clone https://github.com/fosslinux/live-bootstrap``
|
1. ``git clone https://github.com/fosslinux/live-bootstrap``
|
||||||
2. ``git submodule update --init --recursive``
|
2. ``git submodule update --init --recursive``
|
||||||
3. Provide a kernel (vmlinuz file) as the name kernel in the root of the
|
3. Provide a kernel (vmlinuz file) as the name kernel in the root of the
|
||||||
repository.
|
repository. **This must be a 32-bit kernel.**
|
||||||
4. ``./rootfs.py`` - ensure your account has kvm privileges and qemu
|
4. ``./rootfs.py`` - ensure your account has kvm privileges and qemu
|
||||||
installed.
|
installed.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@ def main():
|
||||||
parser.add_argument("-qc", "--qemu-cmd", help="QEMU command to run",
|
parser.add_argument("-qc", "--qemu-cmd", help="QEMU command to run",
|
||||||
default="qemu-system-x86_64")
|
default="qemu-system-x86_64")
|
||||||
parser.add_argument("-qr", "--qemu-ram", help="Memory (in megabytes) allocated to QEMU VM",
|
parser.add_argument("-qr", "--qemu-ram", help="Memory (in megabytes) allocated to QEMU VM",
|
||||||
default=8000)
|
default=4096)
|
||||||
parser.add_argument("-qk", "--kernel", help="Kernel to use (default is ./kernel)",
|
parser.add_argument("-qk", "--kernel", help="Kernel to use (default is ./kernel)",
|
||||||
default="kernel")
|
default="kernel")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue