aneena
aneena

Reputation: 197

how to build xv6 OS on qemu

I am trying to build XV6 OS on linux using QEMU but whenever I type on the terminal make QEMU-nox it gives an error "no rule to make target qemu-nox" I know i have properly installed qemu. can anyone please tell me what is wrong ? also what will be the command to get the XV6 running ??

Upvotes: 0

Views: 1281

Answers (2)

kpatel4241
kpatel4241

Reputation: 11

First of all navigate to the directory of xv6 then, Try to use this command :

make

make qemu

Upvotes: 1

Ricky Mutschlechner
Ricky Mutschlechner

Reputation: 4409

If you're trying to use QEMU, I believe that

make qemu

should be sufficient.

Upvotes: 2

Related Questions