All of lore.kernel.org
 help / color / mirror / Atom feed
* port OS to XEN
@ 2010-06-24  2:42 Sean Shoufu Luo
  2010-06-24  3:01 ` Min Lee
  0 siblings, 1 reply; 10+ messages in thread
From: Sean Shoufu Luo @ 2010-06-24  2:42 UTC (permalink / raw)
  To: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 449 bytes --]

Hello everyone,

I'm studying XEN these days, and totally a newbie for XEN world. Recently,
I'm assigned to move our OS to run on XEN, I means, paravitualization. I
know a bit about XEN technique, and I tried to look into Linux code, but it
seems too many threads to get understood it ... Now, I have no idea how
to proceed my project... Can anyone give some advice?

Any suggestion from you will be greatly appreciated!

Thank you in advance!
Sean

[-- Attachment #1.2: Type: text/html, Size: 544 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: port OS to XEN
  2010-06-24  2:42 port OS to XEN Sean Shoufu Luo
@ 2010-06-24  3:01 ` Min Lee
  2010-06-24  3:13   ` Sean Shoufu Luo
  0 siblings, 1 reply; 10+ messages in thread
From: Min Lee @ 2010-06-24  3:01 UTC (permalink / raw)
  To: xen-devel

see extras/minios
it's example os which runs on Xen
Thanks
Min

On 6/23/2010 10:42 PM, Sean Shoufu Luo wrote:
> Hello everyone,
>
> I'm studying XEN these days, and totally a newbie for XEN world.
> Recently, I'm assigned to move our OS to run on XEN, I means,
> paravitualization. I know a bit about XEN technique, and I tried to look
> into Linux code, but it seems too many threads to get understood it ...
> Now, I have no idea how to proceed my project... Can anyone give some
> advice?
>
> Any suggestion from you will be greatly appreciated!
>
> Thank you in advance!
> Sean
>
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: port OS to XEN
  2010-06-24  3:01 ` Min Lee
@ 2010-06-24  3:13   ` Sean Shoufu Luo
  2010-11-28  6:34     ` madhuri
  0 siblings, 1 reply; 10+ messages in thread
From: Sean Shoufu Luo @ 2010-06-24  3:13 UTC (permalink / raw)
  To: Min Lee; +Cc: xen-devel


