rumpkernel / rumprun-packages

Ready-made packages of software for running on the Rumprun unikernel
Other
202 stars 80 forks source link

How can I make ISO file to use for virtualbox or vmware? #135

Closed yinwoods closed 7 years ago

yinwoods commented 7 years ago

I use follow command to make ISO file for python3: rumprun iso \ -b images/python.iso,/python/lib/python3.5 \ -b examples/main.iso,/python/lib/python3.5/site-packages \ -e PYTHONHOME=/python \ -- examples/python.bin -m main but it didn't help,can anybody help me? thanks:)

kaveman- commented 7 years ago

genisoimage is used in rumprun-packages. check out the Makefiles for usage examples...

--krishna

On 22 February 2017 at 18:44, 殷成涛 notifications@github.com wrote:

I use follow command to make ISO file for python3: rumprun iso \ -b images/python.iso,/python/lib/python3.5 -b examples/main.iso,/python/lib/python3.5/site-packages -e PYTHONHOME=/python -- examples/python.bin -m main but it didn't help,can anybody help me? thanks:)

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/rumpkernel/rumprun-packages/issues/135, or mute the thread https://github.com/notifications/unsubscribe-auth/AAuw8Lq02a81f4Tnfbx_nEaArSEpWz8Cks5rfDS-gaJpZM4MIoKL .

-- Rivers know this: there is no hurry. We shall get there some day. -- Winnie-the-pooh

yinwoods commented 7 years ago

I try to use main.iso in examples directory, When I start it in virtualbox, it shows: FATAL: Could not read from the boot medium! System halted. How can I fix it?

kaveman- commented 7 years ago

the .iso files are disk images containing the python modules a typical installation expects at runtime. They are not bootable. Please see the package README for usage examples.