OK. I have tried the vagrant flow, so right now I have an idea of what you talked about. Pardon me for this because I have not run it for a long time. Let me summarize, maybe for other users as well:
-
You need vbox guest additions for bigger display + bidirectional clipboard. For bidirectional clipboad you can enable them in virtual box settings.
-
You need
vagrant reloadin your host machine terminal to start up the VM. Otherwise vagrant won’t work properly. Important! -
If you do item 2, shared folder will be
/pynqon your pynq_vm; on your host machine, the shared folder is pointing to the location where you runvagrant upinitially. Use this shared folder to move files around between your host machine and your pynq_vm. -
Please don’t install packages or run make in
/pynq, even though it may contain all the files from github./pynqis just a small shared folder. -
The 100GB disk is located at
/sdbuild. Install Xilinx tools here. Run the sdbuild make process in this folder as well. The best practice is to clone the PYNQ repository here. For example,
cd /sdbuild
git clone --recursive https://github.com/Xilinx/PYNQ.git pynq-git
cd pynq-git/sdbuild
make
Hope this will help other users. I will try to include this in the docs.