Hi,
I have successfully built from the source (both for QEMU and RAW), and was looking for some detailed instructions as to how to create a bootable image that I can run as a VM. I understand that Vmware support is still planned for some time in the future, but was wondering if there was a way to create some “.iso” from which one can install the O/S and have it run (even if as an emulated x86-64 bit machine).
BTW, I have read the Wiki pages and have not been able to figure out how the OSV boots and runs:
- If I have a Tomcat installed, will it start it automatically ? If so, is there some way to stop/re-start Tomcat so I can upgrade the application or Tomcat itself – or does it require a new image ?
- How is the network configured ? I saw that some ways that this can be configured, but is there detailed documentation (files, commands, etc.) ?
- Is there some SSHD daemon running + rudimentary shell that one can use to access the VM remotely ? How can it be configured ?
Bottom line – is there some detailed documentation as to how to configure the services that are running on an OSV instance, what are the available CLI commands, etc. ?
Thanks – great work so far (hope I can make it run eventually…)
Lyor G.
Hi,
I have successfully built from the source (both for QEMU and RAW), and was looking for some detailed instructions as to how to create a bootable image that I can run as a VM. I understand that Vmware support is still planned for some time in the future, but was wondering if there was a way to create some “.iso” from which one can install the O/S and have it run (even if as an emulated x86-64 bit machine).
BTW, I have read the Wiki pages and have not been able to figure out how the OSV boots and runs:
- If I have a Tomcat installed, will it start it automatically ? If so, is there some way to stop/re-start Tomcat so I can upgrade the application or Tomcat itself – or does it require a new image ?
- How is the network configured ? I saw that some ways that this can be configured, but is there detailed documentation (files, commands, etc.) ?
- Is there some SSHD daemon running + rudimentary shell that one can use to access the VM remotely ? How can it be configured ?
Bottom line – is there some detailed documentation as to how to configure the services that are running on an OSV instance, what are the available CLI commands, etc. ?
Hi,Hi,On Mon, Dec 23, 2013 at 10:11 AM, Lyor Goldstein <lgold...@vmware.com> wrote:
Hi,
I have successfully built from the source (both for QEMU and RAW), and was looking for some detailed instructions as to how to create a bootable image that I can run as a VM. I understand that Vmware support is still planned for some time in the future, but was wondering if there was a way to create some “.iso” from which one can install the O/S and have it run (even if as an emulated x86-64 bit machine).
BTW, I have read the Wiki pages and have not been able to figure out how the OSV boots and runs:
- If I have a Tomcat installed, will it start it automatically ? If so, is there some way to stop/re-start Tomcat so I can upgrade the application or Tomcat itself – or does it require a new image ?
Our build does not automatically copy tomcat. We have a WIKI page which describes how to build and run a tomcat image: https://github.com/cloudius-systems/osv/wiki/Running-apache-tomcatFeedback welcome.
- How is the network configured ? I saw that some ways that this can be configured, but is there detailed documentation (files, commands, etc.) ?
- Is there some SSHD daemon running + rudimentary shell that one can use to access the VM remotely ? How can it be configured ?
Bottom line – is there some detailed documentation as to how to configure the services that are running on an OSV instance, what are the available CLI commands, etc. ?
You can find some resources here: https://github.com/cloudius-systems/osv/wiki
--
You received this message because you are subscribed to the Google Groups "OSv Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to osv-dev+u...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
btw, the point about having an .iso image is interesting. Instead of the current cpio-over-tcp thing we have, we could easily make a bootable .iso image with genisoimage and use that to install osv. This would be useful for more traditional installation flows.
We'd need an iso9660 boot loader, a file system driver, and an IDE driver, so it's not immediate, but certainly something for the future.
--
You received this message because you are subscribed to the Google Groups "OSv Development" group.
To unsubscribe from this group and stop receiving emails from it, send an email to osv-dev+unsubscribe@googlegroups.com.
On Mon, Dec 30, 2013 at 11:10 AM, Avi Kivity <a...@cloudius-systems.com> wrote:
btw, the point about having an .iso image is interesting. Instead of the current cpio-over-tcp thing we have, we could easily make a bootable .iso image with genisoimage and use that to install osv. This would be useful for more traditional installation flows.
How would this work? Because usually one does not write into a .iso image, I assume you mean we'll have both the .iso image, where we get the kernel and the files to install, and a second empty image into which we copy OSv on first boot, and later can write to.
If this is what you meant, then we don't really need cdrom support for this: We can also use the ramfs stuff like we did initially, but instead of always running with ramfs, on the first boot we can copy everything from it to the second image, and in later boots, use the second image instead of ramfs.