Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-24 Thread stompdagg...@yahoo.com
On Monday, March 24, 2014 2:23 PM, Fred  wrote:
 
On 03/15/14 04:34, stompdagg...@yahoo.com wrote:

here is a simple test case that reproduces the issue on my machine:
>dagg@NCC-5001-D ~/workspace $ cat open_example.c
>#include 
>#include 
>#include 
>#include 
>#include 
> 
>int main()
>{
>    char *param1 = "ok";
>    char *param2 = ".";
>    int filedesc = open("/dev/dri/card1", O_RDWR, 0);
>    if (filedesc) {
>    param1 = "ERROR: ";
>    param2 = strerror(errno);
>    }
>    printf("fd = %d, status = %s%s\n", filedesc, param1,
param2);
>    close(filedesc);
>
>    return 0;
>}dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o
open_example && ./open_example 
>fd = -1, status = ERROR: Invalid argument
>
>
>
>
>On Friday, March 14, 2014 4:22 PM, "stompdagg...@yahoo.com" 
> wrote:
> 
>On Tuesday, March 11, 2014 8:45 AM, "stompdagg...@yahoo.com" 
> wrote:
> 
>>On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer  wrote:
> 
>>On Mon, 2014-03-10 at 08:23 -0700, stompdagg...@yahoo.com wrote: 
>>
>>> 
>>> 
>>> >On
  Monday, March 10, 2014
  5:58 AM, Michel Dänzer
  
>>> wrote:
>>> 
>>> >On Sam,
  2014-03-08 at 11:41
  -0800, stompdagg...@yahoo.com 
wrote:
>>> >
>>> >>
  >On Sat, Mar 8,
  2014 at 2:56 AM, 
stompdagg...@yahoo.com
>>> >> >
>>> >>
  >> [    51.829]
  (EE) RADEON(0): [drm]
  Failed to open DRM
  device for
>>> >>
  >>
  pci::06:00.0: No
  such file or directory
>>> >
>>> >'No such
  file or directory'
  sounds like something
  is deleting
>>> >your
  /dev/dri/card* files,
  or not creating them
  in the first place.
>>> >Maybe
  check your udev setup.
>>> >
>>> >If it
  only happens with a
  3.13 kernel but not
  with a 3.12 one,
>>> another
>>> >option is
  to bisect the kernel.
>.> 
>.> Greetings
  Michel,
>.> 
>.> dri node do
  exists, see:
>>> dagg@NCC-5001-D ~ $ ll /dev/dri
>>> total 0
>>> crw-rw+ 1
  root video 226,  0 Mar
  10 09:27 card0
>>> crw-rw+ 1
  root video 226,  1 Mar
  10 09:27 card1
>>> crw-rw+ 1
  root video 226,  2 Mar
  10 09:27 card2
>>> crw-rw  1
  root video 226, 64 Mar
  10 09:27 controlD64
>>> crw-rw  1
  root video 226, 65 Mar
  10 09:27 controlD65
>>> crw-rw  1
  root video 226, 66 Mar
  10 09:27 controlD66
>>> 
>>> I think that
  the way to find the
  cause on my part is to
  check the
>>> origin of
  

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-15 Thread stompdagg...@yahoo.com


On Saturday, March 15, 2014 4:41 PM, "stompdagg...@yahoo.com" 
 wrote:
 


On Saturday, March 15, 2014 3:33 PM, Alex Deucher  wrote:
 
On Sat, Mar 15, 2014 at 4:34 AM, stompdagg...@yahoo.com
 wrote:
> here is a simple test case that
 reproduces the issue on my machine:
> dagg@NCC-5001-D ~/workspace $ cat open_example.c
> #include 
> #include 
> #include 
> #include 
> #include 
>
> int main()
> {
>         char *param1 = "ok";
>         char *param2 = ".";
>         int filedesc = open("/dev/dri/card1", O_RDWR, 0);
>         if (filedesc) {
>                 param1 = "ERROR: ";
>             
    param2 = strerror(errno);
>         }
>         printf("fd = %d, status = %s%s\n", filedesc, param1, param2);
>         close(filedesc);
>
>         return 0;
> }dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o open_example &&
> ./open_example
> fd = -1, status = ERROR: Invalid argument
>

Does booting with radeon.runpm=0 on the kernel command line in grub
fix it?  If so, it should be fixed with these patches:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9babd35ad72af631547c7ca294bc2e931cc40e58
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=7848865914c6a63ead674f0f5604b77df7d3874f

Alex

Greetings Alex, it work with radeon.runpm=0, I'll test the patches now and 
report back. 

combination of both patches (the first was existing already in 3,13,6) the gpus 
are working again.

Thanks!
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-15 Thread stompdagg...@yahoo.com


On Saturday, March 15, 2014 3:33 PM, Alex Deucher  wrote:
 
On Sat, Mar 15, 2014 at 4:34 AM, stompdagg...@yahoo.com
 wrote:
> here is a simple test case that reproduces the issue on my machine:
> dagg@NCC-5001-D ~/workspace $ cat open_example.c
> #include 
> #include 
> #include 
> #include 
> #include 
>
> int main()
> {
>         char *param1 = "ok";
>         char *param2 = ".";
>         int filedesc = open("/dev/dri/card1", O_RDWR, 0);
>         if (filedesc) {
>                 param1 = "ERROR: ";
>                 param2 = strerror(errno);
>         }
>         printf("fd = %d, status = %s%s\n", filedesc, param1, param2);
>         close(filedesc);
>
>         return 0;
> }dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o open_example &&
> ./open_example
> fd = -1, status = ERROR: Invalid argument
>

Does booting with radeon.runpm=0 on the kernel command line in grub
fix it?  If so, it should be fixed with these patches:
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9babd35ad72af631547c7ca294bc2e931cc40e58
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=7848865914c6a63ead674f0f5604b77df7d3874f

Alex

Greetings Alex, it work with radeon.runpm=0, I'll test the patches now and 
report back. ___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-15 Thread stompdagg...@yahoo.com
here is a simple test case that reproduces the issue on my machine:
dagg@NCC-5001-D ~/workspace $ cat open_example.c
#include 
#include 
#include 
#include 
#include 
 
int main()
{
    char *param1 = "ok";
    char *param2 = ".";
    int filedesc = open("/dev/dri/card1", O_RDWR, 0);
    if (filedesc) {
    param1 = "ERROR: ";
    param2 = strerror(errno);
    }
    printf("fd = %d, status = %s%s\n", filedesc, param1, param2);
    close(filedesc);

    return 0;
}dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o open_example && 
./open_example 
fd = -1, status = ERROR: Invalid argument




On Friday, March 14, 2014 4:22 PM, "stompdagg...@yahoo.com" 
 wrote:
 
On Tuesday, March 11, 2014 8:45 AM, "stompdagg...@yahoo.com" 
 wrote:
 
>On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer  wrote:
 
