-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
File transfer between riscv-qemu and host. #11
Comments
Take a look at the filesystem build script: It should suffice to put your program in the
|
@michaeljclark thank you for your response. It worked for me. |
@michaeljclark Can I also share a text file from qemu-linux after booting it up to host linux?? if yes, can you please say how? thank you. |
@jim-wilson @michaeljclark I was able to copy a file once I log out of Qemu, mount my image file again and then copy the file to my host process. but, I am looking for some solution through which I can copy file from qemu to host just by mounting it once and be logged in as root in Qemu. |
It isn't safe to mount a file system twice. To have access to the live system, you have to get ssh/scp working. There are various ways to do this. The busybear README.md file explains one way to do this in the linux bridged networking section. |
hello I am following steps provided on
https://www.cnx-software.com/2018/03/16/how-to-run-linux-on-risc-v-with-qemu-emulator/.
i was able to boot the qemu successfully, but now I want to run my own hello world program on qemu.
I have cross compiled my hello world program but, I am not able to find the directory to where i should place my executable file, so that I can access it from qemu after booting it up.
Any help is appreciated. thank you
The text was updated successfully, but these errors were encountered: