[Mesa-dev] st/vega: Use vgapi. commit causes a link regression on Gentoo

2014-04-21 Thread stompdagg...@yahoo.com
Greetings,

I have a Gentoo system using mesa from git, since the following commit: 
http://cgit.freedesktop.org/mesa/mesa/commit/?id=75143ef05576ee9f25ee176bc28c3c4d03705bf5
 all pkgs on my system which depends on openvg cannot be upgraded because all 
the vg* funcs where replaced by vega* funcs.
this causes a backport compatibility link time regression.
in addition, the following file: 
http://cgit.freedesktop.org/mesa/mesa/tree/include/VG/openvg.h?id=75143ef05576ee9f25ee176bc28c3c4d03705bf5
 still defines the vg* funcs and not the vega* funcs.

I wonder, was this backport compatibility link time regression intentional? if 
so why?

Dagg.___
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/mesa-dev


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

2014-03-25 Thread stompdagg...@yahoo.com
On Monday, March 24, 2014 2:23 PM, Fred heitk...@ameritech.net 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 unistd.h
#include fcntl.h
#include stdio.h
#include errno.h
#include string.h
 
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 
stompdagg...@yahoo.com wrote:
 
On Tuesday, March 11, 2014 8:45 AM, stompdagg...@yahoo.com 
stompdagg...@yahoo.com wrote:
 
On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer mic...@daenzer.net 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
  mic...@daenzer.net
 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

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 unistd.h
#include fcntl.h
#include stdio.h
#include errno.h
#include string.h
 
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 
stompdagg...@yahoo.com wrote:
 
On Tuesday, March 11, 2014 8:45 AM, stompdagg...@yahoo.com 
stompdagg...@yahoo.com wrote:
 
On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer mic...@daenzer.net 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 mic...@daenzer.net
 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-15 Thread stompdagg...@yahoo.com


On Saturday, March 15, 2014 3:33 PM, Alex Deucher alexdeuc...@gmail.com wrote:
 
On Sat, Mar 15, 2014 at 4:34 AM, stompdagg...@yahoo.com
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 unistd.h
 #include fcntl.h
 #include stdio.h
 #include errno.h
 #include string.h

 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


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


On Saturday, March 15, 2014 3:33 PM, Alex Deucher alexdeuc...@gmail.com wrote:
 
On Sat, Mar 15, 2014 at 4:34 AM, stompdagg...@yahoo.com
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 unistd.h
 #include fcntl.h
 #include stdio.h
 #include errno.h
 #include string.h

 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-14 Thread stompdagg...@yahoo.com
On Tuesday, March 11, 2014 8:45 AM, stompdagg...@yahoo.com 
stompdagg...@yahoo.com wrote:
 
On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer mic...@daenzer.net 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 mic...@daenzer.net
 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-08 Thread stompdagg...@yahoo.com
On Saturday, March 8, 2014 9:01 PM, Alex Deucher alexdeuc...@gmail.com wrote:
 
On Sat, Mar 8, 2014 at 2:56 AM, stompdagg...@yahoo.com

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

Re: no hdmi sound on hd5450

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


2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:

 2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 does the following patch: [FIX][PATCH] drm/radeon: fix WREG32_OR macro
 setting bits in a register which you've commited fixes my
 issue?

Yes, I believe so! Sorry, I forgot to ping you about that.

 thats ok, I've applied the patch it doesn't seems to work, I'll verify 
 later
 today when I'll get home.

 also, does screen flickering is part of this bug?

Please create a bug report, and stop using HTML in your e-mail all the time.

Provide output of avivotool regs hdmi in your bug report.

bug 68244 opened.

I'm trying to figure out how to disable HTML in mails in yahoo, still no 
luck, sorry.

Rafał, any updates on the mentioned above bug? is there anything I can do to 
help?

Hello Rafał,

with Mr. Konig's help I was able to fix it, it isn't an dri issue but rather an 
alsa issue.

for more info you can enter the but mentioned above and see the explanation 
I've posted there.

thanks for your help. ___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


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

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


From: walter harms wha...@bfs.de

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 stompdagg...@yahoo.com
 
 To: x...@lists.freedesktop.org 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: no hdmi sound on hd5450

2013-09-21 Thread stompdagg...@yahoo.com
2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:

 2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 does the following patch: [FIX][PATCH] drm/radeon: fix WREG32_OR macro
 setting bits in a register which you've commited fixes my
 issue?

Yes, I believe so! Sorry, I forgot to ping you about that.

 thats ok, I've applied the patch it doesn't seems to work, I'll verify later
 today when I'll get home.

 also, does screen flickering is part of this bug?

Please create a bug report, and stop using HTML in your e-mail all the time.

Provide output of avivotool regs hdmi in your bug report.

bug 68244 opened.

I'm trying to figure out how to disable HTML in mails in yahoo, still no luck, 
sorry.

Rafał, any updates on the mentioned above bug? is there anything I can do to 
help?
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


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

2013-08-25 Thread stompdagg...@yahoo.com
From: walter harms wha...@bfs.de

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 stompdagg...@yahoo.com
 
 To: x...@lists.freedesktop.org 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 stompdagg...@yahoo.com

To: x...@lists.freedesktop.org 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

Re: no hdmi sound on hd5450

2013-08-19 Thread stompdagg...@yahoo.com
2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:

 2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 does the following patch: [FIX][PATCH] drm/radeon: fix WREG32_OR macro
 setting bits in a register which you've commited fixes my issue?