[-- Attachment #1.1: Type: text/plain, Size: 1472 bytes --]

Thanks a million, Min. If you can tell me where I can get extras/minios will
be greatly appreciated!


Another problem,
I notice there is project named HXEN, aiming to run XEN core hypervisor on
regular operating system and currently support windows and Mac X. Does that
mean I can install XEN on windows as an application and create my own
virtual machine on it? And does it use the paravirtualization technique?
(Actually, I need a environment to test.)


Best Regards,
Sean


On Thu, Jun 24, 2010 at 11:01 AM, Min Lee <min.lee@gatech.edu> wrote:

> see extras/minios
> it's example os which runs on Xen
> Thanks
> Min
>
>
> On 6/23/2010 10:42 PM, Sean Shoufu Luo wrote:
>
>> Hello everyone,
>>
>> I'm studying XEN these days, and totally a newbie for XEN world.
>> Recently, I'm assigned to move our OS to run on XEN, I means,
>> paravitualization. I know a bit about XEN technique, and I tried to look
>> into Linux code, but it seems too many threads to get understood it ...
>> Now, I have no idea how to proceed my project... Can anyone give some
>> advice?
>>
>> Any suggestion from you will be greatly appreciated!
>>
>> Thank you in advance!
>> Sean
>>
>>
>>
>> _______________________________________________
>> Xen-devel mailing list
>> Xen-devel@lists.xensource.com
>> http://lists.xensource.com/xen-devel
>>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>

[-- Attachment #1.2: Type: text/html, Size: 2393 bytes --]

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: port OS to XEN
  2010-06-24  3:13   ` Sean Shoufu Luo
@ 2010-11-28  6:34     ` madhuri
  2010-11-28  6:55       ` Dong, Eddie
  2010-11-28 10:27       ` Ian Campbell
  0 siblings, 2 replies; 10+ messages in thread
From: madhuri @ 2010-11-28  6:34 UTC (permalink / raw)
  To: xen-devel


Hi,
I wish to port my OS to run on Xen as a DomU. Could you please guide me or
give  some reference material as a starting point.
Thanks a lot,
Madhuri
-- 
View this message in context: http://xen.1045712.n5.nabble.com/port-OS-to-XEN-tp2520850p3283197.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Re: port OS to XEN
  2010-11-28  6:34     ` madhuri
@ 2010-11-28  6:55       ` Dong, Eddie
  2010-11-28  7:12         ` madhuri
  2010-11-28 10:27       ` Ian Campbell
  1 sibling, 1 reply; 10+ messages in thread
From: Dong, Eddie @ 2010-11-28  6:55 UTC (permalink / raw)
  To: madhuri, xen-devel@lists.xensource.com; +Cc: Dong, Eddie

[-- Attachment #1: Type: text/plain, Size: 837 bytes --]

Xen support unmodied guest OS. So you can just run your OS in HVM guest except your OS used un-documented features.

-----Original Message-----
From: xen-devel-bounces@lists.xensource.com [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of madhuri
Sent: 2010年11月28日 14:35
To: xen-devel@lists.xensource.com
Subject: [Xen-devel] Re: port OS to XEN


Hi,
I wish to port my OS to run on Xen as a DomU. Could you please guide me or
give  some reference material as a starting point.
Thanks a lot,
Madhuri
-- 
View this message in context: http://xen.1045712.n5.nabble.com/port-OS-to-XEN-tp2520850p3283197.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: port OS to XEN
  2010-11-28  6:55       ` Dong, Eddie
@ 2010-11-28  7:12         ` madhuri
  2010-11-28  7:21           ` Dong, Eddie
  2010-11-28  9:46           ` George Shuklin
  0 siblings, 2 replies; 10+ messages in thread
From: madhuri @ 2010-11-28  7:12 UTC (permalink / raw)
  To: xen-devel


Thanks! However if i wish to use it as a modified guest ie..run it
para-virtualized, how should I do it. I have the Xen -Interface manual...but
I was wondering if there is an example I could follow?
Thanks,
Madhuri
-- 
View this message in context: http://xen.1045712.n5.nabble.com/port-OS-to-XEN-tp2520850p3283203.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* RE: Re: port OS to XEN
  2010-11-28  7:12         ` madhuri
@ 2010-11-28  7:21           ` Dong, Eddie
  2010-11-28  7:51             ` madhuri
  2010-11-28  9:46           ` George Shuklin
  1 sibling, 1 reply; 10+ messages in thread
From: Dong, Eddie @ 2010-11-28  7:21 UTC (permalink / raw)
  To: madhuri, xen-devel@lists.xensource.com; +Cc: Dong, Eddie

[-- Attachment #1: Type: text/plain, Size: 822 bytes --]

For research or for legacy hardware? 

-----Original Message-----
From: xen-devel-bounces@lists.xensource.com [mailto:xen-devel-bounces@lists.xensource.com] On Behalf Of madhuri
Sent: 2010年11月28日 15:12
To: xen-devel@lists.xensource.com
Subject: [Xen-devel] Re: port OS to XEN


Thanks! However if i wish to use it as a modified guest ie..run it
para-virtualized, how should I do it. I have the Xen -Interface manual...but
I was wondering if there is an example I could follow?
Thanks,
Madhuri
-- 
View this message in context: http://xen.1045712.n5.nabble.com/port-OS-to-XEN-tp2520850p3283203.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

[-- Attachment #2: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: port OS to XEN
  2010-11-28  7:21           ` Dong, Eddie
@ 2010-11-28  7:51             ` madhuri
  0 siblings, 0 replies; 10+ messages in thread
From: madhuri @ 2010-11-28  7:51 UTC (permalink / raw)
  To: xen-devel


For research.

Thanks,
Madhuri
-- 
View this message in context: http://xen.1045712.n5.nabble.com/port-OS-to-XEN-tp2520850p3283208.html
Sent from the Xen - Dev mailing list archive at Nabble.com.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Re: port OS to XEN
  2010-11-28  7:12         ` madhuri
  2010-11-28  7:21           ` Dong, Eddie
@ 2010-11-28  9:46           ` George Shuklin
  1 sibling, 0 replies; 10+ messages in thread
From: George Shuklin @ 2010-11-28  9:46 UTC (permalink / raw)
  To: xen-devel

"The Definitive Guide to Xen" is about the best source of information
for this. It is outdated in some topics, but AFAIK it is single
available book about how to write own PV kernels for Xen. 
And also very good book about Xen.

В Сбт, 27/11/2010 в 23:12 -0800, madhuri пишет:
> Thanks! However if i wish to use it as a modified guest ie..run it
> para-virtualized, how should I do it. I have the Xen -Interface manual...but
> I was wondering if there is an example I could follow?
> Thanks,
> Madhuri

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Re: port OS to XEN
  2010-11-28  6:34     ` madhuri
  2010-11-28  6:55       ` Dong, Eddie
@ 2010-11-28 10:27       ` Ian Campbell
  1 sibling, 0 replies; 10+ messages in thread
From: Ian Campbell @ 2010-11-28 10:27 UTC (permalink / raw)
  To: madhuri; +Cc: xen-devel@lists.xensource.com

On Sun, 2010-11-28 at 06:34 +0000, madhuri wrote:
> I wish to port my OS to run on Xen as a DomU. Could you please guide
> me or give some reference material as a starting point. 

You might find MiniOS (from extras/mini-os in the Xen source) a
tractable example of a PV OS. Any of the other existing PV OSes might
also be a useful reference.

Ian.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2010-11-28 10:27 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-24  2:42 port OS to XEN Sean Shoufu Luo
2010-06-24  3:01 ` Min Lee
2010-06-24  3:13   ` Sean Shoufu Luo
2010-11-28  6:34     ` madhuri
2010-11-28  6:55       ` Dong, Eddie
2010-11-28  7:12         ` madhuri
2010-11-28  7:21           ` Dong, Eddie
2010-11-28  7:51             ` madhuri
2010-11-28  9:46           ` George Shuklin
2010-11-28 10:27       ` Ian Campbell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.