>On Mon, 2014-03-10 at 08:23 -0700, stompdagg...@yahoo.com wrote:
>
>> 
>> 
>> >On Monday, March 10, 2014 5:58 AM, Michel Dänzer 
>> wrote:
>> 
>> >On Sam, 2014-03-08 at 11:41 -0800, stompdagg...@yahoo.com wrote:
>> >
>> >> >On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com
>> >> >
>> >> >> [    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for
>> >> >> pci::06:00.0: No such file or directory
>> >
>> >'No such file or directory' sounds like something is deleting
>>
 >your /dev/dri/card* files, or not creating them in the first place.
>> >Maybe check your udev setup.
>> >
>> >If it only happens with a 3.13 kernel but not with a 3.12 one,
>> another
>> >option is to bisect the kernel.
.> 
.> Greetings Michel,
.> 
.> dri node do exists, see:
>> dagg@NCC-5001-D ~ $ ll /dev/dri
>> total 0
>> crw-rw+ 1 root video 226,  0 Mar 10 09:27 card0
>> crw-rw+ 1 root video 226,  1 Mar 10 09:27 card1
>> crw-rw+ 1 root video 226,  2 Mar 10 09:27 card2
>>
 crw-rw  1 root video 226, 64 Mar 10
 09:27 controlD64
>> crw-rw  1 root video 226, 65 Mar 10 09:27 controlD65
>> crw-rw  1 root video 226, 66 Mar 10 09:27 controlD66
>> 
>> I think that the way to find the cause on my part is to check the
>> origin of that msg in Xorg.log.
>> 
>> is that a xserver msg or xf86-video-ati msg?>
>
>The message is from the radeon driver, but it's because drmOpen() in
>libdrm fails. It would indeed be interesting to track down where the 'No
>such file or directory' error originates from.

will do, when I'll have more info, I'll update.

Greetings Michel,

I've tried to track the source if that error,
 I've enabled dbg prints in libdrm and found this:
(II) [KMS] Kernel modesetting enabled.
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci::06:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci::00:02.0
drmOpenDevice: node name is /dev/dri/card1
drmOpenDevice: open result is -1, (Invalid argument)
drmOpenByBusid: drmOpenMinor returns -22
drmOpenDevice: node name is /dev/dri/card2
drmOpenDevice: open result is -1, (Invalid argument)

looking in the code I see this:
    fd = open(buf, O_RDWR, 0);
    drmMsg("drmOpenDevice: open result is %d, (%s)\n",
    fd, fd < 0 ? strerror(errno) :
 "OK");
    if (fd >= 0)
    return fd;

I think that the issue might be that the file cannot be opened for that mode as 
the path is printed above and it is ok.

any ideas what might it be?


___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-14 Thread stompdagg...@yahoo.com
On Tuesday, March 11, 2014 8:45 AM, "stompdagg...@yahoo.com" 
 wrote:
 
>On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer  wrote:
 
>On Mon, 2014-03-10 at 08:23 -0700, stompdagg...@yahoo.com wrote:
>
>> 
>> 
>> >On Monday, March 10, 2014 5:58 AM, Michel Dänzer 
>> wrote:
>> 
>> >On Sam, 2014-03-08 at 11:41 -0800, stompdagg...@yahoo.com wrote:
>> >
>> >> >On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com
>> >> >
>> >> >> [    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for
>> >> >> pci::06:00.0: No such file or directory
>> >
>> >'No such file or directory' sounds like something is deleting
>>
 >your /dev/dri/card* files, or not creating them in the first place.
>> >Maybe check your udev setup.
>> >
>> >If it only happens with a 3.13 kernel but not with a 3.12 one,
>> another
>> >option is to bisect the kernel.
.> 
.> Greetings Michel,
.> 
.> dri node do exists, see:
>> dagg@NCC-5001-D ~ $ ll /dev/dri
>> total 0
>> crw-rw+ 1 root video 226,  0 Mar 10 09:27 card0
>> crw-rw+ 1 root video 226,  1 Mar 10 09:27 card1
>> crw-rw+ 1 root video 226,  2 Mar 10 09:27 card2
>> crw-rw  1 root video 226, 64 Mar 10
 09:27 controlD64
>> crw-rw  1 root video 226, 65 Mar 10 09:27 controlD65
>> crw-rw  1 root video 226, 66 Mar 10 09:27 controlD66
>> 
>> I think that the way to find the cause on my part is to check the
>> origin of that msg in Xorg.log.
>> 
>> is that a xserver msg or xf86-video-ati msg?>
>
>The message is from the radeon driver, but it's because drmOpen() in
>libdrm fails. It would indeed be interesting to track down where the 'No
>such file or directory' error originates from.

will do, when I'll have more info, I'll update.

Greetings Michel,

I've tried to track the source if that error, I've enabled dbg prints in libdrm 
and found this:
(II) [KMS] Kernel modesetting enabled.
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: Searching for BusID pci::06:00.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 11, (OK)
drmOpenByBusid: drmOpenMinor returns 11
drmOpenByBusid: drmGetBusid reports pci::00:02.0
drmOpenDevice: node name is /dev/dri/card1
drmOpenDevice: open result is -1, (Invalid argument)
drmOpenByBusid: drmOpenMinor returns -22
drmOpenDevice: node name is /dev/dri/card2
drmOpenDevice: open result is -1, (Invalid argument)

looking in the code I see this:
    fd = open(buf, O_RDWR, 0);
    drmMsg("drmOpenDevice: open result is %d, (%s)\n",
    fd, fd < 0 ? strerror(errno) : "OK");
    if (fd >= 0)
    return fd;

I think that the issue might be that the file cannot be opened for that mode as 
the path is printed above and it is ok.

any ideas what might it be?
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-10 Thread stompdagg...@yahoo.com
>On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer  wrote:
 
>On Mon, 2014-03-10 at 08:23 -0700, stompdagg...@yahoo.com wrote:
>
>> 
>> 
>> >On Monday, March 10, 2014 5:58 AM, Michel Dänzer 
>> wrote:
>> 
>> >On Sam, 2014-03-08 at 11:41 -0800, stompdagg...@yahoo.com wrote:
>> >
>> >> >On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com
>> >> >
>> >> >> [    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for
>> >> >> pci::06:00.0: No such file or directory
>> >
>> >'No such file or directory' sounds like something is deleting
>> >your /dev/dri/card* files, or not creating them in the first place.
>> >Maybe check your udev setup.
>> >
>> >If it only happens with a 3.13 kernel but not with a 3.12 one,
>> another
>> >option is to bisect the kernel.
.> 
.> Greetings Michel,
.> 
.> dri node do exists, see:
>> dagg@NCC-5001-D ~ $ ll /dev/dri
>> total 0
>> crw-rw+ 1 root video 226,  0 Mar 10 09:27 card0
>> crw-rw+ 1 root video 226,  1 Mar 10 09:27 card1
>> crw-rw+ 1 root video 226,  2 Mar 10 09:27 card2
>> crw-rw  1 root video 226, 64 Mar 10 09:27 controlD64
>> crw-rw  1 root video 226, 65 Mar 10 09:27 controlD65
>> crw-rw  1 root video 226, 66 Mar 10 09:27 controlD66
>> 
>> I think that the way to find the cause on my part is to check the
>> origin of that msg in Xorg.log.
>> 
>> is that a xserver msg or xf86-video-ati msg?>
>
>The message is from the radeon driver, but it's because drmOpen() in
>libdrm fails. It would indeed be interesting to track down where the 'No
>such file or directory' error originates from.

will do, when I'll have more info, I'll update.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-10 Thread stompdagg...@yahoo.com



>On Monday, March 10, 2014 5:58 AM, Michel Dänzer  wrote:
 
>On Sam, 2014-03-08 at 11:41 -0800, stompdagg...@yahoo.com wrote:
>
>> >On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com
>> >
>> >> [    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for
>> >> pci::06:00.0: No such file or directory
>
>'No such file or directory' sounds like something is deleting
>your /dev/dri/card* files, or not creating them in the first place.
>Maybe check your udev setup.
>
>If it only happens with a 3.13 kernel but not with a 3.12 one, another
>option is to bisect the kernel.

Greetings Michel,

dri node do exists, see:
dagg@NCC-5001-D ~ $ ll /dev/dri
total 0
crw-rw+ 1 root video 226,  0 Mar 10 09:27 card0
crw-rw+ 1 root video 226,  1 Mar 10 09:27 card1
crw-rw+ 1 root video 226,  2 Mar 10 09:27 card2
crw-rw  1 root video 226, 64 Mar 10 09:27 controlD64
crw-rw  1 root video 226, 65 Mar 10 09:27 controlD65
crw-rw  1 root video 226, 66 Mar 10 09:27 controlD66

I think that the way to find the cause on my part is to check the origin of 
that msg in Xorg.log.

is that a xserver msg or xf86-video-ati msg?
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-08 Thread stompdagg...@yahoo.com
>On Saturday, March 8, 2014 9:01 PM, Alex Deucher  wrote:
 
>On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com
>
> wrote:
>> greetings,
>>
>> since I've updated my kernel to 3.13.x I'm unable to start X on my radeon
>> cards.
>>
>> the setup works great in kernel 3.12.8, here is part of Xorg log for that
>> adaper:
>> [    51.782] (II) [KMS] Kernel modesetting enabled.
>> [    51.782] (II) RADEON(0): RADEONPreInit_KMS
>> [    51.782] (II) RADEON(0): Creating default Display subsection in Screen
>> section
>>         "Default Screen Section" for depth/fbbpp 24/32
>> [    51.782] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
>> [    51.782] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp
>> pixmaps)
>> [    51.782] (==) RADEON(0): Default visual is TrueColor
>> [    51.782] (==) RADEON(0): RGB weight 888
>> [    51.782] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
>> [    51.782] (--) RADEON(0): Chipset: "ATI Radeon HD 3600 XT" (ChipID =
>> 0x9598)
>> [    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for
>> pci::06:00.0: No such file or directory
>> [    51.829] (EE) RADEON(0): Kernel modesetting setup failed
>> [    51.829] (II) RADEON(0): RADEONFreeScreen
>> [    51.829] (II) UnloadModule: "radeon"
>> [    51.829] (EE) Screen(s) found, but none have a usable configuration.
>> [    51.829] (EE)
>> Fatal server error:
>> [    51.829] (EE) no screens found(EE)
>> [    51.829] (EE)
>> Please consult the The X.Org Foundation support
>>          at http://wiki.x.org
>>
>> is that a X bug? what is the right place to debug it, X or xf86-video-ati?>
>
>There's some problems with your kernel.  Check your dmesg output and
>make sure the radeon kernel driver loaded properly.  Depending on your
>setup you may be missing the necessary firmware files from your
>initrd.
>
>Alex

Greetings Alex,

I've double checked both my kernel config and dmesg but haven't found any 
issue, I might be missing it thought.
my fw files are built into the kernel,

here are some outputs:
dmesg: http://bpaste.net/show/186582/
kernel config: http://bpaste.net/show/186583/
lspci: http://bpaste.net/show/186584/

note that my setup is a multiseat setup and both of my radeon cards are showing 
the same symptoms.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

RADEON(0): [drm] Failed to open DRM device: No such file or directory error

2014-03-07 Thread stompdagg...@yahoo.com
greetings,

since I've updated my kernel to 3.13.x I'm unable to start X on my radeon cards.

the setup works great in kernel 3.12.8, here is part of Xorg log for that 
adaper:
[    51.782] (II) [KMS] Kernel modesetting enabled.
[    51.782] (II) RADEON(0): RADEONPreInit_KMS
[    51.782] (II) RADEON(0): Creating default Display subsection in Screen 
section
    "Default Screen Section" for depth/fbbpp 24/32
[    51.782] (==) RADEON(0): Depth 24, (--) framebuffer bpp 32
[    51.782] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp 
pixmaps)
[    51.782] (==) RADEON(0): Default visual is TrueColor
[    51.782] (==) RADEON(0): RGB weight 888
[    51.782] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
[    51.782] (--) RADEON(0): Chipset: "ATI Radeon HD 3600 XT" (ChipID = 0x9598)
[    51.829] (EE) RADEON(0): [drm] Failed to open DRM device for 
pci::06:00.0: No such file or directory
[    51.829] (EE) RADEON(0): Kernel modesetting setup failed
[    51.829] (II) RADEON(0): RADEONFreeScreen
[    51.829] (II) UnloadModule: "radeon"
[    51.829] (EE) Screen(s) found, but none have a usable configuration.
[    51.829] (EE) 
Fatal server error:
[    51.829] (EE) no screens found(EE) 
[    51.829] (EE) 
Please consult the The X.Org Foundation support 
 at http://wiki.x.org

is that a X bug? what is the right place to debug it, X or xf86-video-ati?

Thanks.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

Re: screen (intel igp) goes black after logout when using xauth

2013-09-25 Thread stompdagg...@yahoo.com


>>From: walter harms 

>>To: xorg@lists.x.org 
>>Sent: Sunday, August 25, 2013 4:50 PM
>>Subject: Re: screen (intel igp) goes black after logout when using xauth
 
>>
>>Hi,
>>i still have no idea.
>>But perhaps you can reduced your Programm to  make the xauth stuff only
>>to get an idea if that has anything to do with the problem.
>>
>>(I assume that only your programm is causing the problem, others work fine).
>>
>>re.
>> wh
>>
>>Am 25.08.2013 07:50, schrieb stompdagg...@yahoo.com:
>>>> From: "stompdagg...@yahoo.com" 
>>> 
>>>> To: "x...@lists.freedesktop.org"  
>>>> Sent: Sunday, August 18, 2013 10:01 AM
>>>> Subject: screen (intel igp) goes black after logout when using xauth
>>>  
>>> 
>>> 
>>>> Hello, 
>>> 
>>>> I have the folok,lowing scenario: 
>>> 
>>>     * a framework that runs a gui program. 
>>> 
>>>     * group a that all the included users can use that framework 
>>>> in an essence, user x from group a can execute program a1. program a1 
>>> uses sudo to run another program as user a_x which runs a gui program. 
>>>> as the executing user isn't user a_x, I need to use xauth to extract the
>>>  session's X cookie to be able to connect to the X session, after the 
>>> program is done, I remove the X session from the >X cookie using xauth. 
>>> 
>>>> this works well when I start the program but when I shut it down and 
>>>> logout, the screen stays black. 
>>> 
>>>> this started when I replaced the previous card (ati, worked without 
>>>> problems) with the intel igp. 
>>> 
>>>> any ideas? the logs doesn't show any error.
>>> 
>>>> I'm using kernel 3.10.7 with mesa from git, inter driver version 2.21.14 
>>>> on a i7-2600 with 16 gb of ram.
>>> 
>>>> thanks for the help.
>>> 
>>> no one have an idea in the matter?
>>>> 
>
>greetings, thanks for the input, will try it.
>
>something popped into mind. I use a hdmi to dvi cable, can that be the issue? 
>e.g. there is some feedback that is needed when connecting >to hdmi that dvi 
>doesn't supports?

ok, not sure what it was but the issue is resolved.
probably either an intel driver or xorg update.

thanks for the help
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: screen (intel igp) goes black after logout when using xauth

2013-08-25 Thread stompdagg...@yahoo.com
>From: walter harms 

>To: xorg@lists.x.org 
>Sent: Sunday, August 25, 2013 4:50 PM
>Subject: Re: screen (intel igp) goes black after logout when using xauth
 
>
>Hi,
>i still have no idea.
>But perhaps you can reduced your Programm to  make the xauth stuff only
>to get an idea if that has anything to do with the problem.
>
>(I assume that only your programm is causing the problem, others work fine).
>
>re.
> wh
>
>Am 25.08.2013 07:50, schrieb stompdagg...@yahoo.com:
>>> From: "stompdagg...@yahoo.com" 
>> 
>>> To: "x...@lists.freedesktop.org"  
>>> Sent: Sunday, August 18, 2013 10:01 AM
>>> Subject: screen (intel igp) goes black after logout when using xauth
>>  
>> 
>> 
>>> Hello, 
>> 
>>> I have the following scenario: 
>> 
>>     * a framework that runs a gui program. 
>> 
>>     * group a that all the included users can use that framework 
>>> in an essence, user x from group a can execute program a1. program a1 
>> uses sudo to run another program as user a_x which runs a gui program. 
>>> as the executing user isn't user a_x, I need to use xauth to extract the
>>  session's X cookie to be able to connect to the X session, after the 
>> program is done, I remove the X session from the >X cookie using xauth. 
>> 
>>> this works well when I start the program but when I shut it down and 
>>> logout, the screen stays black. 
>> 
>>> this started when I replaced the previous card (ati, worked without 
>>> problems) with the intel igp. 
>> 
>>> any ideas? the logs doesn't show any error.
>> 
>>> I'm using kernel 3.10.7 with mesa from git, inter driver version 2.21.14 on 
>>> a i7-2600 with 16 gb of ram.
>> 
>>> thanks for the help.
>> 
>> no one have an idea in the matter?
>> 

greetings, thanks for the input, will try it.

something popped into mind. I use a hdmi to dvi cable, can that be the issue? 
e.g. there is some feedback that is needed when connecting to hdmi that dvi 
doesn't supports?
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: screen (intel igp) goes black after logout when using xauth

2013-08-24 Thread stompdagg...@yahoo.com
>From: "stompdagg...@yahoo.com" 

>To: "x...@lists.freedesktop.org"  
>Sent: Sunday, August 18, 2013 10:01 AM
>Subject: screen (intel igp) goes black after logout when using xauth
 


>Hello, 

>I have the following scenario: 

* a framework that runs a gui program. 

* group a that all the included users can use that framework 
>in an essence, user x from group a can execute program a1. program a1 
uses sudo to run another program as user a_x which runs a gui program. 
>as the executing user isn't user a_x, I need to use xauth to extract the
 session's X cookie to be able to connect to the X session, after the 
program is done, I remove the X session from the >X cookie using xauth. 

>this works well when I start the program but when I shut it down and logout, 
>the screen stays black. 

>this started when I replaced the previous card (ati, worked without problems) 
>with the intel igp. 

>any ideas? the logs doesn't show any error.

>I'm using kernel 3.10.7 with mesa from git, inter driver version 2.21.14 on a 
>i7-2600 with 16 gb of ram.

>thanks for the help.

no one have an idea in the matter?
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

screen (intel igp) goes black after logout when using xauth

2013-08-18 Thread stompdagg...@yahoo.com
ello, 

I have the following scenario: 

* a framework that runs a gui program. 

* group a that all the included users can use that framework 

in an essence, user x from group a can execute program a1. program a1 
uses sudo to run another program as user a_x which runs a gui program. 
as the executing user isn't user a_x, I need to use xauth to extract the
 session's X cookie to be able to connect to the X session, after the 
program is done, I remove the X session from the X cookie using xauth. 

this works well when I start the program but when I shut it down and logout, 
the screen stays black. 

this started when I replaced the previous card (ati, worked without problems) 
with the intel igp. 

any ideas? the logs doesn't show any error.

I'm using kernel 3.10.7 with mesa from git, inter driver version 2.21.14 on a 
i7-2600 with 16 gb of ram.

thanks for the help.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-11 Thread stompdagg...@yahoo.com


>On Tue, Dec 11, 2012 at 5:48 AM, stompdagg...@yahoo.com 
> wrote:
>>>On Die, 2012-12-11 at 01:45 -0800, stompdagg...@yahoo.com wrote:
>>>> >On Mon, 2012-12-10 at 11:33 -0800, stompdagg...@yahoo.com wrote:
>>>>> >> On Sun, Dec 9, 2012 at 12:16 PM,  
>>>> wrote:
>>>> >> >> When starting openSuse 12.2, the X-server terminates with a
>>>> >> segmentation fault (see attached log file).
>>>> >>
>>>> >> >The open source driver should support your card just fine.  Can
>>>> you
>>>> >> >install debugging symbols and get a proper backtrace with GDB?
>>>> >> >http://wiki.x.org/wiki/Development/Documentation/ServerDebugging
>>>> >>
>>>> >> Alex, looking at his log, I don't see the card in the support list,
>>>> >> his card is the v7700?
>>>>
>>>> >As you can see in the lspci output, it's a 7500, which is Turks
>>>> >(Northern Islands generation) based.
>>>>
>>>> >If the driver didn't support the card, it would bail much earlier.
>>>>
>>>> looking at the xorg log, I see Turks only as part of the AMD Radeon HD
>>>> 6700 Series, does this means that 7500 Series is part of the 6700
>>>> Series?
>>
>>>It's complicated. :\
>>
>>>7xx0 and 6xx0 are marketing names, which are mostly irrelevant for
>>>driver support, in contrast to code names such as Turks, Northern
>>>Islands etc.
>>
>> I see, so maybe it is a good idea to fix the radeon output? if I had this
>> problem, I'd assume that the driver doesn't supports the card, this would
>> have wasted a lot of time.


>Marketing and OEMs come up with so many different names, it's hard to
>keep track.  Best bet it to look at the pci ids, or check wikipedia:
>http://en.wikipedia.org/wiki/Ati_gpu

>Alex

I see, thanks for the explanation.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-11 Thread stompdagg...@yahoo.com
>On Die, 2012-12-11 at 02:48 -0800, stompdagg...@yahoo.com wrote: 

>> >On Die, 2012-12-11 at 01:45 -0800, stompdagg...@yahoo.com wrote: 
>> >> >On Mon, 2012-12-10 at 11:33 -0800, stompdagg...@yahoo.com wrote: 
> >>> >> On Sun, Dec 9, 2012 at 12:16 PM,  
> >>> wrote:
>> >> >> >> When starting openSuse 12.2, the X-server terminates with a
>> >> >> segmentation fault (see attached log file).
> >>> >> 
> >>> >> >The open source driver should support your card just fine.  Can
>> >> you
>> >> >> >install debugging symbols and get a proper backtrace with GDB?
> >>> >>
>> >http://wiki.x.org/wiki/Development/Documentation/ServerDebugging
>> >> >> 
> >>> >> Alex, looking at his log, I don't see the card in the support
>> list,
>> >> >> his card is the v7700?
> >>> 
> >>> >As you can see in the lspci output, it's a 7500, which is Turks
>> >> >(Northern Islands generation) based.
>> >> 
>> >> >If the driver didn't support the card, it would bail much
>> earlier. 
>> >> 
> >>> looking at the xorg log, I see Turks only as part of the AMD Radeon
>> HD
>> >> 6700 Series, does this means that 7500 Series is part of the 6700
> >>> Series?
>> 
>> >It's complicated. :\
>> 
>> >7xx0 and 6xx0 are marketing names, which are mostly irrelevant for
>> >driver support, in contrast to code names such as Turks, Northern
>> >Islands etc.
>> 
>> I see, so maybe it is a good idea to fix the radeon output?

>Can you make a specific suggestion, or even a patch?

I can't seem to find something more specific than this scenario, 

>> if I had this problem, I'd assume that the driver doesn't supports the
>> card, this would have wasted a lot of time.

>Why would you assume that?
I think it is extremely logical to assume that because xorg's log 
contains the following line: "(II) RADEON: Driver for ATI Radeon 
chipsets:" and is followed by a list of cards.
if the card you have is not on the list, it is logical to assume that the 
driver doesn't supports it.

> Again, if the driver doesn't support a card,
>it bails much earlier, in a totally different way. 

for you it is logical because you know your way around the code, I consider 
myself as an advanced linux user, if for me it isn't clear, why would it be 
clear to someone at lower experience level than I?___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-11 Thread stompdagg...@yahoo.com
>On Die, 2012-12-11 at 01:45 -0800, stompdagg...@yahoo.com wrote: 

>> >On Mon, 2012-12-10 at 11:33 -0800, stompdagg...@yahoo.com wrote: 
>> >> On Sun, Dec 9, 2012 at 12:16 PM,  
>> wrote:
>> >> >> When starting openSuse 12.2, the X-server terminates with a
>> >> segmentation fault (see attached log file).
>> >> 
>> >> >The open source driver should support your card just fine.  Can
>> you
>> >> >install debugging symbols and get a proper backtrace with GDB?
>> >> >http://wiki.x.org/wiki/Development/Documentation/ServerDebugging
>> >> 
>> >> Alex, looking at his log, I don't see the card in the support list,
>> >> his card is the v7700?
>> 
>> >As you can see in the lspci output, it's a 7500, which is Turks
>> >(Northern Islands generation) based.
>> 
>> >If the driver didn't support the card, it would bail much earlier. 
>> 
>> looking at the xorg log, I see Turks only as part of the AMD Radeon HD
>> 6700 Series, does this means that 7500 Series is part of the 6700
>> Series?

>It's complicated. :\

>7xx0 and 6xx0 are marketing names, which are mostly irrelevant for
>driver support, in contrast to code names such as Turks, Northern
>Islands etc.

I see, so maybe it is a good idea to fix the radeon output? if I had this 
problem, I'd assume that the driver doesn't supports the card, this would have 
wasted a lot of time.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-11 Thread stompdagg...@yahoo.com
>On Mon, 2012-12-10 at 11:33 -0800, stompdagg...@yahoo.com wrote: 

>> On Sun, Dec 9, 2012 at 12:16 PM,   wrote:
>> >> When starting openSuse 12.2, the X-server terminates with a
>> segmentation fault (see attached log file).
>> 
>> >The open source driver should support your card just fine.  Can you
>> >install debugging symbols and get a proper backtrace with GDB?
>> >http://wiki.x.org/wiki/Development/Documentation/ServerDebugging
>> 
>> Alex, looking at his log, I don't see the card in the support list,
>> his card is the v7700?

>As you can see in the lspci output, it's a 7500, which is Turks
>(Northern Islands generation) based.

>If the driver didn't support the card, it would bail much earlier. 

looking at the xorg log, I see Turks only as part of the AMD Radeon HD 6700 
Series, does this means that 7500 Series is part of the 6700 Series?___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-10 Thread stompdagg...@yahoo.com
On Sun, Dec 9, 2012 at 12:16 PM,   wrote:

>> When starting openSuse 12.2, the X-server terminates with a segmentation 
>> fault (see attached log file).

>The open source driver should support your card just fine.  Can you
>install debugging symbols and get a proper backtrace with GDB?
>http://wiki.x.org/wiki/Development/Documentation/ServerDebugging

Alex, looking at his log, I don't see the card in the support list, his card is 
the v7700?___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Segmentation fault

2012-12-09 Thread stompdagg...@yahoo.com
it seems that you have two drivers on your system, as radeonhd is deprecated 
and doesn't supports your card, you'll need remove it.

also the radeon version that you have seems to lack support for your card, 
afaik, your card isn't supported enough in newer versions on radeon so I'd 
recommend installing fgrlx.




 From: "olivier.e.am...@gmail.com" 
To: x...@freedesktop.org 
Sent: Sunday, December 9, 2012 7:16 PM
Subject: Segmentation fault
 
When starting openSuse 12.2, the X-server terminates with a segmentation fault 
(see attached log file).

The lspci output for the graphics card is:

01:00.0 VGA compatible controller [0300]: Advanced Micro Devices [AMD] nee ATI 
Turks [Radeon HD 7500 Series] [1002:675d] (prog-if 00 [VGA controller])
        Subsystem: Device [1b0a:90bd]
        Flags: bus master, fast devsel, latency 0, IRQ 16
        Memory at e000 (64-bit, prefetchable) [size=256M]
        Memory at f7e2 (64-bit, non-prefetchable) [size=128K]
        I/O ports at e000 [size=256]
        Expansion ROM at f7e0 [disabled] [size=128K]
        Capabilities: [50] Power Management version 3
        Capabilities: [58] Express Legacy Endpoint, MSI 00
        Capabilities: [a0] MSI: Enable- Count=1/1 Maskable- 64bit+
        Capabilities: [100] Vendor Specific Information: ID=0001 Rev=1 Len=010 

        Capabilities: [150] Advanced Error Reporting

___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: X Server want not start

2012-11-19 Thread stompdagg...@yahoo.com
Hello,

just to make Michal's comment clearer, as kms includes a fb implementation, you 
cannot use both. either select fb or kms.
for more info please consult http://en.gentoo-wiki.com/wiki/Radeon

Dagg.




 From: Silvio Siefke 
To: xorg@lists.x.org 
Sent: Monday, November 19, 2012 2:13 PM
Subject: Re: X Server want not start
 
Hello,

On Mon, 19 Nov 2012 12:20:58 +0100
Michel Dänzer  wrote:

> That looks like radeonfb, which conflicts with radeon KMS. You can
> disable it at runtime by passing video=radeonfb:off on the kernel
> command line, or at build time by disabling CONFIG_FB_RADEON.

Ok i built the kernel new. That need little time, is a older PC with single
CPU :) . 


Thank you for help and Greetings
Silvio
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: xorg 7.6, 2-seat environment, no mice

2012-10-14 Thread stompdagg...@yahoo.com
Ditmar,

as you use recent version of xorg and most probably recent udev version, it is 
recommanded that you setup a hotplugged based setup.
please refer to this tutorial: http://wiki.gentoo.org/wiki/Multiseat

this will most probably solve all your issues.

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Ditmar Unger 
To: xorg@lists.x.org 
Sent: Saturday, October 13, 2012 6:39 PM
Subject: xorg 7.6, 2-seat environment, no mice
 
Hello,

I've upgraded from OpenSuSE 12.1 to 12.2 with xorg 7.6 in a 2-seat environment 
and cannot separate mice any more.
Different to the situation before the upgrade I cannot switch off

Section "ServerLayout"
    Option        "AutoEnableDevices" "on"
    Option        "AutoAddDevices" "on"

without switching off both mice. Switching it ON leads to the input off 
both keyb. and mice on both screens which makes the multiseat environment  
unusable.

Switching it OFF leads to Xorg.[0,1].log

config/udev: Adding input device Logitech USB Receiver (/dev/input/event0)
AutoAddDevices is off - not adding device.

although the keyboards DO work

and 
config/udev: Adding input device Logitech Logitech BT Mini-Receiver 
(/dev/input/mouse1)
AutoAddDevices is off - not adding device.

and both mice are dead.

Any help would be greatly appreciated.

Thanks in advance,
Ditmar.


Here are the relevant sections of xorg.conf (keyboards use evdev):

Section "InputDevice"
  # Maus Logitech EX 110
  # ***
  Driver       "mouse"
  Identifier   "Mouse_Logitech_EX110"
#  Option       "Device" "/dev/input/by-path/pci-:00:1d.0-usb-0:1.5:1.1-
mouse"
  Option       "Device" "/dev/input/mouse0"
  Option       "Buttons" "12"
  Option       "Name" "ImExPS/2 Logitech Explorer Mouse"
  Option       "Protocol" "explorerps/2"
  Option       "Vendor" "Sysp"
  Option       "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
  # Maus Logitech DiNovo mini
  # *
  Identifier   "Mouse_Logitech_DiNovomini"
  Driver       "mouse"
#  Option       "Device" "/dev/input/by-path/pci-:00:1d.0-usb-0:1.6.3:1.0-
mouse"
  Option       "Device" "/dev/input/mouse1"
  Option       "Buttons" "12"
  Option       "Name" "Logitech BT Mini-Receiver"
  Option       "Protocol" "explorerps/2"
  Option       "Vendor" "Sysp"
  Option       "ZAxisMapping" "4 5"
EndSection

Section "ServerLayout"
  Identifier   "Layout[TFT]"
  InputDevice  "Keyboard_Logitech_EX110" "CoreKeyboard"
  InputDevice  "Mouse_Logitech_EX110" "CorePointer"
  Option       "Clone" "off"
  Option       "Xinerama" "off"
  Screen       "Screen_TFT"
  Option        "AllowEmptyInput" "off"
  Option        "AutoAddDevices" "on"
#  Option       "AutoAddDevices" "off"
  Option        "AutoEnableDevices" "on"
#  Option       "AutoEnableDevices" "off"
  Option        "IsolateDevice" "PCI:0:2:0"
EndSection

Section "ServerLayout"
  Identifier   "Layout[Beamer]"
  InputDevice  "Keyboard_Logitech_DiNovomini" "CoreKeyboard"
  InputDevice  "Mouse_Logitech_DiNovomini" "CorePointer"
  Option       "Clone" "off"
  Option       "Xinerama" "off"
  Screen       "Screen_BEAMER"
  Option        "AllowEmptyInput" "off"
  Option        "AutoAddDevices" "on"
#  Option       "AutoAddDevices" "off"
  Option        "AutoEnableDevices" "on"
#  Option       "AutoEnableDevices" "off"
  Option       "IsolateDevice" "PCI:1:0:0"
EndSection

kdmrc uses:

[X-:*-Core]
ServerArgsLocal=-nolisten tcp -layout Layout[TFT]

[X-:0-Core]
ServerCmd=/usr/bin/X0 -br

[X-:1-Core]
ServerArgsLocal=-nolisten tcp -layout Layout[Beamer] -sharevts -novtswitch
ServerCmd=/usr/bin/X1 -br vt8
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: why does -sharevts is so important for multseat setup?

2012-08-21 Thread stompdagg...@yahoo.com
Thanks  for the ansewr. why  won't X select different /dev/ttyXX  An wise 
Scandinavian old man once said: "in the end, everything is going to be alright"



 From: Aivils Štoss 
To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Tuesday, August 21, 2012 8:44 PM
Subject: Re: why does -sharevts is so important for multseat setup?
 
Citējot "stompdagg...@yahoo.com" :

> Hello,
> 
> 
> I have a multiseat setup and where I'm experiencing lose of keystrokes in the 
> second seat.
> I'm using hotpluged (via udev) feature, what  I do noticed that if I press 
> CRTL+ALT+F1on seat 2, seat1 goes to cli.
> for now I'm putting udev aside on this matter and try to concentrate on X 
> part, while searching the web I've found a article that mentions that such 
> issue can happen due to the -sharevts.
> 
> I wanted to know, why multiseat setup needs to share vts? why if I take out 
> this feature, one of the seats doesn't lights up?
> 

Normally kernel sends key press events to applications via /dev/ttyXX device 
files. Each Xorg open single /dev/ttyXX file and receive keyboard events. 
/dev/ttyXX was designed to support single active application like Xorg. When 
one X became active then another suspended. So single end-user can easy switch 
between multiple X instances. Multiseat have another mission. That is a reason 
of -sharevts. Active X does not try to suspend another X via /dev/ttyXX. In 
reality /dev/ttyXX stay unused under multiseat, because every X receive events 
from keyboards via /dev/input/eventXX device files.

As alternative You can hack the Linux kernel with faketty (outdated) module.

Aivils Stoss


___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: why does -sharevts is so important for multseat setup?

2012-08-20 Thread stompdagg...@yahoo.com
From: Alexandre CONFIANT-LATOUR 

To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Monday, August 20, 2012 1:03 PM
Subject: Re: why does -sharevts is so important for multseat setup?
 
On 20/08/2012 11:32, stompdagg...@yahoo.com wrote:
> I see, still why not increase the number in the kernel?

I needed it to be "on-the-fly" because i can't know in advance the number of 
concurrent users. Because X in not ran as root, its process can't add tty.

I saw a workaround in the Xdummy code <http://www.karlrunge.com/x11vnc/Xdummy>. 
This hack uses LD_PRELOAD to change standard system "open" function behavior 
and create a fifo "on-the-fly". This fifo is opened in place of the tty. The 
fifo is only used to trick X and let some test pass.

In my case, -sharevts worked well so preferred to avoid this acrobatic hack.


I understand but in my case, it renders the second seat almost impossible to 
work on.
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: why does -sharevts is so important for multseat setup?

2012-08-20 Thread stompdagg...@yahoo.com

From: Alexandre CONFIANT-LATOUR 

To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Monday, August 20, 2012 12:01 PM
Subject: Re: why does -sharevts is so important for multseat setup?
 
On 20/08/2012 10:40, stompdagg...@yahoo.com wrote:
> why would multiple X instances to share the same /dev/ttyx? what is the
> gain in that?

I'm working in the desktop virtualization field and, in my case, it allowed me 
to start a lot of X.org instances on the same server without running out of tty.

I see, still why not increase the number in the kernel?___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: why does -sharevts is so important for multseat setup?

2012-08-20 Thread stompdagg...@yahoo.com
From: Alexandre CONFIANT-LATOUR 

To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Monday, August 20, 2012 11:25 AM
Subject: Re: why does -sharevts is so important for multseat setup?
 
Hello.

On 18/08/2012 20:05, stompdagg...@yahoo.com wrote:
> I'm using hotpluged (via udev) feature, what I do noticed that if I
> press CRTL+ALT+F1on seat 2, seat1 goes to cli.

I dont know if that could help you but it seems to be a VT-Switch related 
problem. When you hit Ctrl-Alt-FX, a signal (SIGUSR1) is sent to X.org. This 
signal raise a flag that is handled by xf86Wakeup then xf86VTSwitch. This 
functions disable IO and framebuffer access for all screens. Then, an ioctl is 
sent to switch to cli.

I'm not familiar with multiseat, but this situation seems normal if your two 
seats share the same X instance. If not, it is a bit weird that the second X 
instance got notified.

On 18/08/2012 20:05, stompdagg...@yahoo.com wrote:
> I wanted to know, why multiseat setup needs to share vts? why if I take
> out this feature, one of the seats doesn't lights up?

I think that -sharevts is used to allows multiple X instances to share the same 
/dev/ttyx but i may be wrong or it can have other uses.

-- Alexandre Confiant-Latour
@         : a...@user-unfriendly.net
Jabber    : chouke...@im.apinc.org
GPG Key ID: 0x18CA62CC (pgp.mit.edu)

Hello,

Thanks for the replay,

I'm running X for each seat, meaning that any Ctrl-Alt-FX on a seat should not 
be passed to the other seat.
in my case, the signal is passed only to the other seat, not even to the origin 
seat.
why would multiple X instances to share the same /dev/ttyx? what is the gain in 
that?___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: delay in wireless mouse and keyboard

2012-08-04 Thread stompdagg...@yahoo.com
ok, I think I've found my issue, it started first when I pressed CTRL+ALT+F1 
from seat 2 to drop to shell and seat 1 
actually dropped. 
I've looked in the net and found this: 
https://jeremy.visser.name/2009/08/multiseat-tips/ going thought the page I've 
stumbled on this: 

Quote: 
When launching X.Org (or in your gdm.conf configuration), the -novtswitch 
and -sharevts options that are described in all multiseat tutorials can 
sometimes cause more harm than good, and may even be unnecessary. For 
example, if you use -sharevts, your keystrokes may silently be 
duplicated to a hidden login prompt which could wreak havoc on your 
system. 
now I'm trying to dig back into my memory and I do recall that I saw what I 
write in another shell. 

as I understand, if I remove sharevts I'll lose the multiseat feature. 
question is, how do I solve this?
 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"


____
 From: "stompdagg...@yahoo.com" 
To: Dan Nicholson  
Cc: "xorg@lists.x.org"  
Sent: Saturday, July 21, 2012 10:26 PM
Subject: Re: delay in wireless mouse and keyboard
 

hello Dan,

Thanks for the tips, dmesg reveals nothing, where can I define logverbose? in 
the command line which gets executed on connection?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"


____
 From: Dan Nicholson 
To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Saturday, July 21, 2012 5:36 PM
Subject: Re: delay in wireless mouse and keyboard
 
My guess would be that this is getting stuck in the kernel somewhere.
You might want to look at dmesg. On the other hand, turning up the
Xorg verbosity by running with -logverbose 10 or something might get
something useful from evdev. The configuration seems to be correct,
though.

On Sat, Jul 21, 2012 at 6:47 AM, stompdagg...@yahoo.com
 wrote:
> anyone?
>
> An wise Scandinavian old man once said: "in the end, everything is going to
> be alright"
> 
> From: "stompdagg...@yahoo.com" 
> To: "xorg@lists.x.org" 
> Sent: Saturday, July 14, 2012 7:59 PM
> Subject: delay in wireless mouse and keyboard
>
> hello all,
>
> I have a hotplug based multiseat setup with 2 seats, the first is mine which
> uses a logitech mk250 wireless mouse/keyboard combo, the second uses a wired
> ibm keyboard and genius tablet.
>
> for some reason my setup gets delays in reaction of the inputs.
> I can type something in the keyboard but the screen won't show it, I'm sure
> it isn't stuck because the mouse works.
> sometime it's the other way around.
>
> first I thought that maybe it related to the fact that I'm running boinc
 in
> the background but when I've stopped it and worked the delays still
> occurred.
>
> how can I solve this?
>
> there is some info:
> xorg-server-1.12.3
> wizardpen, git version.
> xf86-input-evdev-2.7.0
> udev-171
> kde-4.8.4
>
> configs and logs can be seen at http://bpaste.net/show/35002/
>
> Thanks.
>
> An wise Scandinavian old man once said: "in the end, everything is going to
> be alright"
>
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: stompdagg...@yahoo.com
>
>
>
 ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: dbn.li...@gmail.com



___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: delay in wireless mouse and keyboard

2012-07-21 Thread stompdagg...@yahoo.com
hello Dan,

Thanks for the tips, dmesg reveals nothing, where can I define logverbose? in 
the command line which gets executed on connection?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Dan Nicholson 
To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Saturday, July 21, 2012 5:36 PM
Subject: Re: delay in wireless mouse and keyboard
 
My guess would be that this is getting stuck in the kernel somewhere.
You might want to look at dmesg. On the other hand, turning up the
Xorg verbosity by running with -logverbose 10 or something might get
something useful from evdev. The configuration seems to be correct,
though.

On Sat, Jul 21, 2012 at 6:47 AM, stompdagg...@yahoo.com
 wrote:
> anyone?
>
> An wise Scandinavian old man once said: "in the end, everything is going to
> be alright"
> ____
> From: "stompdagg...@yahoo.com" 
> To: "xorg@lists.x.org" 
> Sent: Saturday, July 14, 2012 7:59 PM
> Subject: delay in wireless mouse and keyboard
>
> hello all,
>
> I have a hotplug based multiseat setup with 2 seats, the first is mine which
> uses a logitech mk250 wireless mouse/keyboard combo, the second uses a wired
> ibm keyboard and genius tablet.
>
> for some reason my setup gets delays in reaction of the inputs.
> I can type something in the keyboard but the screen won't show it, I'm sure
> it isn't stuck because the mouse works.
> sometime it's the other way around.
>
> first I thought that maybe it related to the fact that I'm running boinc in
> the background but when I've stopped it and worked the delays still
> occurred.
>
> how can I solve this?
>
> there is some info:
> xorg-server-1.12.3
> wizardpen, git version.
> xf86-input-evdev-2.7.0
> udev-171
> kde-4.8.4
>
> configs and logs can be seen at http://bpaste.net/show/35002/
>
> Thanks.
>
> An wise Scandinavian old man once said: "in the end, everything is going to
> be alright"
>
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: stompdagg...@yahoo.com
>
>
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: dbn.li...@gmail.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: delay in wireless mouse and keyboard

2012-07-21 Thread stompdagg...@yahoo.com
anyone?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"


____
 From: "stompdagg...@yahoo.com" 
To: "xorg@lists.x.org"  
Sent: Saturday, July 14, 2012 7:59 PM
Subject: delay in wireless mouse and keyboard
 

hello all,

I have a hotplug based multiseat setup with 2 seats, the first is mine which 
uses a logitech mk250 wireless mouse/keyboard combo, the second uses a wired 
ibm keyboard and genius tablet.

for some reason my setup gets delays in reaction of the inputs.
I can type something in the keyboard but the screen won't show it, I'm sure it 
isn't stuck because the mouse works.
sometime it's the other way around.

first I thought that maybe it related to the fact that I'm running boinc in the 
background but when I've stopped it and worked the delays still occurred.

how can I solve this?

there is some info:
xorg-server-1.12.3

wizardpen, git version.
xf86-input-evdev-2.7.0
udev-171
kde-4.8.4

configs and logs can be seen at http://bpaste.net/show/35002/

Thanks.


An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

delay in wireless mouse and keyboard

2012-07-14 Thread stompdagg...@yahoo.com
hello all,

I have a hotplug based multiseat setup with 2 seats, the first is mine which 
uses a logitech mk250 wireless mouse/keyboard combo, the second uses a wired 
ibm keyboard and genius tablet.

for some reason my setup gets delays in reaction of the inputs.
I can type something in the keyboard but the screen won't show it, I'm sure it 
isn't stuck because the mouse works.
sometime it's the other way around.

first I thought that maybe it related to the fact that I'm running boinc in the 
background but when I've stopped it and worked the delays still occurred.

how can I solve this?

there is some info:
xorg-server-1.12.3

wizardpen, git version.
xf86-input-evdev-2.7.0
udev-171
kde-4.8.4

configs and logs can be seen at http://bpaste.net/show/35002/

Thanks.


An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: 2 screens with independent xservers ?

2012-07-04 Thread stompdagg...@yahoo.com
googling nested x returns examples but as there is  xorg driver named 
xf86-video-nested you might want to investigate it.

An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Sérgio Basto 
To: linux-service.be bvba  
Cc: xorg@lists.x.org 
Sent: Wednesday, July 4, 2012 9:22 PM
Subject: Re: 2 screens with independent xservers ?
 
On Qua, 2012-07-04 at 13:41 +0200, linux-service.be bvba wrote: 
> As long that you cannot start two xservers on one card, 

I cant start X:0 and X:1 with no problem , start a "parallel session" ,
as kde says, I just want see one session on eDP1 connected, other
session in HDMI1 connected.      

> you have use gdm 2.20 (or in debian gdm) and start a 
> main non-handled server, after that start xnest-xephir or xgl session on each 
> screen.

Where I see confs or examples ?
> If we want true multiseat, we have to get two x servers on one card(with 
> double output ofcourse)

> I believe there are people working on that concerning DRM render nodes.
> Multiseat, one seat per vga card , is not multiseat.
> 
> 
> 
> > how about nested X?

docs and examples where ? 

Thanks, 

> >  
> > An wise Scandinavian old man once said: "in the end, everything is going to
> > be alright"
> > 
> > 
> > 
> >  From: Sérgio Basto 
> > To: "stompdagg...@yahoo.com" 
> > Cc: "xorg@lists.x.org" 
> > Sent: Wednesday, July 4, 2012 8:25 AM
> > Subject: Re: 2 screens with independent xservers ?
> > 
> > On Ter, 2012-07-03 at 22:20 -0700, stompdagg...@yahoo.com wrote:
> > > let me see if I understood you, you want two screen with two sets of
> > > input and two different sessions on one card?
> > 
> > I want two screen and two different sessions on one card, yes.
> > Input sets is the same.
> > 
> >  
> > 
> > > An wise Scandinavian old man once said: "in the end, everything is
> > > going to be alright"
> > > 
> > > 
> > > __
> > > 
> > > From: Sérgio Basto 
> > > To: xorg@lists.x.org
> > > Sent: Wednesday, July 4, 2012 1:24 AM
> > > Subject: 2 screens with independent xservers ?
> > > 
> > > 
> > > Hi,
> > > I got a laptop with one intel(0): Chipset: "Arrandale"
> > > 
> > > is it possible ?  when attach one screen monitor, put there a new
> > > xserver with is own status bar and full-screen etc.
> > > And mouse and keyboard change one from other, with x2vnc and x11vnc ?
> > > or
> > > solutions xdmx something.
> > > 
> > > Thanks,
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: ser...@serjux.com

-- 
Sérgio M. B.

___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: 2 screens with independent xservers ?

2012-07-04 Thread stompdagg...@yahoo.com
how about nested X?
 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Sérgio Basto 
To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Wednesday, July 4, 2012 8:25 AM
Subject: Re: 2 screens with independent xservers ?
 
On Ter, 2012-07-03 at 22:20 -0700, stompdagg...@yahoo.com wrote: 
> let me see if I understood you, you want two screen with two sets of
> input and two different sessions on one card?

I want two screen and two different sessions on one card, yes. 
Input sets is the same. 

  
> An wise Scandinavian old man once said: "in the end, everything is
> going to be alright"
> 
> 
> __
> 
> From: Sérgio Basto 
> To: xorg@lists.x.org 
> Sent: Wednesday, July 4, 2012 1:24 AM
> Subject: 2 screens with independent xservers ?
> 
> 
> Hi, 
> I got a laptop with one intel(0): Chipset: "Arrandale"
> 
> is it possible ?  when attach one screen monitor, put there a new
> xserver with is own status bar and full-screen etc. 
> And mouse and keyboard change one from other, with x2vnc and x11vnc ?
> or
> solutions xdmx something. 
> 
> Thanks, 
> -- 
> Sérgio M. B.
> 
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: stompdagg...@yahoo.com
> 
> 

-- 
Sérgio M. B.

___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: 2 screens with independent xservers ?

2012-07-03 Thread stompdagg...@yahoo.com
let me see if I understood you, you want two screen with two sets of input and 
two different sessions on one card?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Sérgio Basto 
To: xorg@lists.x.org 
Sent: Wednesday, July 4, 2012 1:24 AM
Subject: 2 screens with independent xservers ?
 
Hi, 
I got a laptop with one intel(0): Chipset: "Arrandale"

is it possible ?  when attach one screen monitor, put there a new
xserver with is own status bar and full-screen etc. 
And mouse and keyboard change one from other, with x2vnc and x11vnc ? or
solutions xdmx something. 

Thanks, 
-- 
Sérgio M. B.

___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Two X servers, one box

2012-07-03 Thread stompdagg...@yahoo.com
any reason why X server per app?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: "Cook, Rich" 
To: "stompdagg...@yahoo.com"  
Cc: "xorg@lists.x.org"  
Sent: Tuesday, July 3, 2012 7:06 PM
Subject: Re: Two X servers, one box
 

What I'm trying to do is run a single visualization application per X server to 
enable distributed rendering of some very large scientific datasets.  Each 
application uses the hardware to render its piece then composits it with the 
other programs on the cluster via TCP/IP.  
So basically instead of "xterm" below there will be 
"//usr/local/tools/ensight-92/bin/ensight92.client -some fancy -args"




On Jul 3, 2012, at 2:43 AM, stompdagg...@yahoo.com wrote:

what are you trying to do? multiseat? multihead?
> 
>
>An wise Scandinavian old man once said: "in the end, everything is going to be 
>alright"
>
>
>
> From: "Cook, Rich" 
>To: "xorg@lists.x.org"  
>Sent: Tuesday, July 3, 2012 4:23 AM
>Subject: Re: Two X servers, one box
>
>Ah hell, now it's just working.  How strange.  No doubt as soon as I send this 
>it will stop working again. 
>Never mind!  Thanks. 
>
>On Jul 2, 2012, at 6:13 PM, Cook, Rich wrote:
>
>> Hi, 
>> I am trying to run two instances of X.Org X Server 1.10.4 per node of our 
>> dual-GPU Red Hat cluster. 
>> I do this: 
>> /usr/bin/startx /usr/bin/xterm -display :0 -- -nolock -auth 
>> /g/g0/rcook/.Xauthority-0 :0
>> and this: 
>> /usr/bin/startx /usr/bin/xterm -display :1 -- -nolock -auth 
>> /g/g0/rcook/.Xauthority-1 :1
>> 
>> And I almost get there -- in fact, it worked once.  But mostly the X server 
>> starts but I get "invalid MIT-MAGICK-COOKIE" errors which don't show up in 
>> the Xorg logfile, so I assume I'm very close, just doing something wrong 
>> with xauth. 
>> 
>> Can anyone on this list help a poor man out?  Thanks
>> 
>> 
>> -- 
>> ✐Richard Cook  
>> ✇ Lawrence Livermore National Laboratory
>> Bldg-453 Rm-4024, Mail Stop L-557        
>> 7000 East Avenue,  Livermore, CA, 94550, USA
>> ☎ (office) (925) 423-9605    
>> ☎ (fax) (925) 423-6961
>> ---
>> Information Management & Graphics Grp., Services & Development Div., 
>> Integrated Computing & Communications Dept.
>> (opinions expressed herein are mine and not those of LLNL)
>> 
>> 
>> 
>
>-- 
>✐Richard Cook  
>✇ Lawrence Livermore National Laboratory
>Bldg-453 Rm-4024, Mail Stop L-557        
>7000 East Avenue,  Livermore, CA, 94550, USA
>☎ (office) (925) 423-9605    
>☎ (fax) (925) 423-6961
>---
>Information Management & Graphics Grp., Services & Development Div., 
>Integrated Computing & Communications Dept.
>(opinions expressed herein are mine and not those of LLNL)
>
>
>
>___
>xorg@lists.x.org: X.Org support
>Archives: http://lists.freedesktop.org/archives/xorg
>Info: http://lists.x.org/mailman/listinfo/xorg
>Your subscription address: stompdagg...@yahoo.com
>
>

-- 
✐Richard Cook   
✇ Lawrence Livermore National Laboratory
Bldg-453 Rm-4024, Mail Stop L-557        
7000 East Avenue,  Livermore, CA, 94550, USA
☎ (office) (925) 423-9605    
☎ (fax) (925) 423-6961
---
Information Management & Graphics Grp., Services & Development Div., Integrated 
Computing & Communications Dept.
(opinions expressed herein are mine and not those of LLNL)



___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: Two X servers, one box

2012-07-03 Thread stompdagg...@yahoo.com
what are you trying to do? multiseat? multihead?
 

An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: "Cook, Rich" 
To: "xorg@lists.x.org"  
Sent: Tuesday, July 3, 2012 4:23 AM
Subject: Re: Two X servers, one box
 
Ah hell, now it's just working.  How strange.  No doubt as soon as I send this 
it will stop working again. 
Never mind!  Thanks. 

On Jul 2, 2012, at 6:13 PM, Cook, Rich wrote:

> Hi, 
> I am trying to run two instances of X.Org X Server 1.10.4 per node of our 
> dual-GPU Red Hat cluster. 
> I do this: 
> /usr/bin/startx /usr/bin/xterm -display :0 -- -nolock -auth 
> /g/g0/rcook/.Xauthority-0 :0
> and this: 
> /usr/bin/startx /usr/bin/xterm -display :1 -- -nolock -auth 
> /g/g0/rcook/.Xauthority-1 :1
> 
> And I almost get there -- in fact, it worked once.  But mostly the X server 
> starts but I get "invalid MIT-MAGICK-COOKIE" errors which don't show up in 
> the Xorg logfile, so I assume I'm very close, just doing something wrong with 
> xauth. 
> 
> Can anyone on this list help a poor man out?  Thanks
> 
> 
> -- 
> ✐Richard Cook  
> ✇ Lawrence Livermore National Laboratory
> Bldg-453 Rm-4024, Mail Stop L-557        
> 7000 East Avenue,  Livermore, CA, 94550, USA
> ☎ (office) (925) 423-9605    
> ☎ (fax) (925) 423-6961
> ---
> Information Management & Graphics Grp., Services & Development Div., 
> Integrated Computing & Communications Dept.
> (opinions expressed herein are mine and not those of LLNL)
> 
> 
> 

-- 
✐Richard Cook  
✇ Lawrence Livermore National Laboratory
Bldg-453 Rm-4024, Mail Stop L-557        
7000 East Avenue,  Livermore, CA, 94550, USA
☎ (office) (925) 423-9605    
☎ (fax) (925) 423-6961
---
Information Management & Graphics Grp., Services & Development Div., Integrated 
Computing & Communications Dept.
(opinions expressed herein are mine and not those of LLNL)



___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: submit xorg driver for graphics cards of Silicon Motion

2012-06-26 Thread stompdagg...@yahoo.com
adding xorg list

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"


____
 From: "stompdagg...@yahoo.com" 
To: caesar.qiu 裘赛海  
Sent: Tuesday, June 26, 2012 11:16 AM
Subject: Re: submit xorg driver for graphics cards of Silicon Motion
 

I think you should read this: 
http://wiki.x.org/wiki/Development/Documentation/SubmittingPatches

Good Luck.

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: caesar.qiu 裘赛海 
To: x...@freedesktop.org 
Sent: Tuesday, June 26, 2012 9:52 AM
Subject: submit xorg driver for graphics cards of Silicon Motion
 

 
Hi,
 
This is Caesar from
Silicon Motion. Nice to meet you!
 
We have developed one
xorg driver for all our graphics cards, such as SM502, SM718, SM750 and so on.
Now we want to submit this driver to freedesktop.org community. Would you
please kindly help to tell us the steps of subumitting the new driver? Looking
forward to hearing from you!  Thanks in advance!
 
 
 
Best Regards!
Caesar Qiu
-
Silicon Motion Inc.
Tel: 
+86-21-65107780  ext 7180
Fax: +86-21-65107821
 
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: defining sound card in xorg.conf

2012-06-18 Thread stompdagg...@yahoo.com
do you have a reference that might be a good stating point?

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Yan Seiner 
To: "stompdagg...@yahoo.com"  
Cc: linux-service.be bvba ; "xorg@lists.x.org" 
 
Sent: Monday, June 18, 2012 6:45 PM
Subject: Re: defining sound card in xorg.conf
 
You can do something similar with alsa + udev; you just have to create
fixed device names using udev, and then write a script that sets the
default alsa device to the appropriate fixed name based on the DISPLAY
variable.


On Mon, June 18, 2012 8:00 am, stompdagg...@yahoo.com wrote:
> Thanks for the input but using pulseaudio is not an option.
>
>  
> An wise Scandinavian old man once said: "in the end, everything is going
> to be alright"
>
>
> 
>  From: linux-service.be bvba 
> To: xorg@lists.x.org
> Sent: Monday, June 18, 2012 5:56 PM
> Subject: Re: defining sound card in xorg.conf
>
> start such script when user is logging in:
>
> #!/bin/bash
>
> # in order to match a screen-set to a pulseaudio sink :
>
> if [ "$DISPLAY" ]
> then
>     if [ "$DISPLAY" = ":1" ]
>     then
> sleep 3
>       pacmd "set-default-sink
> alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set_1.analog-stereo"
> pulseaudio -D
>     fi
>     if [ "$DISPLAY" = ":2" ]
>     then
> sleep 3
>         pacmd "set-default-sink
> alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set.analog-stereo"
> pulseaudio -D
>     fi
> if [ "$DISPLAY" = ":3" ]
>     then
> sleep 3
>         pacmd "set-default-sink
> alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set_2.analog-stereo"
> pulseaudio -D
>     fi
> fi
>
>
> ofcourse edit script with your sound devices and find out where the sound
> is going to( at which display).
> Make sure the user's /home/user/.pulse is empty upon login.
> Enjoy
> guy
>
>> Hi,
>> Actually it goes out of scope space of X.
>> You should ask to sound system developers, how i can set default sound
>> card according to my environment variables with multiple sound cards
>> on board.
>>
>> Here is little outdated link:
>> http://perso.nnx.com/pludov/sessiond/
>>
>> This tool will replace sound device files like /dev/dsp* with links to
>> each sound card files
>> depending of DISPLAY variable.
>>
>> Aivils
>>
>> Citējot "stompdagg...@yahoo.com" :
>> > Hello,
>> >
>> > Thanks for the replay but I'm not sure how this answers my question.
>> > using xorg I can "seats", e.g. xorg will run a session limited to a
>> > specific combination of gpu, screen, keyboard and mouse.
>> > I just want to add sound card to it.
>> >
>> > 
>> > An wise Scandinavian old man once said: "in the end, everything is
>> > going to be alright"
>> >
>> >
>> > 
>> >
>> >  From: Giuseppe Penone 
>> >
>> > To: "stompdagg...@yahoo.com" 
>> > Cc: "x...@lists.freedesktop.org" 
>> > Sent: Monday, June 18, 2012 9:31 AM
>> > Subject: Re: defining sound card in xorg.conf
>> >
>> >
>> > for usb audio cards there's a good explanation here
>> > https://help.ubuntu.com/community/UbuntuStudio/UsbAudioDevices
>> >
>> > anyway to make it simple:
>> >
>> > 1) check that your system recognized the usb audio:
>> > cat/proc/asound/cards
>> >
>> > 2) set the desired card as default used:
>> > sudo nano  /etc/modprobe.d/alsa-base
>> > go to the bottom and change the index of the default card from -2 to 0
>> >
>> > cheers.
>> >
>> >
>> >
>> >
>> >
>> > On Sat, Jun 16, 2012 at 10:54 PM, stompdagg...@yahoo.com
>> >  wrote:
>> >
>> > Hello All,
>> >
>> >> I'm about to reinstate my 3 way multiseat configuration (2 seats
>> >> and one for the tv), up until now I didn't used the sound cards but
>> >> now as I got a usb sound card I want to add sound support.
>> >>
>> >>
>> >> is there a way to define in xorg.conf what sound card will be used
>> >> by what seat?
>> >>
>> >>
>> >> Thanks.
>> >>
>> >> 
>> >> An wise Scandinavian old man once said