Yes, I believe so! Sorry, I forgot to ping you about that.

 thats ok, I've applied the patch it doesn't seems to work, I'll verify later
 today when I'll get home.

 also, does screen flickering is part of this bug?

Please create a bug report, and stop using HTML in your e-mail all the time.

Provide output of avivotool regs hdmi in your bug report.

bug 68244 opened.

I'm trying to figure out how to disable HTML in mails in yahoo, still no luck, 
sorry.___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


no hdmi sound on hd5450

2013-08-18 Thread stompdagg...@yahoo.com
>2013/8/18 StompDagger1 at yahoo.com :

>> 2013/8/18 StompDagger1 at yahoo.com :
 does the following patch: "[FIX][PATCH] drm/radeon: fix WREG32_OR macro
 setting bits in a register" which you've commited fixes my issue?
>>
>>>Yes, I believe so! Sorry, I forgot to ping you about that.
>>
>> thats ok, I've applied the patch it doesn't seems to work, I'll verify later
>> today when I'll get home.
>>
>> also, does screen flickering is part of this bug?
>
>Please create a bug report, and stop using HTML in your e-mail all the time.
>
>Provide output of "avivotool regs hdmi" in your bug report.

bug 68244 opened.

I'm trying to figure out how to disable HTML in mails in yahoo, still no luck, 
sorry.
-- next part --
An HTML attachment was scrubbed...
URL: 



no hdmi sound on hd5450

2013-08-18 Thread stompdagg...@yahoo.com
2013/8/18 StompDagger1 at yahoo.com :
>> does the following patch: "[FIX][PATCH] drm/radeon: fix WREG32_OR macro
>> setting bits in a register" which you've commited fixes my issue?

>Yes, I believe so! Sorry, I forgot to ping you about that.

thatsok, I've applied the patch it doesn't seems to work, I'll verify later 
today when I'll get home.

also, does screen flickering is part of this bug?
-- next part --
An HTML attachment was scrubbed...
URL: 



Re: no hdmi sound on hd5450

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


2013/8/13 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 following the inclusion of UVD support for and a post I've seen written by
 on of the devs mentioning that the hdmi sound will likely to be activated by
 default in 3.12, I've decided to switch my cards and use the hd5450 as the
 media center card and connect it to my hdtv.

 I've enabled the sound via the relevant kernel param, I see in dmesg that it
 is enabled and when I try to play directly to the hdmi, I see that mplayer
 is playing but there is no sound coming out.

 what can be the issue?

We've a regression in radeon (in audio support), I'll try to fix it
tomorrow or the day after. That's the first thing to try.

wow, thanks for the
 quick replay, I'll patiently wait for the fix.

have a great week.

Rafal,

does the following patch: [FIX][PATCH] drm/radeon: fix WREG32_OR macro setting 
bits in a register which you've commited fixes my issue?

Thanks.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: no hdmi sound on hd5450

2013-08-18 Thread stompdagg...@yahoo.com
2013/8/18 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 does the following patch: [FIX][PATCH] drm/radeon: fix WREG32_OR macro
 setting bits in a register which you've commited fixes my issue?

Yes, I believe so! Sorry, I forgot to ping you about that.

thatsok, I've applied the patch it doesn't seems to work, I'll verify later 
today when I'll get home.

also, does screen flickering is part of this bug?
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


no hdmi sound on hd5450

2013-08-17 Thread stompdagg...@yahoo.com


>>2013/8/13 StompDagger1 at yahoo.com :
>>> following the inclusion of UVD support for and a post I've seen written by
>>> on of the devs mentioning that the hdmi sound will likely to be activated by
>>> default in 3.12, I've decided to switch my cards and use the hd5450 as the
>>> media center card and connect it to my hdtv.
>>>
>>> I've enabled the sound via the relevant kernel param, I see in dmesg that it
>>> is enabled and when I try to play directly to the hdmi, I see that mplayer
>>> is playing but there is no sound coming out.
>>>
>>> what can be the issue?

>>We've a regression in radeon (in audio support), I'll try to fix it
>>tomorrow or the day after. That's the first thing to try.

>wow, thanks for the
 quick replay, I'll patiently wait for the fix.

>have a great week.

Rafal,

does the following patch: "[FIX][PATCH] drm/radeon: fix WREG32_OR macro setting 
bits in a register" which you've commited fixes my issue?

Thanks.
-- next part --
An HTML attachment was scrubbed...
URL: 



no hdmi sound on hd5450

2013-08-13 Thread stompdagg...@yahoo.com
From: Rafa? Mi?ecki 

To: "StompDagger1 at yahoo.com"  
Cc: "dri-devel at lists.freedesktop.org"  
Sent: Tuesday, August 13, 2013 9:39 PM
Subject: Re: no hdmi sound on hd5450


>2013/8/13 StompDagger1 at yahoo.com :
>> following the inclusion of UVD support for and a post I've seen written by
>> on of the devs mentioning that the hdmi sound will likely to be activated by
>> default in 3.12, I've decided to switch my cards and use the hd5450 as the
>> media center card and connect it to my hdtv.
>>
>> I've enabled the sound via the relevant kernel param, I see in dmesg that it
>> is enabled and when I try to play directly to the hdmi, I see that mplayer
>> is playing but there is no sound coming out.
>>
>> what can be the issue?

>We've a regression in radeon (in audio support), I'll try to fix it
>tomorrow or the day after. That's the first thing to try.

wow, thanks for the quick replay, I'll patiently wait for the fix.

have a great week.
-- next part --
An HTML attachment was scrubbed...
URL: 



no hdmi sound on hd5450

2013-08-13 Thread stompdagg...@yahoo.com
Hello All,

following the inclusion of UVD support for and a post I've seen written by on 
of the devs mentioning that the hdmi sound will likely to be activated by 
default in 3.12, I've decided to switch my cards and use the hd5450 as the 
media center card and connect it to my hdtv.

I've enabled the sound via the relevant kernel param, I see in dmesg that it is 
enabled and when I try to play directly to the hdmi, I see that mplayer is 
playing but there is no sound coming out.

what can be the issue?

my setup is composed of one rigg with 3 gpus, an inteligp, radeon hd3560 and 
radeonhd5450 which are used in a tree seat multi seat setup based on gentoo.

one of the seats (the one based on 5450hd) is dedicated to be used as the media 
center.
I'm running kernel which is based on 3.10.6.

here are some outputs:
dmesg: http://bpaste.net/show/121619/

kernel onfig: http://bpaste.net/show/121620/
lspci:
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family 
DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core 
Processor Family PCI Express Root Port (rev 09)
00:02.0 Display controller: Intel Corporation 2nd Generation Core Processor 
Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series 
Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family 
USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family 
High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 1 (rev b5)
00:1c.2 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 3 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev b5)
00:1c.4 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 5 (rev b5)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family 
USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation Z68 Express Chipset Family LPC Controller 
(rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 
SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus 
Controller (rev 05)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Park 
[Mobility Radeon HD 5430]
01:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI Cedar HDMI Audio 
[Radeon HD 5400/6300 Series]
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168 PCI 
Express Gigabit Ethernet controller (rev 06)
04:00.0 PCI bridge: Integrated Technology Express, Inc. Device 8892 (rev 10)
06:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV635 
[Radeon HD 3600 Series]
06:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI RV635 HDMI Audio 
[Radeon HD 3600 Series]


aplay -l:
 List of PLAYBACK Hardware Devices  
card 0: PCH [HDA Intel PCH], device 0: ALC889 Analog [ALC889 Analog] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0 
card 0: PCH [HDA Intel PCH], device 1: ALC889 Digital [ALC889 Digital] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0 
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0 
card 1: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0 
card 2: HDMI [HDAATIHDMI], device 3: HDMI 0 [HDMI 0] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0 
card 3: Device [Generic USB Audio Device], device 0: USB Audio [USB Audio] 
? Subdevices: 1/1 
? Subdevice #0: subdevice #0
aplay -L:
null 
? ? Discard all samples (playback) or generate zero samples (capture) 
default:CARD=PCH
? ? HDA Intel PCH, ALC889 Analog 
? ? Default Audio Device 
sysdefault:CARD=PCH
? ? HDA Intel PCH, ALC889 Analog 
? ? Default Audio Device 
front:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? Front speakers 
surround40:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? 4.0 Surround output to Front and Rear speakers 
surround41:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? 4.1 Surround output to Front, Rear and Subwoofer speakers 
surround50:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? 5.0 Surround output to Front, Center and Rear speakers 
surround51:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? 5.1 Surround output to Front, Center, Rear and Subwoofer speakers 
surround71:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Analog 
? ? 7.1 Surround output to Front, Center, Side, Rear and Woofer speakers 
iec958:CARD=PCH,DEV=0 
? ? HDA Intel PCH, ALC889 Digital 
? ? IEC958 (S/PDIF) Digital Audio Output 
hdmi:CARD=PCH,DEV=0 
? ? HDA Intel PCH, HDMI 0 
? ? HDMI Audio Output 
hdmi:CARD=Generic,DEV=0 
? ? HD-Audio Generic, HDMI 0 
? ? HDMI Audio Output 
hdmi:CARD=HDMI,DEV=0 
? ? 

no hdmi sound on hd5450

2013-08-13 Thread stompdagg...@yahoo.com
Hello All,

following the inclusion of UVD support for and a post I've seen written by on 
of the devs mentioning that the hdmi sound will likely to be activated by 
default in 3.12, I've decided to switch my cards and use the hd5450 as the 
media center card and connect it to my hdtv.

I've enabled the sound via the relevant kernel param, I see in dmesg that it is 
enabled and when I try to play directly to the hdmi, I see that mplayer is 
playing but there is no sound coming out.

what can be the issue?

my setup is composed of one rigg with 3 gpus, an inteligp, radeon hd3560 and 
radeonhd5450 which are used in a tree seat multi seat setup based on gentoo.

one of the seats (the one based on 5450hd) is dedicated to be used as the media 
center.
I'm running kernel which is based on 3.10.6.

here are some outputs:
dmesg: http://bpaste.net/show/121619/

kernel onfig: http://bpaste.net/show/121620/
lspci:
00:00.0 Host bridge: Intel Corporation 2nd Generation Core Processor Family 
DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200/2nd Generation Core 
Processor Family PCI Express Root Port (rev 09)
00:02.0 Display controller: Intel Corporation 2nd Generation Core Processor 
Family Integrated Graphics Controller (rev 09)
00:16.0 Communication controller: Intel Corporation 6 Series/C200 Series 
Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family 
USB Enhanced Host Controller #2 (rev 05)
00:1b.0 Audio device: Intel Corporation 6 Series/C200 Series Chipset Family 
High Definition Audio Controller (rev 05)
00:1c.0 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 1 (rev b5)
00:1c.2 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 3 (rev b5)
00:1c.3 PCI bridge: Intel Corporation 82801 PCI Bridge (rev b5)
00:1c.4 PCI bridge: Intel Corporation 6 Series/C200 Series Chipset Family PCI 
Express Root Port 5 (rev b5)
00:1d.0 USB controller: Intel Corporation 6 Series/C200 Series Chipset Family 
USB Enhanced Host Controller #1 (rev 05)
00:1f.0 ISA bridge: Intel Corporation Z68 Express Chipset Family LPC Controller 
(rev 05)
00:1f.2 SATA controller: Intel Corporation 6 Series/C200 Series Chipset Family 
SATA AHCI Controller (rev 05)
00:1f.3 SMBus: Intel Corporation 6 Series/C200 Series Chipset Family SMBus 
Controller (rev 05)
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Park 
[Mobility Radeon HD 5430]
01:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI Cedar HDMI Audio 
[Radeon HD 5400/6300 Series]
03:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168 PCI 
Express Gigabit Ethernet controller (rev 06)
04:00.0 PCI bridge: Integrated Technology Express, Inc. Device 8892 (rev 10)
06:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV635 
[Radeon HD 3600 Series]
06:00.1 Audio device: Advanced Micro Devices [AMD] nee ATI RV635 HDMI Audio 
[Radeon HD 3600 Series]


aplay -l:
 List of PLAYBACK Hardware Devices  
card 0: PCH [HDA Intel PCH], device 0: ALC889 Analog [ALC889 Analog] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0 
card 0: PCH [HDA Intel PCH], device 1: ALC889 Digital [ALC889 Digital] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0 
card 0: PCH [HDA Intel PCH], device 3: HDMI 0 [HDMI 0] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0 
card 1: Generic [HD-Audio Generic], device 3: HDMI 0 [HDMI 0] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0 
card 2: HDMI [HDAATIHDMI], device 3: HDMI 0 [HDMI 0] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0 
card 3: Device [Generic USB Audio Device], device 0: USB Audio [USB Audio] 
  Subdevices: 1/1 
  Subdevice #0: subdevice #0
aplay -L:
null 
    Discard all samples (playback) or generate zero samples (capture) 
default:CARD=PCH
    HDA Intel PCH, ALC889 Analog 
    Default Audio Device 
sysdefault:CARD=PCH
    HDA Intel PCH, ALC889 Analog 
    Default Audio Device 
front:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    Front speakers 
surround40:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    4.0 Surround output to Front and Rear speakers 
surround41:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    4.1 Surround output to Front, Rear and Subwoofer speakers 
surround50:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    5.0 Surround output to Front, Center and Rear speakers 
surround51:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    5.1 Surround output to Front, Center, Rear and Subwoofer speakers 
surround71:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Analog 
    7.1 Surround output to Front, Center, Side, Rear and Woofer speakers 
iec958:CARD=PCH,DEV=0 
    HDA Intel PCH, ALC889 Digital 
    IEC958 (S/PDIF) Digital Audio Output 
hdmi:CARD=PCH,DEV=0 
    HDA Intel PCH, HDMI 0 
    HDMI Audio Output 
hdmi:CARD=Generic,DEV=0 
    HD-Audio Generic, HDMI 0 
    HDMI Audio Output 
hdmi:CARD=HDMI,DEV=0 
    

Re: no hdmi sound on hd5450

2013-08-13 Thread stompdagg...@yahoo.com
From: Rafał Miłecki zaj...@gmail.com

To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: dri-devel@lists.freedesktop.org dri-devel@lists.freedesktop.org 
Sent: Tuesday, August 13, 2013 9:39 PM
Subject: Re: no hdmi sound on hd5450
 

2013/8/13 stompdagg...@yahoo.com stompdagg...@yahoo.com:
 following the inclusion of UVD support for and a post I've seen written by
 on of the devs mentioning that the hdmi sound will likely to be activated by
 default in 3.12, I've decided to switch my cards and use the hd5450 as the
 media center card and connect it to my hdtv.

 I've enabled the sound via the relevant kernel param, I see in dmesg that it
 is enabled and when I try to play directly to the hdmi, I see that mplayer
 is playing but there is no sound coming out.

 what can be the issue?

We've a regression in radeon (in audio support), I'll try to fix it
tomorrow or the day after. That's the first thing to try.

wow, thanks for the quick replay, I'll patiently wait for the fix.

have a great week.
___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel


Re: [BackupPC-users] exclude ignores hidden folders

2013-06-17 Thread stompdagg...@yahoo.com
On 6/15/2013 4:26 AM, stompdagg...@yahoo.com wrote:
 Hello Bowie,

 On 6/14/2013 4:23 AM, stompdagg...@yahoo.com wrote:

 Hello,

 I'm trying to backup my /home folder but exclude the vm folder used by
 VB, but for some reason when ever I run backup, the folder's content
 is always backed up.

 what am I doing wrong? here is the host's config:

 $Conf{RsyncShareName} = [
    '/home',
    '/root'
 ];
 Ok, so you have two shares, '/home' and '/root'.

 $Conf{BackupFilesExclude} = {
    '/home/virt_admin' = [
  'Machines'
    ],
 This will do absolutely nothing, since there is no share named
 '/home/virt_admin'
 I see, strangely enough I remember that this actually worked and the 
 content of Machines wasn't updated.
 none the less I'll do this, thanks.
    '/home/*' = [
  '.VirtualBox/Machines',
  'Downloads'
    ]
 };
 This one should work to exclude files/folders with these names under the
 '/home' share.
 thing is, it doesn't seems to do that, I still backup this folder's content.

Actually, I take that back.  I must not have noticed the * at the end. 
That one won't work either because there is not a share named '/home/*'.

The first part of the exclude must either be a share name or '*' if it
is to apply to all shares.  So in your case, only the following will work:

'/root'
'/home'
'*'

Anything else will be ignored.  So replace both of your current excludes
with this and it should work better:

$Conf{BackupFilesExclude} = {
  '/home' = [
  '.VirtualBox/Machines',
  'Downloads',
  '/virt_admin/Machines',
    ],
};

I was able to make it work with the following config:
$Conf{RsyncShareName} = [
  '/home',
  '/root'
];
$Conf{BackupFilesExclude} = {
  '/home' = [
    '*/.VirtualBox/Machines',
    '*/Downloads',
    'virt_admin/Machines'
  ]
};

thanks for all the help

--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


Re: [BackupPC-users] exclude ignores hidden folders

2013-06-15 Thread stompdagg...@yahoo.com
Hello Bowie,

On 6/14/2013 4:23 AM, stompdagg...@yahoo.com wrote:

 Hello,

 I'm trying to backup my /home folder but exclude the vm folder used by
 VB, but for some reason when ever I run backup, the folder's content
 is always backed up.

 what am I doing wrong? here is the host's config:

 $Conf{RsyncShareName} = [
   '/home',
   '/root'
 ];

Ok, so you have two shares, '/home' and '/root'.

 $Conf{BackupFilesExclude} = {
   '/home/virt_admin' = [
 'Machines'
   ],

This will do absolutely nothing, since there is no share named
'/home/virt_admin'
I see, strangely enough I remember that this actually worked and the content 
of Machines wasn't updated.
none the less I'll do this, thanks.

   '/home/*' = [
 '.VirtualBox/Machines',
 'Downloads'
   ]
 };

This one should work to exclude files/folders with these names under the
'/home' share.
thing is, it doesn't seems to do that, I still backup this folder's content.

You should add another one here for 'virt_admin/Machines' to replace the
non-functional exclusion above.

I'll try what you have suggested to see maybe it will work, will update later 
on, thanks.

ok, I'm half way into the backup and I see that the content of 
.VirtualBox/Machines is backed up so something I'm doing wrong, see:

NCC-5001-D ncc-5001-d_home # find new/f%2fhome/fuser/f.VirtualBox/fMachines
new/f%2fhome/fuser/f.VirtualBox/fMachines
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs/fVBox.log
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs/fVBox.log.2
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs/fVBox.log.1
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs/attrib
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fLogs/fVBox.log.3
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fSnapshots
new/f%2fhome/fuser/f.VirtualBox/fMachines/fWindows/fWindows-flat.vmdk

any hints?

Thanks.


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[BackupPC-users] exclude ignores hidden folders

2013-06-14 Thread stompdagg...@yahoo.com
Hello,

I'm trying to backup my /home folder but exclude the vm folder used by VB, but 
for some reason when ever I run backup, the folder's content is always backed 
up.

what am I doing wrong? here is the host's config:

$Conf{RsyncShareName} = [
  '/home',
  '/root'
];
$Conf{BackupFilesExclude} = {
  '/home/virt_admin' = [
    'Machines'
  ],
  '/home/*' = [
    '.VirtualBox/Machines',
    'Downloads'
  ]
};
$Conf{XferMethod} = 'rsync';
$Conf{BlackoutPeriods} = [
  {
    'hourEnd' = 6,
    'weekDays' = [
  0,
  1,
  2,
  3,
  4,
  5,
  6
    ],
    'hourBegin' = 23
  }
];
$Conf{FullAgeMax} = 84;
$Conf{FullKeepCnt} = [
  12
];
$Conf{IncrAgeMax} = 84;
$Conf{IncrKeepCnt} = 4;
$Conf{IncrLevels} = [
  1,
  2,
  3,
  4
];
$Conf{IncrPeriod} = '3.97';
$Conf{BackupsDisable} = 2;

Thanks.
--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev___
BackupPC-users mailing list
BackupPC-users@lists.sourceforge.net
List:https://lists.sourceforge.net/lists/listinfo/backuppc-users
Wiki:http://backuppc.wiki.sourceforge.net
Project: http://backuppc.sourceforge.net/


[Bacula-users] deduplication within a volmue

2013-05-30 Thread stompdagg...@yahoo.com
Hello,

I have a question, I want to backup my videos and music files, this means big 
files, lets assume that I define a pool for the full backups with to volumes 
and a 6 months retention.

if the two volumes are the same in 95%, will deduplication kicks in or I need 
to configure it somehow?

Thanks.
--
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with 2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


[Bacula-users] bacula related quesitons

2013-05-27 Thread stompdagg...@yahoo.com
Hello All,

I'm trying bacula for my home backups and I have some questions that I'd 
appreciate if someone can help with them.


