Reputation: 197
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
Reputation: 11
First of all navigate to the directory of xv6 then, Try to use this command :
make
make qemu
Upvotes: 1
Reputation: 4409
If you're trying to use QEMU, I believe that
make qemu
should be sufficient.
Upvotes: 2