Добавить
Уведомления

How to compile MINIX's source code to target file and run it on qemu-kvm.

HERE IS ALL COMMANDS IN THIS VIDEO. 1. Install some tools. $ sudo apt-get install build-essential curl git zlibc zlib1g zlib1g-dev $ sudo apt-get install clang g++ 2. Download MINIX3's source code using git. $ mkdir minix $ cd minix $ git clone git://git.minix3.org/minix src $ cd src 3. Compile. $ JOBS=4 ./releasetools/x86_hdimage.sh for more details type: $ ./releasetools/x86_hdimage.sh --help 4. Install QEMU-KVM and boot the target file. $ sudo apt install -y -o 'apt::install-recommends=true' \qemu-kvm libvirt0 libvirt-bin virt-manager libguestfs-tools $ sudo qemu-system-i386 --enable-kvm -m 256 -hda /home/nofear/minix/src/minix_x86.img Path to target file is in my laptop, change it suitable.

12+
28 просмотров
2 года назад
12+
28 просмотров
2 года назад

HERE IS ALL COMMANDS IN THIS VIDEO. 1. Install some tools. $ sudo apt-get install build-essential curl git zlibc zlib1g zlib1g-dev $ sudo apt-get install clang g++ 2. Download MINIX3's source code using git. $ mkdir minix $ cd minix $ git clone git://git.minix3.org/minix src $ cd src 3. Compile. $ JOBS=4 ./releasetools/x86_hdimage.sh for more details type: $ ./releasetools/x86_hdimage.sh --help 4. Install QEMU-KVM and boot the target file. $ sudo apt install -y -o 'apt::install-recommends=true' \qemu-kvm libvirt0 libvirt-bin virt-manager libguestfs-tools $ sudo qemu-system-i386 --enable-kvm -m 256 -hda /home/nofear/minix/src/minix_x86.img Path to target file is in my laptop, change it suitable.

, чтобы оставлять комментарии