Re: defining sound card in xorg.conf

2012-06-18 Thread stompdagg...@yahoo.com
Thanks for the input but using pulseaudio is not an option.

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: linux-service.be bvba 
To: xorg@lists.x.org 
Sent: Monday, June 18, 2012 5:56 PM
Subject: Re: defining sound card in xorg.conf
 
start such script when user is logging in:

#!/bin/bash

# in order to match a screen-set to a pulseaudio sink :

if [ "$DISPLAY" ]
then
    if [ "$DISPLAY" = ":1" ]
    then
sleep 3
      pacmd "set-default-sink 
alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set_1.analog-stereo"
pulseaudio -D
    fi
    if [ "$DISPLAY" = ":2" ]
    then
sleep 3
        pacmd "set-default-sink 
alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set.analog-stereo"
pulseaudio -D
    fi
if [ "$DISPLAY" = ":3" ]
    then
sleep 3
        pacmd "set-default-sink 
alsa_output.usb-0d8c_C-Media_USB_Headphone_Set-00-Set_2.analog-stereo"
pulseaudio -D
    fi
fi


ofcourse edit script with your sound devices and find out where the sound is 
going to( at which display).
Make sure the user's /home/user/.pulse is empty upon login.
Enjoy
guy

> Hi,
> Actually it goes out of scope space of X.
> You should ask to sound system developers, how i can set default sound
> card according to my environment variables with multiple sound cards
> on board.
> 
> Here is little outdated link:
> http://perso.nnx.com/pludov/sessiond/
> 
> This tool will replace sound device files like /dev/dsp* with links to
> each sound card files
> depending of DISPLAY variable.
> 
> Aivils
> 
> Citējot "stompdagg...@yahoo.com" :
> > Hello,
> > 
> > Thanks for the replay but I'm not sure how this answers my question.
> > using xorg I can "seats", e.g. xorg will run a session limited to a
> > specific combination of gpu, screen, keyboard and mouse.
> > I just want to add sound card to it.
> > 
> >  
> > An wise Scandinavian old man once said: "in the end, everything is
> > going to be alright"
> > 
> > 
> > 
> > 
> >  From: Giuseppe Penone 
> > 
> > To: "stompdagg...@yahoo.com" 
> > Cc: "x...@lists.freedesktop.org" 
> > Sent: Monday, June 18, 2012 9:31 AM
> > Subject: Re: defining sound card in xorg.conf
> > 
> > 
> > for usb audio cards there's a good explanation here
> > https://help.ubuntu.com/community/UbuntuStudio/UsbAudioDevices
> > 
> > anyway to make it simple:
> > 
> > 1) check that your system recognized the usb audio:
> > cat/proc/asound/cards
> > 
> > 2) set the desired card as default used:
> > sudo nano  /etc/modprobe.d/alsa-base
> > go to the bottom and change the index of the default card from -2 to 0
> > 
> > cheers.
> > 
> > 
> > 
> > 
> > 
> > On Sat, Jun 16, 2012 at 10:54 PM, stompdagg...@yahoo.com
> >  wrote:
> > 
> > Hello All,
> > 
> >> I'm about to reinstate my 3 way multiseat configuration (2 seats
> >> and one for the tv), up until now I didn't used the sound cards but
> >> now as I got a usb sound card I want to add sound support.
> >> 
> >> 
> >> is there a way to define in xorg.conf what sound card will be used
> >> by what seat?
> >> 
> >> 
> >> Thanks.
> >> 
> >>  
> >> An wise Scandinavian old man once said: "in the end, everything is
> >> going to be alright"
> >> ___
> >> xorg@lists.x.org: X.Org support
> >> Archives: http://lists.freedesktop.org/archives/xorg
> >> Info: http://lists.x.org/mailman/listinfo/xorg
> >> Your subscription address: gius...@gmail.com
> > 
> > ___
> > xorg@lists.x.org: X.Org support
> > Archives: http://lists.freedesktop.org/archives/xorg
> > Info: http://lists.x.org/mailman/listinfo/xorg
> > Your subscription address: stompdagg...@yahoo.com
> 
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: g...@linux-service.be
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: defining sound card in xorg.conf

