9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] Multi monitor setup
@ 2014-03-19 20:13 Szymon Olewniczak
  2014-03-20 11:38 ` Nick Owens
  2014-03-20 14:04 ` Szymon Olewniczak
  0 siblings, 2 replies; 9+ messages in thread
From: Szymon Olewniczak @ 2014-03-19 20:13 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hi,
as a new to Plan 9 I would like to know is there any support to dual
monitor setup? Can I rotate monitor in plan 9? How does support of video
cards looks like in general?

BR,
Szymon



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

* Re: [9fans] Multi monitor setup
  2014-03-19 20:13 [9fans] Multi monitor setup Szymon Olewniczak
@ 2014-03-20 11:38 ` Nick Owens
  2014-03-20 14:04 ` Szymon Olewniczak
  1 sibling, 0 replies; 9+ messages in thread
From: Nick Owens @ 2014-03-20 11:38 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

> is there any support to dual monitor setup?

no.

> Can I rotate monitor in plan 9?

no.

> How does support of video cards looks like in general?

poor.

see /sys/src/9/pc/vga*.c files. most of these are very old. the only
realiable way to use a video card on 32- and 64-bit intel platforms is
to use VESA.

mischief


[-- Attachment #2: Type: application/pgp-signature, Size: 851 bytes --]

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

* Re: [9fans] Multi monitor setup
  2014-03-19 20:13 [9fans] Multi monitor setup Szymon Olewniczak
  2014-03-20 11:38 ` Nick Owens
@ 2014-03-20 14:04 ` Szymon Olewniczak
  2014-03-20 14:15   ` erik quanstrom
  2014-03-20 22:17   ` Nicholas Waples
  1 sibling, 2 replies; 9+ messages in thread
From: Szymon Olewniczak @ 2014-03-20 14:04 UTC (permalink / raw)
  To: "Fans of the OS Plan 9 from Bell Labs"

>> is there any support to dual monitor setup?
>
>no.
>
>> Can I rotate monitor in plan 9?
>
>no.
>
>> How does support of video cards looks like in general?
>
>poor.
>
>see /sys/src/9/pc/vga*.c files. most of these are very old. the only
>realiable way to use a video card on 32- and 64-bit intel platforms is
>to use VESA.

Ok, I understeand. So, maybe it's a good idea as a gsoc proposal. Do you
think that it will be hard to implement this features in nvidia cards, using
nouveau project as a reference? 

BTW. what is a relation between inferno an Plan9. Does the hardware that is
supported by plan9 also works on inferno or it's not such easy relation.


BR,
Szymon

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

* Re: [9fans] Multi monitor setup
  2014-03-20 14:04 ` Szymon Olewniczak
@ 2014-03-20 14:15   ` erik quanstrom
  2014-03-20 19:45     ` Szymon Olewniczak
  2014-03-20 22:17   ` Nicholas Waples
  1 sibling, 1 reply; 9+ messages in thread
From: erik quanstrom @ 2014-03-20 14:15 UTC (permalink / raw)
  To: 9fans

> Ok, I understeand. So, maybe it's a good idea as a gsoc proposal. Do you
> think that it will be hard to implement this features in nvidia cards, using
> nouveau project as a reference?

yes, it would be quite tedious.  the line between tedious and difficult depends
on how much you can keep in your head at one time.  this is grand master
level tedium.

- erik



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

* Re: [9fans] Multi monitor setup
  2014-03-20 14:15   ` erik quanstrom
@ 2014-03-20 19:45     ` Szymon Olewniczak
  0 siblings, 0 replies; 9+ messages in thread
From: Szymon Olewniczak @ 2014-03-20 19:45 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

> > Ok, I understeand. So, maybe it's a good idea as a gsoc proposal. Do you
> > think that it will be hard to implement this features in nvidia cards, using
> > nouveau project as a reference?
>
> yes, it would be quite tedious.  the line between tedious and difficult depends
> on how much you can keep in your head at one time.  this is grand master
> level tedium.
But is there any less tedious way of adding multi monitor setup to
plan9? Maybe it will be exciting for someone who has never had any
expirience with vga drivers development(at least at the begining.). Can
you recommend some materials that can allow me start with vga drivers
development in general and specifically to plan9 (other than source codes)?
Maybe some of you can tell me more about that?

I've decided to look at plan9 becouse after a rough estimation of
existing OS I find it best designed and most interesting. I don't know
much about OS implementation but I think that this community can be the
perfect place to start. I will certainly ask a lot of stupid questions
at the beginnig but eventually you can bring up a new generation of
developers :). Would you like to help me or the project doesn't need
such persons like me?

