Step 2 : Configure and Build QEMU

  • In this program, you are going to learn

  • How to ?

Topics in this section,

  • set the execution permission for configure file using the following command.

$ chmod +x configure
  • run the configure script to configure the build settings.

$ ./configure
  • once the configuration is done run make to build.

$ make
  • Add the build directory path in the bashrc file.

$ vim ~/.bashrc

export PATH=$PATH:$HOME/qemu-6.2.0/build
  • Reload the environment by executing this command.

$ source ~/.bashrc