2012-06-18 Thread stompdagg...@yahoo.com
I did encountered that page don't remember why I left it, I'll took at it again
 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Aivils Štoss 
To: "stompdagg...@yahoo.com"  
Cc: Giuseppe Penone ; "x...@lists.freedesktop.org" 
 
Sent: Monday, June 18, 2012 5:07 PM
Subject: Re: defining sound card in xorg.conf
 
Hi,
Actually it goes out of scope space of X.
You should ask to sound system developers, how i can set default sound card 
according to my environment variables with multiple sound cards on board.

Here is little outdated link:
http://perso.nnx.com/pludov/sessiond/

This tool will replace sound device files like /dev/dsp* with links to each 
sound card files
depending of DISPLAY variable.

Aivils

Citējot "stompdagg...@yahoo.com" :

> Hello,
> 
> Thanks for the replay but I'm not sure how this answers my question.
> using xorg I can "seats", e.g. xorg will run a session limited to a specific 
> combination of gpu, screen, keyboard and mouse.
> I just want to add sound card to it.
> 
>  
> An wise Scandinavian old man once said: "in the end, everything is going to 
> be alright"
> 
> 
> 
>  From: Giuseppe Penone 
> To: "stompdagg...@yahoo.com" 
> Cc: "x...@lists.freedesktop.org" 
> Sent: Monday, June 18, 2012 9:31 AM
> Subject: Re: defining sound card in xorg.conf
> 
> 
> for usb audio cards there's a good explanation here 
> https://help.ubuntu.com/community/UbuntuStudio/UsbAudioDevices
> 
> anyway to make it simple:
> 
> 1) check that your system recognized the usb audio:
> cat/proc/asound/cards
> 
> 2) set the desired card as default used:
> sudo nano  /etc/modprobe.d/alsa-base
> go to the bottom and change the index of the default card from -2 to 0
> 
> cheers.
> 
> 
> 
> 
> 
> On Sat, Jun 16, 2012 at 10:54 PM, stompdagg...@yahoo.com 
>  wrote:
> 
> Hello All,
>> 
>> 
>> I'm about to reinstate my 3 way multiseat configuration (2 seats and one for 
>> the tv), up until now I didn't used the sound cards but now as I got a usb 
>> sound card I want to add sound support.
>> 
>> 
>> is there a way to define in xorg.conf what sound card will be used by what 
>> seat?
>> 
>> 
>> Thanks.
>> 
>>  
>> An wise Scandinavian old man once said: "in the end, everything is going to 
>> be alright"
>> ___
>> xorg@lists.x.org: X.Org support
>> Archives: http://lists.freedesktop.org/archives/xorg
>> Info: http://lists.x.org/mailman/listinfo/xorg
>> Your subscription address: gius...@gmail.com
>> 
> 
> ___
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: stompdagg...@yahoo.com


___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: defining sound card in xorg.conf

2012-06-18 Thread stompdagg...@yahoo.com
Hello,

Thanks for the replay but I'm not sure how this answers my question.
using xorg I can "seats", e.g. xorg will run a session limited to a specific 
combination of gpu, screen, keyboard and mouse.
I just want to add sound card to it.

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"



 From: Giuseppe Penone 
To: "stompdagg...@yahoo.com"  
Cc: "x...@lists.freedesktop.org"  
Sent: Monday, June 18, 2012 9:31 AM
Subject: Re: defining sound card in xorg.conf
 

for usb audio cards there's a good explanation here 
https://help.ubuntu.com/community/UbuntuStudio/UsbAudioDevices

anyway to make it simple:

1) check that your system recognized the usb audio:
cat/proc/asound/cards

2) set the desired card as default used:
sudo nano  /etc/modprobe.d/alsa-base
go to the bottom and change the index of the default card from -2 to 0

cheers.





On Sat, Jun 16, 2012 at 10:54 PM, stompdagg...@yahoo.com 
 wrote:

Hello All,
>
>
>I'm about to reinstate my 3 way multiseat configuration (2 seats and one for 
>the tv), up until now I didn't used the sound cards but now as I got a usb 
>sound card I want to add sound support.
>
>
>is there a way to define in xorg.conf what sound card will be used by what 
>seat?
>
>
>Thanks.
>
> 
>An wise Scandinavian old man once said: "in the end, everything is going to be 
>alright"
>___
>xorg@lists.x.org: X.Org support
>Archives: http://lists.freedesktop.org/archives/xorg
>Info: http://lists.x.org/mailman/listinfo/xorg
>Your subscription address: gius...@gmail.com
>

___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

defining sound card in xorg.conf

2012-06-16 Thread stompdagg...@yahoo.com
Hello All,

I'm about to reinstate my 3 way multiseat configuration (2 seats and one for 
the tv), up until now I didn't used the sound cards but now as I got a usb 
sound card I want to add sound support.

is there a way to define in xorg.conf what sound card will be used by what seat?

Thanks.

 
An wise Scandinavian old man once said: "in the end, everything is going to be 
alright"___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com