-1

I found a lot of threads listing their troubles with getting xv6 to run, but couldn't really find any that helped me, so here we go...

The first step of running the make command didn't give me any problems.

However when I tried to run the "make qemu" command, I got the following error:

error1(it didn't let me embed the image for some reason, so i have linked the screenshot from imgur instead)

I am using a 64 bit ubuntu system, so I tried installing a 32 bit directory using sudo apt-get install libc6-dev:i386

Then I uncommented line 54 in my makefile, which was basically "QEMU = qemu-system-i386". Running make qemu now gave me this error:

error2

I then changed that line to "QEMU = qemu-system-x86_64" and got this error:

error3

I am completely lost here and would really appreciate some help...

1 Answers1

0

All those messages are telling you variants of the same thing: you don't have QEMU installed, and therefore the makefile is unable to run it. Try installing it...

Peter Maydell
  • 9,707
  • 1
  • 19
  • 25