1. I'm backing up 3 clients, do I need catalog backup for each? also 
can I use the same job for them all?
2. I want to backup a folder and keep the changes in it two weeks back, 
what is the right way to do so?
3. if I want to backup a windows machine, do I need to add the tray 
monitor to startup?
Thanks.
--
Try New Relic Now  We'll Send You this Cool Shirt
New Relic is the only SaaS-based application performance monitoring service 
that delivers powerful full stack analytics. Optimize and monitor your
browser, app,  servers with just a few lines of code. Try New Relic
and get this awesome Nerd Life shirt! http://p.sf.net/sfu/newrelic_d2d_may___
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users


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,  olivier.e.am...@gmail.com 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-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,  olivier.e.am...@gmail.com
 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 Tue, Dec 11, 2012 at 5:48 AM, stompdagg...@yahoo.com 
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,  olivier.e.am...@gmail.com
 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: 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 siefke_lis...@web.de
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 mic...@daenzer.net 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-15 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 dit...@d-unger.de
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 aiv...@latnet.lv
To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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 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 a...@user-unfriendly.net

To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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: why does -sharevts is so important for multseat setup?

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

From: Alexandre CONFIANT-LATOUR a...@user-unfriendly.net

To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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 a...@user-unfriendly.net

To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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: 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 stompdagg...@yahoo.com
To: Dan Nicholson dbn.li...@gmail.com 
Cc: xorg@lists.x.org 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 dbn.li...@gmail.com
To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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
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 stompdagg...@yahoo.com
 To: xorg@lists.x.org 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
anyone?

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



 From: stompdagg...@yahoo.com stompdagg...@yahoo.com
To: xorg@lists.x.org 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

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 dbn.li...@gmail.com
To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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
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 stompdagg...@yahoo.com
 To: xorg@lists.x.org 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

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-05 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 ser...@serjux.com
To: linux-service.be bvba g...@linux-service.be 
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 ser...@serjux.com
  To: stompdagg...@yahoo.com stompdagg...@yahoo.com
  Cc: xorg@lists.x.org 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 ser...@serjux.com
   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: 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 coo...@llnl.gov
To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: xorg@lists.x.org 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 coo...@llnl.gov
To: xorg@lists.x.org 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: 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 gius...@gmail.com
To: stompdagg...@yahoo.com stompdagg...@yahoo.com 
Cc: x...@lists.freedesktop.org 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 
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

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 g...@linux-service.be
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 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 gius...@gmail.com
  
  To: stompdagg...@yahoo.com stompdagg...@yahoo.com
  Cc: x...@lists.freedesktop.org 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
  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

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

Re: [xz-devel] lzma orig file and decompressed file are different.

2011-12-16 Thread stompdagg...@yahoo.com
From: Lasse Collin lasse.col...@tukaani.org

To: xz-devel@tukaani.org 
Sent: Thursday, December 15, 2011 8:43 PM
Subject: Re: [xz-devel] lzma orig file and decompressed file are different.
 
On 2011-12-13 stompdagg...@yahoo.com wrote:
 back to topic, I've taken the pipe decompress example and started
 modifying it, when I got to read from file, decompress and write file
 using c functions it worked but when I changed it to c++ stream
 handling see here: http://dpaste.com/673199/ the output file is
 identical to the original but I get error code 10.
 
 how is that possible?

I'm not sure. Using in.reasome looks suspicious. You may want to use
in.read and in.gcount instead.

-- 
Lasse Collin  |  IRC: Larhzu @ IRCnet  Freenode


yes! problem solved, the code can be viewed at 
http://gitorious.org/open-source-soccer-manager/ossm/blobs/master/src/Utilities/Utils-General.cpp#line240

thanks for the help :)


Re: multiseat on lap top

2011-10-15 Thread stompdagg...@yahoo.com
kdmrc doesn't cares about xephyr.

it depends on the xorg.conf.

I don't use xephyr but I imagine that it creates a virtual card which in turn 
is used the same way one configures multiseat with more then one cards.

external gpu might be ugly, but you'll gain better performance.

 OT, please remember to press replay all to keep this thread in the mailing 
list.

 
: ,   .


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



From: masoud javadieh javadieh@gmail.com
To: stompdagg...@yahoo.com stompdagg...@yahoo.com
Sent: Saturday, October 15, 2011 9:37 PM
Subject: Re: multiseat on lap top


Thanx
I am aware of the necessity of hub for in and mouse.
The only thing I have to overcome is setting a conf besides  kdmrc or xephyre 
to use a single graphic card with two output port for monitors which almost 
always laptops are equipped with this kind of cards.
So I need settings for such cards. As I know the chest and xephyre are the most 
common xservers which work on top of another xserver. As they are capable of 
using a graphic card as many as output port of a card, the solution rest on 
using one of those programme. 
Once I read a threat on a famous developer site from a brithis guy on the 
subject. But he refused to give me the settings he had.
As it is a painful job I did not dear to start it.
It is why I am asking for help.
An external graphic card is a solution but is a little ugly. Having a hardware 
beside a laptop does not sound nice.
m.javadieh
8698-1340
On Oct 15, 2011 12:10 PM, stompdagg...@yahoo.com stompdagg...@yahoo.com 
wrote:

in general, for each seat you need at least 2 usb/ps2 ports and 1 display port.

for 3 seats you need 3 display ports and 6 usb inputs, in all of the laptops 
I've seen, there was a max of 2 display ports and 4 usb ports or 2 usb and 2 
ps2 ports.
the only way you can have a 3 seats multi seat conf on a laptop is either 
using the actual comp as a seat or getting hubs for the usb and external gpu.

