From 44b4b842066e53bbc8ab9df4108d587dfac0db60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20K=C3=B6ppl?= Date: Thu, 23 Feb 2017 12:38:50 +0100 Subject: [PATCH 1/3] Fix typos in description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c42dd3..c2039de 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **Redox** is an operating system written in Rust, a language with focus on safety and high performance. Redox, following the microkernel design, aims to be secure, usable, and free. Redox is inspired by previous kernels and operating systems, such as SeL4, Minix, Plan 9, and BSD. -Redox _is not_ just a kernel, it's a full-featured Operating System, providing packages (memory allocator, file system, display manager, core utilities, etc.) that together makes up a functional and convenient operating system. You can loosly think of it as the GNU or BSD ecosystem, but in a memory safe language and with modern technology. See [this list](#ecosystem) for overview of the ecosystem. +Redox _is not_ just a kernel, it's a full-featured Operating System, providing packages (memory allocator, file system, display manager, core utilities, etc.) that together make up a functional and convenient operating system. You can loosely think of it as the GNU or BSD ecosystem, but in a memory safe language and with modern technology. See [this list](#ecosystem) for overview of the ecosystem. The website can be found at https://www.redox-os.org. From f397c57e7baaeb8eac35045a12ff8923a6d4da31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Thu, 23 Feb 2017 16:36:03 +0100 Subject: [PATCH 2/3] + how to run redox-os from remote with qemu without graphic support --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index c2039de..3282255 100644 --- a/README.md +++ b/README.md @@ -146,7 +146,11 @@ $ make all # Launch using QEMU $ make qemu + # Launch using QEMU without using KVM (Kernel Virtual Machine). Try if QEMU gives an error. $ make qemu kvm=no + +# Launch using QEMU without using KVM (Kernel Virtual Machine) nor Graphics +make qemu kvm=no vga=no display=no ``` From 592c21b9c3e7b2b2983c174ae4930546e8e29070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20DESBRI=C3=88RES?= Date: Thu, 23 Feb 2017 17:07:03 +0100 Subject: [PATCH 3/3] improvement on the qemu without graphic support --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3282255..7e28f81 100644 --- a/README.md +++ b/README.md @@ -151,6 +151,6 @@ $ make qemu $ make qemu kvm=no # Launch using QEMU without using KVM (Kernel Virtual Machine) nor Graphics -make qemu kvm=no vga=no display=no +make qemu kvm=no vga=no ```