Jelajahi Sumber

Merge pull request #857 from itsme300/patch-2

Update linux-misc-1.md
Alex Kuleshov 5 bulan lalu
induk
melakukan
ce22aa59e6
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      Misc/linux-misc-1.md

+ 1 - 1
Misc/linux-misc-1.md

@@ -270,7 +270,7 @@ $ find . -print0 | cpio --null -ov --format=newc | gzip -9 > ~/dev/initrd_x86_64
 We can now run our kernel in the virtual machine. As I already wrote I prefer [qemu](https://en.wikipedia.org/wiki/QEMU) for this. We can run our kernel with the following command:
 
 ```
-$ qemu-system-x86_64 -snapshot -m 8GB -serial stdio -kernel ~/dev/linux/arch/x86_64/boot/bzImage -initrd ~/dev/initrd_x86_64.gz -append "root=/dev/sda1 ignore_loglevel"
+$ qemu-system-x86_64 -snapshot -m 8G -serial stdio -kernel ~/dev/linux/arch/x86_64/boot/bzImage -initrd ~/dev/initrd_x86_64.gz -append "root=/dev/sda1 ignore_loglevel"
 ```
 
 ![qemu](images/qemu.png)