imho either two options might impact the performance as multi seat tends to be 
heavy and laptops usually aren't that powerful.

as I'm not using fedora, I cannot comment on the possibility of doing that on 
fedora but I'm sure you can find useful info in fedora's docs.

btw, the old man is god, but we leave it be.
 

: ,   .


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



From: masoud javadieh javadieh@gmail.com
To: stompdagg...@yahoo.com stompdagg...@yahoo.com
Sent: Saturday, October 15, 2011 7:53 AM
Subject: Re: multiseat on lap top


Thanks to you and the old man (as Einstein called man's created God)
I have read setting up multiseat using one single graphic card is possible 
through xephyre. Assuming laptops have two or three monitor out puts, is it 
yet possible to have multiseat on laptop.
I am not prophi. But I could make a multiseat on fedora14 with an internal and 
external graphic card setting kdmrc and sort.conf.
Regards
m.javadieh
8698-1340
On Oct 15, 2011 9:07 AM, stompdagg...@yahoo.com stompdagg...@yahoo.com 
wrote:

assuming you have only one gpu, yes.
you can try and see if getting an external gpu is worthwhile.

 
: ,   .


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



From: masoud javadieh javadieh@gmail.com
To: xorg@lists.freedesktop.org xorg@lists.freedesktop.org
Sent: Saturday, October 15, 2011 12:57 AM
Subject: multiseat on lap top


has anybody some experience on usage of multiseat on laptop?
should I use Xephyre inevitably?
___
xorg@lists.freedesktop.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com



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

Re: multiseat on lap top

2011-10-14 Thread stompdagg...@yahoo.com
assuming you have only one gpu, yes.
you can try and see if getting an external gpu is worthwhile.

 
: ,   .


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



From: masoud javadieh javadieh@gmail.com
To: xorg@lists.freedesktop.org xorg@lists.freedesktop.org
Sent: Saturday, October 15, 2011 12:57 AM
Subject: multiseat on lap top


has anybody some experience on usage of multiseat on laptop?
should I use Xephyre inevitably?
___
xorg@lists.freedesktop.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.freedesktop.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: wireless keyboard and mouse doesn't work on multiseat

2011-10-10 Thread stompdagg...@yahoo.com
hello again.

I've replaced the wireless combo with a logitech mk250, current behavior is 
that the reaction of keyboard is mostly delayed (major delay) and the mouse is 
jerky but not like it was with the ms combo.

what are the odds this is a kdm issue as I use kdm to login?

 
: ,   .


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



From: Peter Hutterer peter.hutte...@who-t.net
To: stompdagg...@yahoo.com stompdagg...@yahoo.com
Cc: xorg@lists.freedesktop.org xorg@lists.freedesktop.org
Sent: Tuesday, September 20, 2011 8:24 AM
Subject: Re: wireless keyboard and mouse doesn't work on multiseat

On Mon, Sep 19, 2011 at 09:58:12PM -0700, stompdagg...@yahoo.com wrote:
 Hello,
 
 Thanks for the response, I've tried using the mouse event, the behavior is
 the same.

maybe your udev rules are messed up? the ioctl should succeed on any event
device.

Cheers,
  Peter

 
 
 From: Peter Hutterer peter.hutte...@who-t.net
 To: stompdagg...@yahoo.com stompdagg...@yahoo.com
 Cc: xorg@lists.freedesktop.org xorg@lists.freedesktop.org
 Sent: Tuesday, September 20, 2011 2:45 AM
 Subject: Re: wireless keyboard and mouse doesn't work on multiseat
 
 On Tue, Sep 13, 2011 at 10:04:05PM -0700, stompdagg...@yahoo.com wrote:
  Hello everyone,
  
  I have a strange problem, I've build a dual multiseat configuration to a 
  gentoo installation which is as follows:
  seat0 is composed of a ati3650, lg 19' screen, logitech usb mouse and ibm 
  keyboard.
  seat1 is composed of a ati5450, lg lcd 37' tv (usng 10m hdmi cable), ms 
  wireless 1000 keyboard and wireless 800 mouse combo.
  
  when booting the config, seat0 is working ok but the input in seat1 doesn't 
  work, there is a distance between the seat and the computer (5-7 meters) 
  but when I sit just beside the computer and tries the input it still 
  doesn't work.
  I've tried other usb sockets, I was able to find one which results in a 
  extremly delayed keyboard and jerky mouse but this happens only of I start 
  to move the mouse the minute I see the cursor, if I don't then it won't 
  work at all.
  
  if I drop to console, both keyboards work and if I boot in single seat, 
  both mouses works.
  
  here are some configs:
  .config: http://paste.pocoo.org/show/473571/ 
  /etc/X11/xorg.conf: http://paste.pocoo.org/show/473574/ 
  /usr/share/config/kdm/kdmrc: http://paste.pocoo.org/show/473575/ 
  /var/log/Xorg.0.log: http://paste.pocoo.org/show/473576/ 
  /var/log/Xorg.1.log: http://paste.pocoo.org/show/473577/ 
  emerge --info x11-base/xorg-server: http://paste.pocoo.org/show/473578/
   
  I have at home (at work now) another log in which I see this for the seat1:
  [    18.783] (II) Using input driver 'evdev' for 'Mouse1' 
  [    18.783] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so 
  [    18.783] (**) Option CorePointer 
  [    18.783] (**) Mouse1: always reports core events 
  [    18.783] (**) Mouse1: Device: 
  /dev/input/by-id/usb-Microsoft_Microsoft®_2.4GHz_Transceiver_v8.0-mouse 
 
 this should be the event-mouse file, that should fix it.
 
 Cheers,
   Peter
 
  [    18.783] (EE) ioctl EVIOCGNAME failed: Inappropriate ioctl for device 
  [    18.811] (EE) PreInit returned 8 for Mouse1 
  [    18.811] (II) UnloadModule: evdev 
  [    18.811] (II) Unloading evdev 
  
  when I'll get home, I'll provide it too
  
  Thanks for the help guys.
  
  
  :     ,               .
  
  
  An wise Scandinavian old man once said: in the end, everything is going to 
  be alright
 
  ___
  xorg@lists.freedesktop.org: X.Org support
  Archives: http://lists.freedesktop.org/archives/xorg
  Info: http://lists.freedesktop.org/mailman/listinfo/xorg
  Your subscription address: peter.hutte...@who-t.net
 
 ___
 xorg@lists.freedesktop.org: X.Org support
 Archives: http://lists.freedesktop.org/archives/xorg
 Info: http://lists.freedesktop.org/mailman/listinfo/xorg
 Your subscription address: stompdagg...@yahoo.com
___
xorg@lists.freedesktop.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.freedesktop.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.freedesktop.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

wireless keyboard and mouse doesn't work on multiseat

2011-09-13 Thread stompdagg...@yahoo.com
Hello everyone,

I have a strange problem, I've build a dual multiseat configuration to a gentoo 
installation which is as follows:
seat0 is composed of a ati3650, lg 19' screen, logitech usb mouse and ibm 
keyboard.
seat1 is composed of a ati5450, lg lcd 37' tv (usng 10m hdmi cable), ms 
wireless 1000 keyboard and wireless 800 mouse combo.

when booting the config, seat0 is working ok but the input in seat1 doesn't 
work, there is a distance between the seat and the computer (5-7 meters) but 
when I sit just beside the computer and tries the input it still doesn't work.
I've tried other usb sockets, I was able to find one which results in a 
extremly delayed keyboard and jerky mouse but this happens only of I start to 
move the mouse the minute I see the cursor, if I don't then it won't work at 
all.

if I drop to console, both keyboards work and if I boot in single seat, both 
mouses works.

here are some configs:
.config: http://paste.pocoo.org/show/473571/ 
/etc/X11/xorg.conf: http://paste.pocoo.org/show/473574/ 
/usr/share/config/kdm/kdmrc: http://paste.pocoo.org/show/473575/ 
/var/log/Xorg.0.log: http://paste.pocoo.org/show/473576/ 
/var/log/Xorg.1.log: http://paste.pocoo.org/show/473577/ 
emerge --info x11-base/xorg-server: http://paste.pocoo.org/show/473578/
 
I have at home (at work now) another log in which I see this for the seat1:
[    18.783] (II) Using input driver 'evdev' for 'Mouse1' 
[    18.783] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so 
[    18.783] (**) Option CorePointer 
[    18.783] (**) Mouse1: always reports core events 
[    18.783] (**) Mouse1: Device: 
/dev/input/by-id/usb-Microsoft_Microsoft®_2.4GHz_Transceiver_v8.0-mouse 
[    18.783] (EE) ioctl EVIOCGNAME failed: Inappropriate ioctl for device 
[    18.811] (EE) PreInit returned 8 for Mouse1 
[    18.811] (II) UnloadModule: evdev 
[    18.811] (II) Unloading evdev 

when I'll get home, I'll provide it too

Thanks for the help guys.


: ,   .


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

org.apache.commons.net.bsd.RLoginClient doesn't flush output

2010-12-21 Thread stompdagg...@yahoo.com
hello, I have a java program which connects to a unix account and needs to run 
some local scripts, the code looks like this:
RLoginClient connection=new RLoginClient();
String lUser=System.getProperty(user.name),lHost;
try {
lHost=InetAddress.getLocalHost().getHostName();
RExecClient rExecClient=new RExecClient();
rExecClient.connect(this.mHost);
rExecClient.rexec(this.mUser,this.mPasswd,if [ -f 
+''+.rhosts+''+ ]; then cp .rhosts .rhosts.bak; fi; echo +'\'+lHost+ 
+lUser+\n+lHost+.amdocs.com +lUser+\n+lHost+.corp.amdocs.com 
+lUser+''+  ~/.rhosts);
rExecClient.disconnect();
connection.connect(this.mHost);
connection.rlogin(lUser,this.mUser,xterm);
}
catch (SocketException e) {
...
}
catch (IOException e) {
try {
connection.disconnect();
}
catch (IOException f) {
...
}
OutputStreamWriter virtualKeyboard=new 
OutputStreamWriter(connection.getOutputStream());
InputStreamReader virtualScreen=new 
InputStreamReader(connection.getInputStream());
try {
virtualKeyboard.write(if [ ! -d installer ]; then mkdir installer; 
chmod 755 installer; fi;.toCharArray());
virtualKeyboard.flush();

the first rexec works and the command gets executed, but the two last lines get 
executed but on the unix side, I cannot see the output e.g. the folder, copying 
the line as is and running it in unix works.
this leads me to believe that the buffer doesn't get flushed.
how can I fix this?
I'm using latest jars from site and java 1.6 update 14.

thanks.


 
: ,   .


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