BR,
Szymon



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

* Re: [9fans] Multi monitor setup
  2014-03-20 14:04 ` Szymon Olewniczak
  2014-03-20 14:15   ` erik quanstrom
@ 2014-03-20 22:17   ` Nicholas Waples
  2014-03-21  0:39     ` erik quanstrom
  1 sibling, 1 reply; 9+ messages in thread
From: Nicholas Waples @ 2014-03-20 22:17 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

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

On 21 Mar 2014 01:08, "Szymon Olewniczak" <szymon.olewniczak@rid.pl> wrote:
>
> >> is there any support to dual monitor setup?
> >
> >no.
> >
> >> Can I rotate monitor in plan 9?
> >
> >no.
> >
> >> How does support of video cards looks like in general?
> >
> >poor.
> >
> >see /sys/src/9/pc/vga*.c files. most of these are very old. the only
> >realiable way to use a video card on 32- and 64-bit intel platforms is
> >to use VESA.
>
> Ok, I understeand. So, maybe it's a good idea as a gsoc proposal. Do you
> think that it will be hard to implement this features in nvidia cards,
using
> nouveau project as a reference?
>

I did hack up basic dual monitor support for the nvidia drivers, but that
was a long time ago.
http://9fans.net/archive/2004/09/146

[-- Attachment #2: Type: text/html, Size: 1149 bytes --]

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

* Re: [9fans] Multi monitor setup
  2014-03-20 22:17   ` Nicholas Waples
@ 2014-03-21  0:39     ` erik quanstrom
  2014-03-21  8:44       ` Jiten Pathy
  0 siblings, 1 reply; 9+ messages in thread
From: erik quanstrom @ 2014-03-21  0:39 UTC (permalink / raw)
  To: 9fans

> I did hack up basic dual monitor support for the nvidia drivers, but that
> was a long time ago.
> http://9fans.net/archive/2004/09/146

cool!

- erik



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

* Re: [9fans] Multi monitor setup
  2014-03-21  0:39     ` erik quanstrom
@ 2014-03-21  8:44       ` Jiten Pathy
  2014-03-21  9:11         ` Jiten Pathy
  0 siblings, 1 reply; 9+ messages in thread
From: Jiten Pathy @ 2014-03-21  8:44 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Would like to present AEG: Automatic Exploit Generation. Will work?

On Thu, Mar 20, 2014 at 5:39 PM, erik quanstrom <quanstro@quanstro.net> wrote:
>> I did hack up basic dual monitor support for the nvidia drivers, but that
>> was a long time ago.
>> http://9fans.net/archive/2004/09/146
>
> cool!
>
> - erik
>



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

* Re: [9fans] Multi monitor setup
  2014-03-21  8:44       ` Jiten Pathy
@ 2014-03-21  9:11         ` Jiten Pathy
  0 siblings, 0 replies; 9+ messages in thread
From: Jiten Pathy @ 2014-03-21  9:11 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

wrong address. Sorry.

On Fri, Mar 21, 2014 at 1:44 AM, Jiten Pathy
<jpathy@mail.nanosouffle.net> wrote:
> Would like to present AEG: Automatic Exploit Generation. Will work?
>
> On Thu, Mar 20, 2014 at 5:39 PM, erik quanstrom <quanstro@quanstro.net> wrote:
>>> I did hack up basic dual monitor support for the nvidia drivers, but that
>>> was a long time ago.
>>> http://9fans.net/archive/2004/09/146
>>
>> cool!
>>
>> - erik
>>



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

end of thread, other threads:[~2014-03-21  9:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-03-19 20:13 [9fans] Multi monitor setup Szymon Olewniczak
2014-03-20 11:38 ` Nick Owens
2014-03-20 14:04 ` Szymon Olewniczak
2014-03-20 14:15   ` erik quanstrom
2014-03-20 19:45     ` Szymon Olewniczak
2014-03-20 22:17   ` Nicholas Waples
2014-03-21  0:39     ` erik quanstrom
2014-03-21  8:44       ` Jiten Pathy
2014-03-21  9:11         ` Jiten Pathy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).