X2Go Bug report logs - #884
nxagent fails to run with "Could not open default font 'fixed'"

version graph

Package: nx-libs; Maintainer for nx-libs is X2Go Developers <x2go-dev@lists.x2go.org>;

Reported by: devsk <internet_everyone@yahoo.com>

Date: Sun, 31 May 2015 20:40:01 UTC

Severity: normal

Tags: fixed-upstream

Found in version 3.5.0.30

Fixed in version 3.5.99.4

Done: Juri Grabowski <x2go@jugra.de>

Bug is archived. No further changes may be made.

Forwarded to https://github.com/ArcticaProject/nx-libs/issues/84

Toggle useless messages

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to x2go-dev@lists.x2go.org, owner@bugs.x2go.org:
Bug#884; Package nx-libsversion: 3.5.0.30distro: gentoo ~amd64, fully updated.x2goclient: 4.0.3.2x2server: 4.0.1.19nx-libs (package nx in gentoo): 3.5.0.30fontsproto: 2.1.3libxfont: 1.5.1xorg-server: 1.17.1all font packages for xorg-x11 are installed and fonts.dir and fonts.alias files are correctly present and readable.detailed troubleshooting:  https://forums.gentoo.org/viewtopic-p-7755384.html. (Sun, 31 May 2015 20:40:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
New Bug report received and forwarded. Copy sent to owner@bugs.x2go.org. (Sun, 31 May 2015 20:40:02 GMT) (full text, mbox, link).


Message #5 received at submit@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: "submit@bugs.x2go.org" <submit@bugs.x2go.org>
Subject: nxagent fails to run with "Could not open default font 'fixed'"
Date: Sun, 31 May 2015 20:35:57 +0000 (UTC)
[Message part 1 (text/plain, inline)]
Package: nx-libsVersion: 3.5.0.30Distro: Gentoo ~amd64, fully updated.x2goclient: 4.0.3.2x2server: 4.0.1.19nx-libs (package nx in gentoo): 3.5.0.30fontsproto: 2.1.3libXfont: 1.5.1xorg-server: 1.17.1All font packages for xorg-x11 are installed and fonts.dir and fonts.alias files are correctly present and readable.Detailed troubleshooting:  https://forums.gentoo.org/viewtopic-p-7755384.html
The client connects and the server spawns the nxagent but then the session is unexpectedly terminated. Looking at the server side log, we see:
Info: Using shared memory parameters 1/1/0/0K. Info: Using alpha channel in render extension. Info: Not using local device configuration changes. keyboard file created Error: Aborting session with 'Could not open default font 'fixed''. Session: Aborting session at 'Tue May 26 23:22:22 2015'. Session: Session aborted at 'Tue May 26 23:22:22 2015'. 
I ran the nxagent through strace -ff -tt -v and its clear that it loads all fonts (at least it finds all font.alias and reads them fine) correctly. None of the children it spawns run into any issues with missing files or folders. The snippet below (you can read longer strace on gentoo forum post):
22:11:10.608011 open("/usr/share/fonts/100dpi/fonts.alias", O_RDONLY) = 4 22:11:10.608108 fstat(4, {st_mode=S_IFREG|0644, st_size=3154, ...}) = 0 22:11:10.608217 fstat(4, {st_mode=S_IFREG|0644, st_size=3154, ...}) = 0 22:11:10.608308 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f29ca5a9000 22:11:10.608398 read(4, "lucidasans-bolditalic-8 -b&h-luc"..., 4096) = 3154 22:11:10.608496 brk(0x1f01000)          = 0x1f01000 22:11:10.608688 read(4, "", 4096)       = 0 22:11:10.608781 close(4)                = 0 22:11:10.608868 munmap(0x7f29ca5a9000, 4096) = 0 22:11:10.609148 write(2, "Error: Aborting session with '", 30Error: Aborting session with ') = 30 22:11:10.609277 write(2, "Could not open default font 'fix"..., 35Could not open default font 'fixed') = 35 22:11:10.609395 write(2, "'.\n", 3'. )     = 3 
Looking at the code, the origin of the error is:
        InitFonts();         if (loadableFonts) {             SetFontPath(0, 0, (unsigned char *)defaultFontPath, &error);         } else {             if (SetDefaultFontPath(defaultFontPath) != Success)                 ErrorF("failed to set default font path '%s'",                         defaultFontPath);         }         if (!SetDefaultFont(defaultTextFont))             FatalError("could not open default font '%s'", defaultTextFont); 
SetDefaultFont() is failing. Looking at that function (text below from IRC channel):
[19:57] <devsk> SetDefaultFont(char *defaultfontname)[19:57] <devsk> {[19:57] <devsk>     int         err;[19:57] <devsk>     FontPtr     pf;[19:57] <devsk>     XID         fid;[19:57] <devsk>     fid = FakeClientID(0);[19:57] <devsk>     err = OpenFont(serverClient, fid, FontLoadAll | FontOpenSync,[19:57] <devsk>                    (unsigned) strlen(defaultfontname), defaultfontname);[19:57] <devsk>     if (err != Success)[19:57] <devsk>         return FALSE;[19:57] <devsk>     pf = (FontPtr) LookupIDByType(fid, RT_FONT);[19:57] <devsk>     if (pf == (FontPtr) NULL)[19:57] <devsk>         return FALSE;[19:57] <devsk>     defaultFont = pf;[19:57] <devsk>     return TRUE;[19:57] <devsk> I have a feeling that LookupIDByType() is the one failing[19:58] <devsk> OpenFont() has error paths for malloc failures and none of those looked like plausible[19:58] <devsk> LookupIDByType() was obsoleted quite a while ago in xorg code[19:59] <devsk> nx-X11 of course is hanging onto old code[19:59] <devsk> is it possible that there is some interaction there with newer libXfont which is making that function fail now[20:00] <devsk> unfortunately for me, its not possible to go back to libXfont-1.4. There is a bunch of crap which needs to be downgraded as well. And dependency hell breaks loose if I try that[20:00] <devsk> above snippet is in ./programs/Xserver/dix/dixfonts.c
I did this experiment for localhost connection to avoid differences in client and server packages (which is not the case anyway because for me both client and remote server are Gentoo ~amd64 updated systems).
Anybody got any ideas of why this is happening? Is it really about the newer fontsproto and libXfont not being compatible with nx-libs?
Thanks,devsk
[Message part 2 (text/html, inline)]

Bug reassigned from package 'nx-libsversion: 3.5.0.30distro: gentoo ~amd64, fully updated.x2goclient: 4.0.3.2x2server: 4.0.1.19nx-libs (package nx in gentoo): 3.5.0.30fontsproto: 2.1.3libxfont: 1.5.1xorg-server: 1.17.1all font packages for xorg-x11 are installed and fonts.dir and fonts.alias files are correctly present and readable.detailed troubleshooting:  <a href="https://forums.gentoo.org/viewtopic-p-7755384.html">https://forums.gentoo.org/viewtopic-p-7755384.html</a>' to 'nx-libs'. Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de> to control@bugs.x2go.org. (Mon, 01 Jun 2015 03:15:02 GMT) (full text, mbox, link).


Marked as found in versions 3.5.0.30. Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de> to control@bugs.x2go.org. (Mon, 01 Jun 2015 03:15:02 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 01 Jun 2015 03:30:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 01 Jun 2015 03:30:02 GMT) (full text, mbox, link).


Message #14 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: 884@bugs.x2go.org
Cc: 884-submitter@bugs.x2go.org
Subject: Test with latest dev code of nx-libs
Date: Mon, 01 Jun 2015 03:25:26 +0000
[Message part 1 (text/plain, inline)]
Hi devsk,

please try a build on Gentoo using code from 3.6.x branch of
https://github.com/ArcticaProject/nx-libs

That version of nx-libs has dropped the formerly internally shipped  
lib(NX_)Xfont code base completely. It still uses LookupIDByType in  
dixfonts.c, but maybe the removal of lib(NX_)Xfont fixes your issue  
already.

If you face other issues with that version, use the Github issue  
tracker of that project or reply to this mail (and add more info to  
bugs.x2go.org/884.

Thanks+Greets,
Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]

Message sent on to devsk <internet_everyone@yahoo.com>:
Bug#884. (Mon, 01 Jun 2015 03:30:03 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 01 Jun 2015 05:50:01 GMT) (full text, mbox, link).


Acknowledgement sent to Michael DePaulo <mikedep333@gmail.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 01 Jun 2015 05:50:02 GMT) (full text, mbox, link).


Message #22 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Michael DePaulo <mikedep333@gmail.com>
To: 884@bugs.x2go.org
Subject: Ubuntu 14.10 not affected
Date: Mon, 1 Jun 2015 01:45:55 -0400
[Message part 1 (text/plain, inline)]
Hi devsk,

As we discussed on IRC, I did a test of KDE4 under Ubuntu 14.10.
Ubuntu 14.10 has libxfont 1.4.99.901-1ubuntu0.1, which is an RC for
libxfont 1.5.

Anyway, KDE4 launched successfully. That error is not present in
session.log. I tested both nxagent 3.5.0.31 and the 3.6.x branch. I
have attached both session.log files from the middle of sessions.

Also, note that Debian 8 Jessie has libxfont 1.5.1-1, so it would be
affected too.

-Mike#2
[session.log nxagent 3.6.x.txt (text/plain, attachment)]
[session.log nxagent 3.5.0.31.txt (text/plain, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Tue, 02 Jun 2015 15:50:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Tue, 02 Jun 2015 15:50:01 GMT) (full text, mbox, link).


Message #27 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: nxagent aborts session with 'Could not open default font 'fixed''
Date: Tue, 2 Jun 2015 15:49:24 +0000 (UTC)
Hi,

As per suggestion I built the code from https://github.com/ArcticaProject/nx-libs. And I still run into the same issue.

Does anybody here know that part of the code (snippet in the report)?

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Tue, 02 Jun 2015 16:15:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Tue, 02 Jun 2015 16:15:02 GMT) (full text, mbox, link).


Message #32 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Tue, 02 Jun 2015 16:13:21 +0000
[Message part 1 (text/plain, inline)]
On  Di 02 Jun 2015 17:49:24 CEST, devsk wrote:

> Hi,
>
> As per suggestion I built the code from  
> https://github.com/ArcticaProject/nx-libs. And I still run into the  
> same issue.
>
> Does anybody here know that part of the code (snippet in the report)?


Please take a look at [1] and make sure either of those paths exists  
on your system.

You need the fixed fonts in the misc/ fontdir.

Is everything in place there?

Mike

[1]  
https://github.com/ArcticaProject/nx-libs/blob/3.6.x/nx-X11/programs/Xserver/hw/nxagent/Font.c#L64
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Tue, 02 Jun 2015 16:25:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Tue, 02 Jun 2015 16:25:01 GMT) (full text, mbox, link).


Message #37 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Tue, 2 Jun 2015 16:21:49 +0000 (UTC)
The folder /usr/X11R6 hasn't existed on Gentoo for years now (since move to Xorg). Does the folder /usr/X11R6/lib/X11/fonts exist on other distros?


Also, the code seems to be making an attempt to look for "ALTERNATE" font paths and many of those paths are there:

$ ls -al /usr/share/fonts/*/fonts.{alias,dir}

-rw-r--r-- 1 root root  3154 Apr 11 08:16 /usr/share/fonts/100dpi/fonts.alias
-rw-r--r-- 1 root root 17828 Jun  2 07:14 /usr/share/fonts/100dpi/fonts.dir
-rw-r--r-- 1 root root  3066 Apr 11 08:16 /usr/share/fonts/75dpi/fonts.alias
-rw-r--r-- 1 root root 17280 Jun  2 07:15 /usr/share/fonts/75dpi/fonts.dir
-rw-r--r-- 1 root root  2000 Jun  2 07:12 /usr/share/fonts/OTF/fonts.dir
-rw-r--r-- 1 root root  1689 Jun  2 07:14 /usr/share/fonts/Speedo/fonts.dir
-rw-r--r-- 1 root root 10298 Jun  2 07:10 /usr/share/fonts/TTF/fonts.dir
-rw-r--r-- 1 root root 13319 Jun  2 07:15 /usr/share/fonts/Type1/fonts.dir
-rw-r--r-- 1 root root 44001 Apr 11 08:07 /usr/share/fonts/corefonts/fonts.dir
-rw-r--r-- 1 root root 21736 Apr 10 17:51 /usr/share/fonts/croscorefonts/fonts.dir
-rw-r--r-- 1 root root  3234 Apr 11 08:16 /usr/share/fonts/cyrillic/fonts.alias
-rw-r--r-- 1 root root  6005 Jun  2 07:15 /usr/share/fonts/cyrillic/fonts.dir
-rw-r--r-- 1 root root 43905 Apr 10 17:51 /usr/share/fonts/dejavu/fonts.dir
-rw-r--r-- 1 root root 26289 Apr 11 08:07 /usr/share/fonts/liberation-fonts/fonts.dir
-rw-r--r-- 1 root root 16664 Apr 11 08:08 /usr/share/fonts/libertine/fonts.dir
-rw-r--r-- 1 root root  6209 Apr 11 08:16 /usr/share/fonts/misc/fonts.alias
-rw-r--r-- 1 root root  6721 Jun  2 07:15 /usr/share/fonts/misc/fonts.dir
-rw-r--r-- 1 root root 31892 Apr 11 08:07 /usr/share/fonts/roboto/fonts.dir
-rw-r--r-- 1 root root  5053 Apr 11 08:08 /usr/share/fonts/ttf-bitstream-vera/fonts.dir
-rw-r--r-- 1 root root 43334 Apr 10 17:51 /usr/share/fonts/urw-fonts/fonts.dir

-devsk



On Tuesday, June 2, 2015 9:13 AM, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> wrote:
On  Di 02 Jun 2015 17:49:24 CEST, devsk wrote:




> Hi,
>
> As per suggestion I built the code from  
> https://github.com/ArcticaProject/nx-libs. And I still run into the  
> same issue.
>
> Does anybody here know that part of the code (snippet in the report)?


Please take a look at [1] and make sure either of those paths exists  
on your system.

You need the fixed fonts in the misc/ fontdir.

Is everything in place there?

Mike

[1]  
https://github.com/ArcticaProject/nx-libs/blob/3.6.x/nx-X11/programs/Xserver/hw/nxagent/Font.c#L64
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb 


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Tue, 02 Jun 2015 21:45:02 GMT) (full text, mbox, link).


Acknowledgement sent to Michael DePaulo <mikedep333@gmail.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Tue, 02 Jun 2015 21:45:03 GMT) (full text, mbox, link).


Message #42 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Michael DePaulo <mikedep333@gmail.com>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org
Cc: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Tue, 2 Jun 2015 17:41:33 -0400
A quick look at some distros where nxagent works.

Out of the 5 dirs listed:

Ubuntu 14.04 contains:
/usr/share/fonts/ (no "misc" under it)
/usr/share/fonts/X11/misc/

RHEL 7.1 contains:
/usr/share/fonts/ (no "misc" under it)
/usr/share/X11/fonts/misc/

On Tue, Jun 2, 2015 at 12:21 PM, devsk <internet_everyone@yahoo.com> wrote:
> The folder /usr/X11R6 hasn't existed on Gentoo for years now (since move to Xorg). Does the folder /usr/X11R6/lib/X11/fonts exist on other distros?
>
>
> Also, the code seems to be making an attempt to look for "ALTERNATE" font paths and many of those paths are there:
>
> $ ls -al /usr/share/fonts/*/fonts.{alias,dir}
>
> -rw-r--r-- 1 root root  3154 Apr 11 08:16 /usr/share/fonts/100dpi/fonts.alias
> -rw-r--r-- 1 root root 17828 Jun  2 07:14 /usr/share/fonts/100dpi/fonts.dir
> -rw-r--r-- 1 root root  3066 Apr 11 08:16 /usr/share/fonts/75dpi/fonts.alias
> -rw-r--r-- 1 root root 17280 Jun  2 07:15 /usr/share/fonts/75dpi/fonts.dir
> -rw-r--r-- 1 root root  2000 Jun  2 07:12 /usr/share/fonts/OTF/fonts.dir
> -rw-r--r-- 1 root root  1689 Jun  2 07:14 /usr/share/fonts/Speedo/fonts.dir
> -rw-r--r-- 1 root root 10298 Jun  2 07:10 /usr/share/fonts/TTF/fonts.dir
> -rw-r--r-- 1 root root 13319 Jun  2 07:15 /usr/share/fonts/Type1/fonts.dir
> -rw-r--r-- 1 root root 44001 Apr 11 08:07 /usr/share/fonts/corefonts/fonts.dir
> -rw-r--r-- 1 root root 21736 Apr 10 17:51 /usr/share/fonts/croscorefonts/fonts.dir
> -rw-r--r-- 1 root root  3234 Apr 11 08:16 /usr/share/fonts/cyrillic/fonts.alias
> -rw-r--r-- 1 root root  6005 Jun  2 07:15 /usr/share/fonts/cyrillic/fonts.dir
> -rw-r--r-- 1 root root 43905 Apr 10 17:51 /usr/share/fonts/dejavu/fonts.dir
> -rw-r--r-- 1 root root 26289 Apr 11 08:07 /usr/share/fonts/liberation-fonts/fonts.dir
> -rw-r--r-- 1 root root 16664 Apr 11 08:08 /usr/share/fonts/libertine/fonts.dir
> -rw-r--r-- 1 root root  6209 Apr 11 08:16 /usr/share/fonts/misc/fonts.alias
> -rw-r--r-- 1 root root  6721 Jun  2 07:15 /usr/share/fonts/misc/fonts.dir
> -rw-r--r-- 1 root root 31892 Apr 11 08:07 /usr/share/fonts/roboto/fonts.dir
> -rw-r--r-- 1 root root  5053 Apr 11 08:08 /usr/share/fonts/ttf-bitstream-vera/fonts.dir
> -rw-r--r-- 1 root root 43334 Apr 10 17:51 /usr/share/fonts/urw-fonts/fonts.dir
>
> -devsk
>
>
>
> On Tuesday, June 2, 2015 9:13 AM, Mike Gabriel <mike.gabriel@das-netzwerkteam.de> wrote:
> On  Di 02 Jun 2015 17:49:24 CEST, devsk wrote:
>
>
>
>
>> Hi,
>>
>> As per suggestion I built the code from
>> https://github.com/ArcticaProject/nx-libs. And I still run into the
>> same issue.
>>
>> Does anybody here know that part of the code (snippet in the report)?
>
>
> Please take a look at [1] and make sure either of those paths exists
> on your system.
>
> You need the fixed fonts in the misc/ fontdir.
>
> Is everything in place there?
>
> Mike
>
> [1]
> https://github.com/ArcticaProject/nx-libs/blob/3.6.x/nx-X11/programs/Xserver/hw/nxagent/Font.c#L64
> --
>
> DAS-NETZWERKTEAM
> mike gabriel, herweg 7, 24357 fleckeby
> fon: +49 (1520) 1976 148
>
> GnuPG Key ID 0x25771B31
> mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de
>
> freeBusy:
> https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
> _______________________________________________
> x2go-dev mailing list
> x2go-dev@lists.x2go.org
> http://lists.x2go.org/listinfo/x2go-dev


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 03 Jun 2015 01:50:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 03 Jun 2015 01:50:02 GMT) (full text, mbox, link).


Message #47 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Michael DePaulo <mikedep333@gmail.com>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Cc: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 3 Jun 2015 01:48:17 +0000 (UTC)
I don't think its a font path problem. The font paths can be specified at the command line with -fp /<path1>/,/<path2/,... and it loads all fonts fine, including the "fixed" ones from /usr/share/fonts/misc/ folder specified on the command line and the ALTERNATE paths specified in the code.

If I change the font with -fn to "9x15" to be the default font, it still fails to open the default font "9x15". I know for a fact that 9x15 font exists in the custom paths I have specified using -fp.


So, its not a font path issue. Its what happens when it wants to set the default font and calls those 2 functions. Most likely, the second function is the one which is failing because the fist function has failure cases only for allocation failures.
 
-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 03 Jun 2015 08:20:02 GMT) (full text, mbox, link).


Acknowledgement sent to Ulrich Sibiller <uli42@gmx.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 03 Jun 2015 08:20:02 GMT) (full text, mbox, link).


Message #52 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Ulrich Sibiller <uli42@gmx.de>
To: Michael DePaulo <mikedep333@gmail.com>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 3 Jun 2015 10:16:35 +0200
On Tue, Jun 2, 2015 at 11:41 PM, Michael DePaulo <mikedep333@gmail.com> wrote:
> A quick look at some distros where nxagent works.
>
> Out of the 5 dirs listed:
>
> Ubuntu 14.04 contains:
> /usr/share/fonts/ (no "misc" under it)
> /usr/share/fonts/X11/misc/
>
> RHEL 7.1 contains:
> /usr/share/fonts/ (no "misc" under it)
> /usr/share/X11/fonts/misc/

You can us the -fp option of nxagent/x2goagent to pass an arbitrary
font path. Furthermore you could set up an heuristic that determines
valid font paths. For our company internal script we use this (ugly)
code:

           fontpath=""
           while read fp ; do
               [ -r ${fp%:unscaled}/fonts.dir ] || continue
               [[ ",$fontpath," == *,$fp,* ]] ||
fontpath=${fontpath:+$fontpath,}${fp}
           done < <(
               for xlog in /var/log/Xorg.0.log /var/log/XFree86.0.log ; do
                   sed -n -e "1,/FontPath set to:/d" -e "s/,$//" -e
"s/^        //p" $xlog 2> /dev/null # TAB!
                   grep "FontPath set to " $xlog 2> /dev/null | cut
-d\" -f2 | tr , "\012"
               done
               for xconf in /etc/X11/xorg.conf /etc/X11/xorg.conf.d/*
/etc/X11/XF86Config ; do
                   grep FontPath $xconf 2> /dev/null | grep \" | cut -d\" -f2
               done
               grep /fonts/ /etc/X11/fs/config 2> /dev/null | sed -e
"s/^[catalogue =   ]*//" -e "s/,$//"
               (
                   ls /etc/X11/fontpath.d/*/fonts.dir
/usr/share/fonts/*/fonts.dir /usr/share/X11/fonts/*/fonts.dir
/usr/share/fonts/X11/*/fonts.dir /usr/X11R6/lib/X11/fonts/*/fonts.dir
/usr/lib/X11/fonts/*/fonts.dir
                   locate /fonts.dir | grep "^/usr"
               ) 2> /dev/null | sed -n "s|/fonts.dir$||p"
               strings ${NXPATH}/*/nxagent* 2> /dev/null | grep
/fonts/ | tr , "\012"
           ) 2> /dev/null

           [ -z "$fontpath" ] && read count fontpath < <( strings
/usr/bin/X* /usr/X11R6/bin/X* 2>&1 | grep "/fonts/.*," | sed
"s,^[^/]*,," | sort | uniq -c | sort -nr | head -1 )
         echo remote_fontpath=\"$fontpath\"


Uli


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 03 Jun 2015 14:00:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 03 Jun 2015 14:00:02 GMT) (full text, mbox, link).


Message #57 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>, "884@bugs.x2go.org" <884@bugs.x2go.org>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 3 Jun 2015 13:57:59 +0000 (UTC)
I thought I mentioned it. I tried both -fp and -fn arguments to influence the behavior of nxagent but it still failed with the message saying "could not open default font '<whatever font used with -fn>'"

The font specified with -fn exists in font path specified with -fp.

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 03 Jun 2015 14:00:03 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 03 Jun 2015 14:00:03 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Thu, 04 Jun 2015 08:20:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Thu, 04 Jun 2015 08:20:03 GMT) (full text, mbox, link).


Message #67 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Thu, 04 Jun 2015 08:18:40 +0000
[Message part 1 (text/plain, inline)]
Hi Devsk,

On  Mi 03 Jun 2015 15:57:59 CEST, devsk wrote:

> I thought I mentioned it. I tried both -fp and -fn arguments to  
> influence the behavior of nxagent but it still failed with the  
> message saying "could not open default font '<whatever font used  
> with -fn>'"
>
> The font specified with -fn exists in font path specified with -fp.

this is so weird... Hmmm... I don't have the time to spin up a Gentoo  
right now. Please try to reach the other Gentoo people on IRC (there  
are several users on IRC from time to time using Gentoo), maybe any of  
them has a clue. I definitely know (i.e., have heard) that X2Go with  
nx-libs is working on Gentoo for others.

Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Thu, 04 Jun 2015 12:50:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mihai Moldovan <ionic@ionic.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Thu, 04 Jun 2015 12:50:02 GMT) (full text, mbox, link).


Message #72 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mihai Moldovan <ionic@ionic.de>
To: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Thu, 04 Jun 2015 14:48:09 +0200
[Message part 1 (text/plain, inline)]
On 04.06.2015 10:18 AM, Mike Gabriel wrote:
> this is so weird... Hmmm... I don't have the time to spin up a Gentoo  
> right now. Please try to reach the other Gentoo people on IRC (there  
> are several users on IRC from time to time using Gentoo), maybe any of  
> them has a clue. I definitely know (i.e., have heard) that X2Go with  
> nx-libs is working on Gentoo for others.

Definitely working for me and others.

I think the fonts message is a red herring and not the real cause of trouble. I
have checked Debian and Fedora systems, too, and they likewise don't have a
"fixed" fonts directory.

Given that I cannot reproduce it, it's likely a problem with his specific
system, so reproducing and debugging is difficult on my end.



Mihai

[signature.asc (application/pgp-signature, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 05 Jun 2015 01:25:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Fri, 05 Jun 2015 01:25:01 GMT) (full text, mbox, link).


Message #77 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Fri, 5 Jun 2015 01:22:17 +0000 (UTC)
> Definitely working for me and others.

One of the strange things about my setup is that its /usr is read-only (like on a livecd). That's the only thing I know is different from a regular gentoo system. Do you think that's something that might cause issues?

Technically, nothing should be writing to /usr.

The setup is basically booting a squashfs image (same image boots on 10 different desktops and laptops I have) just like a Gentoo livecd and has writable folders in / (tmpfs) for everything except /usr, /bin, /sbin, /lib64, /lib32. Their /home is on a local disk on ZFS (mostly) or ext4. This is done mostly to avoid maintaining 10 different systems. I create a new image once in a while, these systems pull it and it gets picked up on their next reboot. Many of these systems haven't booted in quite some time. As long as I don't need an update (a new package I can't live without or fixes for known exploits), they keep going.

Does this ring any bells with respect to this issue?

I think I agree with the conclusion that 'fixed' font thingy is a red-herring.

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 05 Jun 2015 01:25:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Fri, 05 Jun 2015 01:25:02 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 05 Jun 2015 01:35:01 GMT) (full text, mbox, link).


Acknowledgement sent to Mihai Moldovan <ionic@ionic.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Fri, 05 Jun 2015 01:35:01 GMT) (full text, mbox, link).


Message #87 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mihai Moldovan <ionic@ionic.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Fri, 05 Jun 2015 03:33:07 +0200
[Message part 1 (text/plain, inline)]
On 05.06.2015 03:22 AM, devsk wrote:
>> Definitely working for me and others.
> 
> One of the strange things about my setup is that its /usr is read-only (like on a livecd). That's the only thing I know is different from a regular gentoo system. Do you think that's something that might cause issues?

That's differing from my setup for sure, but I wouldn't know nx-libs writing
anything to /usr, so I don't think that's the problem.

Have you actually looked at *all* output by nxagent?

Please check /tmp/.x2go-user/C-[...]/session.log



Mihai

[signature.asc (application/pgp-signature, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 05 Jun 2015 02:25:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Fri, 05 Jun 2015 02:25:01 GMT) (full text, mbox, link).


Message #92 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Fri, 5 Jun 2015 02:24:54 +0000 (UTC)
Yes, I have looked at all of session.log. I am cutting and pasting it here, in case I missed something:

$ cat session.log 

NXAGENT - Version 3.5.99.0

Copyright (C) 2001, 2011 NoMachine.
See http://www.nomachine.com/ for more information.

Info: Agent running with pid '14374'.
Session: Starting session at 'Thu Jun  4 19:23:08 2015'.
Info: Proxy running in server mode with pid '14374'.
Info: Waiting for connection from 'localhost' on port '30022'.
Info: Accepted connection from '127.0.0.1'.
Info: Connection with remote proxy completed.
Info: Using LAN link parameters 1536/24/1/0.
Info: Using agent parameters 5000/0/50/0/0.
Info: Using pack method '16m-jpeg-9' with session 'unix-kde-depth_24'.
Info: Not using NX delta compression.
Info: Not using ZLIB data compression.
Info: Not using ZLIB stream compression.
Info: Not using a persistent cache.
Info: Listening to X11 connections on display ':57'.
Info: Established X client connection.
Info: Using shared memory parameters 1/1/0/0K.
Info: Using alpha channel in render extension.
Info: Not using local device configuration changes.
keyboard file created
Error: Aborting session with 'Could not open default font 'fixed''.
Session: Aborting session at 'Thu Jun  4 19:23:11 2015'.
Session: Session aborted at 'Thu Jun  4 19:23:11 2015'.
Warning: Signals were not blocked in process with pid '14374'.
Info: Waiting the cleanup timeout to complete.

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Sat, 06 Jun 2015 14:15:01 GMT) (full text, mbox, link).


Acknowledgement sent to Mihai Moldovan <ionic@ionic.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Sat, 06 Jun 2015 14:15:01 GMT) (full text, mbox, link).


Message #97 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mihai Moldovan <ionic@ionic.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Sat, 06 Jun 2015 16:12:23 +0200
[Message part 1 (text/plain, inline)]
On 05.06.2015 04:24 AM, devsk wrote:
> Yes, I have looked at all of session.log. I am cutting and pasting it here, in case I missed something:
> [...]
> Error: Aborting session with 'Could not open default font 'fixed''.

I find something odd about this error message.

It doesn't seem to be coming from nx-libs.

Note how the code in nx-libs spells "could" in lowercase, but the message spells
it with a capital letter.

I'm using nx-libs without any problems on a system having =x11-libs/libXfont-1.5.1.

Please try to make sure that the following packages are all installed (and
correctly installed! If in doubt, reinstall):

media-fonts/font-alias
media-fonts/font-arabic-misc
media-fonts/font-cursor-misc
media-fonts/font-daewoo-misc
media-fonts/font-dec-misc
media-fonts/font-isas-misc
media-fonts/font-jis-misc
media-fonts/font-micro-misc
media-fonts/font-misc-misc
media-fonts/font-mutt-misc
media-fonts/font-schumacher-misc
media-fonts/font-sony-misc
media-fonts/font-sun-misc


Next thing to consider is your DPI. Do you use any "weird" DPI value? I don't
think that's it either, but try setting it to 75 or 95 for testing purposes.


How proficient are you with debugging? Or is there any way to allow access to
one affected machine? I'd like to get a gdb backtrace of the moment the
FatalError() function triggers, to see which library or part *really* is
responsible for that message. This will also involve building nx-libs with debug
symbols, of course.



Mihai

[signature.asc (application/pgp-signature, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Sat, 06 Jun 2015 14:20:01 GMT) (full text, mbox, link).


Acknowledgement sent to Mihai Moldovan <ionic@ionic.de>, 884@bugs.x2go.org:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Sat, 06 Jun 2015 14:20:02 GMT) (full text, mbox, link).


Message #102 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mihai Moldovan <ionic@ionic.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Sat, 06 Jun 2015 16:18:39 +0200
[Message part 1 (text/plain, inline)]
One more thing Mike#2 just mentioned on IRC and I have confirmed not to be the
case in Gentoo: fontconfig is not a dependency of x2goserver, though it should be.

Actually, it probably should be a dependency of net-misc/nx in general and not
x2goserver, but let's ignore that "issue" for now.

Is media-libs/fontconfig installed on your system? If not, do that, rinse,
repeat... and try the other stuff in my former eMail.



Mihai


[signature.asc (application/pgp-signature, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 03:55:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 03:55:02 GMT) (full text, mbox, link).


Message #107 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Mon, 8 Jun 2015 03:52:01 +0000 (UTC)
> Note how the code in nx-libs spells "could" in lowercase, but
> the message spells it with a capital letter.

I was thrown off by that for a while. It took me a while to search that message because I was searching for exact message and it wouldn't find it. When I did find the message and then looked at the wrapper function that was being called with that message, I knew what was going on. The wrapper pretty prints the enclosed message by capitalizing the first letter....one of those genius ideas. Wasting developer time since the dawn of the times.

Anyway, the fontconfig is definitely installed (KDE wouldn't function without it).


The DPI was being enforced by the client to be 96 and I unchecked that and tried as well. But the issue appears when I just run 'nxagent :50" without any args. I expect it should throw open an empty window with a logo, but instead it comes out with that dreadful message.

I am handy with debugging and code. But my time is very limited because our company is running against some hard deadlines in 1.5 weeks... Working during weekends sucks...:(

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 03:55:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 03:55:02 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 04:00:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 04:00:02 GMT) (full text, mbox, link).


Message #117 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Mon, 8 Jun 2015 03:55:33 +0000 (UTC)
All font packages are installed. I just emerged xorg-x11 to be sure.

# for i in $(cat /tmp/tmper);do q size $i;done
media-fonts/font-alias-1.0.3-r1: 4 files, 7 non-files, 15.295 KiB
media-fonts/font-arabic-misc-1.0.3: 1 files, 4 non-files, 14.344 KiB
media-fonts/font-cursor-misc-1.0.3: 1 files, 4 non-files, 5.102 KiB
media-fonts/font-daewoo-misc-1.0.3: 3 files, 4 non-files, 811.122 KiB
media-fonts/font-dec-misc-1.0.3: 2 files, 4 non-files, 3.218 KiB
media-fonts/font-isas-misc-1.0.3: 3 files, 4 non-files, 922.971 KiB
media-fonts/font-jis-misc-1.0.3: 2 files, 4 non-files, 604.336 KiB
media-fonts/font-micro-misc-1.0.3: 1 files, 4 non-files, 1.772 KiB
media-fonts/font-misc-misc-1.1.2: 27 files, 4 non-files, 2769.30 KiB
media-fonts/font-mutt-misc-1.0.3: 8 files, 4 non-files, 234.657 KiB
media-fonts/font-schumacher-misc-1.1.2: 31 files, 4 non-files, 97.912 KiB
media-fonts/font-sony-misc-1.0.3: 4 files, 4 non-files, 19.706 KiB
media-fonts/font-sun-misc-1.0.3: 5 files, 4 non-files, 25.35 KiB


-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 04:30:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 04:30:01 GMT) (full text, mbox, link).


Message #122 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Mon, 8 Jun 2015 04:28:09 +0000 (UTC)
I did a quick gdb session. You can see it below. The culprit is exactly the function that I pointed out earlier in 1st post for this bug.

(gdb) b SetDefaultFont
Breakpoint 1 at 0x4210b0: file NXdixfonts.c, line 221.
(gdb) r :50
Starting program: /tmp/nxagent :50
warning: File "/mnt/livecd/lib64/libthread_db-1.0.so" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load".
warning: Unable to find libthread_db matching inferior's thread library, thread debugging will not be available.

NXAGENT - Version 3.5.99.0

Copyright (C) 2001, 2011 NoMachine.
See http://www.nomachine.com/ for more information.

Info: Agent running with pid '10502'.
Session: Starting session at 'Sun Jun  7 21:19:22 2015'.
Info: Using alpha channel in render extension.
Info: Not using local device configuration changes.
error opening security policy file /usr/local/lib/nx/X11/xserver/SecurityPolicy
SessionPath not defined

Breakpoint 1, SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:221
221     NXdixfonts.c: No such file or directory.
(gdb) bt
#0  SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:221
#1  0x000000000040dd05 in main ()
(gdb) s
226     in NXdixfonts.c
(gdb) 
221     in NXdixfonts.c
(gdb) 
226     in NXdixfonts.c
(gdb) 
FakeClientID (client=client@entry=0) at NXresource.c:441
441     NXresource.c: No such file or directory.
(gdb) 
444     in NXresource.c
(gdb) 
441     in NXresource.c
(gdb) 
444     in NXresource.c
(gdb) 
441     in NXresource.c
(gdb) 
444     in NXresource.c
(gdb) fini
Run till exit from #0  FakeClientID (client=client@entry=0) at NXresource.c:444
SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:228
228     NXdixfonts.c: No such file or directory.
Value returned is $1 = 127
(gdb) p fid
$2 = <optimized out>
(gdb) p err
$3 = <optimized out>
(gdb) s
226     in NXdixfonts.c
(gdb) 
228     in NXdixfonts.c
(gdb) 
227     in NXdixfonts.c
(gdb) 
OpenFont (pfontname=<optimized out>, lenfname=<optimized out>, flags=31, fid=<optimized out>, client=<optimized out>) at NXdixfonts.c:526
526     in NXdixfonts.c
(gdb) fini
Run till exit from #0  OpenFont (pfontname=<optimized out>, lenfname=<optimized out>, flags=31, fid=<optimized out>, client=<optimized out>) at NXdixfonts.c:526
227     in NXdixfonts.c
(gdb) p err
$4 = <optimized out>
(gdb) s
OpenFont (pfontname=0x703f11 "fixed", lenfname=5, flags=31, fid=127, client=0xa53ab0) at NXdixfonts.c:526
526     in NXdixfonts.c
(gdb) 
OpenFont (client=0xa53ab0, fid=fid@entry=127, flags=flags@entry=31, lenfname=5, pfontname=pfontname@entry=0x703f11 "fixed") at NXdixfonts.c:512
512     in NXdixfonts.c
(gdb) 
528     in NXdixfonts.c
(gdb) 
512     in NXdixfonts.c
(gdb) 
528     in NXdixfonts.c
(gdb) fini
Run till exit from #0  OpenFont (client=0xa53ab0, fid=fid@entry=127, flags=flags@entry=31, lenfname=5, pfontname=pfontname@entry=0x703f11 "fixed") at NXdixfonts.c:528
SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:229
229     in NXdixfonts.c
Value returned is $5 = 0
(gdb) p Success
No symbol "Success" in current context.
(gdb) s
231     in NXdixfonts.c
(gdb) 
LookupIDByType (id=127, rtype=4) at NXresource.c:1192
1192    NXresource.c: No such file or directory.
(gdb) 
1193    in NXresource.c
(gdb) 
SecurityLookupIDByType (client=0x0, id=127, rtype=4, mode=0) at NXresource.c:1140
1140    in NXresource.c
(gdb) 
1131    in NXresource.c
(gdb) 
1140    in NXresource.c
(gdb) 
1131    in NXresource.c
(gdb) 
1140    in NXresource.c
(gdb) fini
Run till exit from #0  SecurityLookupIDByType (client=0x0, id=127, rtype=4, mode=0) at NXresource.c:1140
SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:232
232     NXdixfonts.c: No such file or directory.
Value returned is $6 = (void *) 0x0
(gdb) s
236     in NXdixfonts.c
(gdb) 
230     in NXdixfonts.c
(gdb) p defaultFont
$7 = (FontPtr) 0x0
(gdb) p pf
$8 = <optimized out>
(gdb) s
236     in NXdixfonts.c


LookupIDByType() returns a null ptr.


-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 04:55:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 04:55:01 GMT) (full text, mbox, link).


Message #127 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Mon, 8 Jun 2015 04:50:48 +0000 (UTC)
So, here is why SecurityLookupIDByType() fails. Basically, looks like the Hash() in NXresource.c is returning an index for "id" which is referencing 0x0.

Anybody got any clues? What does XCSECURITY have to do with default font? What kind of madness is this?

Breakpoint 1, SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:221
221     NXdixfonts.c: No such file or directory.
(gdb) b Hash
Breakpoint 3 at 0x43b1a0: file NXresource.c, line 321.
(gdb) c
Continuing.

Breakpoint 3, Hash (client=client@entry=0, id=id@entry=127) at NXresource.c:321
321     NXresource.c: No such file or directory.
(gdb) bt
#0  Hash (client=client@entry=0, id=id@entry=127) at NXresource.c:321
#1  0x000000000043c3e7 in SecurityLookupIDByType (client=0x0, id=127, rtype=4, mode=0) at NXresource.c:1143
#2  0x000000000043c62e in LookupIDByType (id=<optimized out>, rtype=<optimized out>) at NXresource.c:1193
#3  0x0000000000421109 in SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:231
#4  0x000000000040dd05 in main ()
(gdb) s
320     in NXresource.c
(gdb) 
336     in NXresource.c
(gdb) p res
No symbol "res" in current context.
(gdb) p id
$22 = 127
(gdb) p ((int)(0x3F&(id^(id>>6)^(id>>12))))
$24 = 62
(gdb) fini
Run till exit from #0  Hash (client=client@entry=0, id=id@entry=127) at NXresource.c:336
0x000000000043c3e7 in SecurityLookupIDByType (client=0x0, id=127, rtype=4, mode=0) at NXresource.c:1143
1143    in NXresource.c
Value returned is $25 = 62
(gdb) bt
#0  0x000000000043c3e7 in SecurityLookupIDByType (client=0x0, id=127, rtype=4, mode=0) at NXresource.c:1143
#1  0x000000000043c62e in LookupIDByType (id=<optimized out>, rtype=<optimized out>) at NXresource.c:1193
#2  0x0000000000421109 in SetDefaultFont (defaultfontname=0x703f11 "fixed") at NXdixfonts.c:231
#3  0x000000000040dd05 in main ()
(gdb) p clientTable[cid].resources[62]
$26 = (ResourcePtr) 0x0


-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Mon, 08 Jun 2015 05:05:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Mon, 08 Jun 2015 05:05:02 GMT) (full text, mbox, link).


Message #132 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Mon, 8 Jun 2015 05:02:06 +0000 (UTC)
Is there a quick way to build nx-libs without XCSECURITY? I am curious about the #else case (i.e. the code that's not using the XCSECURITY).

Does anybody have any ideas what about my setup is upsetting this?

-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 02 Sep 2015 01:35:02 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 02 Sep 2015 01:35:02 GMT) (full text, mbox, link).


Message #137 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 2 Sep 2015 01:32:56 +0000 (UTC)
I finally decoded this issue. I can't believe it. The reason why its not able to load the default font and default cursor was that language specific fonts were missing from the /usr/share/fonts/misc folder. Those are missing because I have '-nls' in my global USE flags.

I had to spin up an Ubuntu 14.04 VM to figure this out...:) This is a packaging bug. nx package on Gentoo should force the 'nls' USE flag on media-fonts/font-misc-misc because without that nxagent is completely broken. I wonder how Xorg and Xvnc are fine without those! May be there is legacy code in nxagent which needs removal...:)

Thanks for all the help everyone! It was a pleasure dealing with you all. I hope the x2go community flourishes more and more everyday!
-devsk


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 02 Sep 2015 09:05:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 02 Sep 2015 09:05:02 GMT) (full text, mbox, link).


Message #142 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: devsk <internet_everyone@yahoo.com>, 884@bugs.x2go.org, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: Bug#884: Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 02 Sep 2015 09:00:19 +0000
[Message part 1 (text/plain, inline)]
HI Devsk,

On  Mi 02 Sep 2015 03:32:56 CEST, devsk wrote:

> I finally decoded this issue. I can't believe it. The reason why its  
> not able to load the default font and default cursor was that  
> language specific fonts were missing from the /usr/share/fonts/misc  
> folder. Those are missing because I have '-nls' in my global USE  
> flags.
>
> I had to spin up an Ubuntu 14.04 VM to figure this out...:) This is  
> a packaging bug. nx package on Gentoo should force the 'nls' USE  
> flag on media-fonts/font-misc-misc because without that nxagent is  
> completely broken. I wonder how Xorg and Xvnc are fine without  
> those! May be there is legacy code in nxagent which needs removal...:)
>
> Thanks for all the help everyone! It was a pleasure dealing with you  
> all. I hope the x2go community flourishes more and more everyday!
> -devsk

Please can you be more precise? Where do you set the -nls flag and how  
can we get this fixed upstream in nx-libs?

Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 02 Sep 2015 18:30:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mihai Moldovan <ionic@ionic.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 02 Sep 2015 18:30:02 GMT) (full text, mbox, link).


Message #147 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mihai Moldovan <ionic@ionic.de>
To: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, 884@bugs.x2go.org, devsk <internet_everyone@yahoo.com>, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 2 Sep 2015 20:25:37 +0200
[Message part 1 (text/plain, inline)]
On 02.09.2015 11:00 AM, Mike Gabriel wrote:
> On  Mi 02 Sep 2015 03:32:56 CEST, devsk wrote:
> 
>> I finally decoded this issue. I can't believe it. The reason why its  
>> not able to load the default font and default cursor was that  
>> language specific fonts were missing from the /usr/share/fonts/misc  
>> folder. Those are missing because I have '-nls' in my global USE  
>> flags.
>>
>> I had to spin up an Ubuntu 14.04 VM to figure this out...:) This is  
>> a packaging bug. nx package on Gentoo should force the 'nls' USE  
>> flag on media-fonts/font-misc-misc because without that nxagent is  
>> completely broken. I wonder how Xorg and Xvnc are fine without  
>> those! May be there is legacy code in nxagent which needs removal...:)
>>
>> Thanks for all the help everyone! It was a pleasure dealing with you  
>> all. I hope the x2go community flourishes more and more everyday!
>> -devsk
> 
> Please can you be more precise? Where do you set the -nls flag and how  
> can we get this fixed upstream in nx-libs?

He's talking about the Gentoo-specific USE flag feature, which lets you disable
or enable features.

No, we cannot do anything about this.

However, there is another "bug report" pending for OpenSuSE, reproducing this
issue. (-> "x2go on openSUSE")

This might be a related packaging issue, so it would be very interesting to know
what missing file exactly caused this issue.



Mihai

[signature.asc (application/pgp-signature, attachment)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 04 Sep 2015 02:10:01 GMT) (full text, mbox, link).


Acknowledgement sent to devsk <internet_everyone@yahoo.com>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Fri, 04 Sep 2015 02:10:01 GMT) (full text, mbox, link).


Message #152 received at 884@bugs.x2go.org (full text, mbox, reply):

From: devsk <internet_everyone@yahoo.com>
To: Mihai Moldovan <ionic@ionic.de>, Mike Gabriel <mike.gabriel@das-netzwerkteam.de>, "884@bugs.x2go.org" <884@bugs.x2go.org>, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Fri, 4 Sep 2015 02:06:55 +0000 (UTC)
Yes, I am talking about Gentoo specific packaging issue. I have filed 

https://bugs.gentoo.org/show_bug.cgi?id=559370

to track it down. As I mentioned, the specific files being talked about are the font files in /usr/share/fonts/misc (/usr/share/fonts/X11/misc on Ubuntu) which are character encodings specific e.g. 9x15-ISO8859-*.pcf.gz. nxagent can not load a fixed size font '9x15' without the presence of these files. It looks like these are abandoned by modern X code because both Xorg and Xvnc work fine without these files.

-devsk



On Wednesday, September 2, 2015 11:25 AM, Mihai Moldovan <ionic@ionic.de> wrote:
On 02.09.2015 11:00 AM, Mike Gabriel wrote:

> On  Mi 02 Sep 2015 03:32:56 CEST, devsk wrote:
> 
>> I finally decoded this issue. I can't believe it. The reason why its  
>> not able to load the default font and default cursor was that  
>> language specific fonts were missing from the /usr/share/fonts/misc  
>> folder. Those are missing because I have '-nls' in my global USE  
>> flags.
>>
>> I had to spin up an Ubuntu 14.04 VM to figure this out...:) This is  
>> a packaging bug. nx package on Gentoo should force the 'nls' USE  
>> flag on media-fonts/font-misc-misc because without that nxagent is  
>> completely broken. I wonder how Xorg and Xvnc are fine without  
>> those! May be there is legacy code in nxagent which needs removal...:)
>>
>> Thanks for all the help everyone! It was a pleasure dealing with you  
>> all. I hope the x2go community flourishes more and more everyday!
>> -devsk
> 
> Please can you be more precise? Where do you set the -nls flag and how  
> can we get this fixed upstream in nx-libs?

He's talking about the Gentoo-specific USE flag feature, which lets you disable
or enable features.

No, we cannot do anything about this.

However, there is another "bug report" pending for OpenSuSE, reproducing this
issue. (-> "x2go on openSUSE")

This might be a related packaging issue, so it would be very interesting to know
what missing file exactly caused this issue.



Mihai


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Sat, 05 Sep 2015 12:10:01 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Sat, 05 Sep 2015 12:10:01 GMT) (full text, mbox, link).


Message #157 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: devsk <internet_everyone@yahoo.com>, Mihai Moldovan <ionic@ionic.de>, 884@bugs.x2go.org, Ulrich Sibiller <uli42@gmx.de>, Michael DePaulo <mikedep333@gmail.com>
Subject: Re: [X2Go-Dev] nxagent aborts session with 'Could not open default font 'fixed''
Date: Sat, 05 Sep 2015 12:05:39 +0000
[Message part 1 (text/plain, inline)]
Hi Devsk,

On  Fr 04 Sep 2015 04:06:55 CEST, devsk wrote:

> Yes, I am talking about Gentoo specific packaging issue. I have filed
>
> https://bugs.gentoo.org/show_bug.cgi?id=559370
>
> to track it down. As I mentioned, the specific files being talked  
> about are the font files in /usr/share/fonts/misc  
> (/usr/share/fonts/X11/misc on Ubuntu) which are character encodings  
> specific e.g. 9x15-ISO8859-*.pcf.gz. nxagent can not load a fixed  
> size font '9x15' without the presence of these files. It looks like  
> these are abandoned by modern X code because both Xorg and Xvnc work  
> fine without these files.
>
> -devsk

Thanks for explaining the above. However, I think that we should get  
this issue also solved upstream as most systems work on UTF-8 basis  
and the more local encodings are rather historical than  
current-state-of-the-art.

Let's leave this bug open and address it for 3.6.x of nx-libs instead  
of dealing with it as a Gentoo specific bug.

Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb
[Message part 2 (application/pgp-signature, inline)]

Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Wed, 24 Feb 2016 14:05:02 GMT) (full text, mbox, link).


Acknowledgement sent to Mike Gabriel <mike.gabriel@das-netzwerkteam.de>:
Extra info received and forwarded to list. Copy sent to X2Go Developers <x2go-dev@lists.x2go.org>. (Wed, 24 Feb 2016 14:05:02 GMT) (full text, mbox, link).


Message #162 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Wed, 24 Feb 2016 14:03:18 +0000
[Message part 1 (text/plain, inline)]
Control: forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/84

On  Sa 05 Sep 2015 14:05:39 CEST, Mike Gabriel wrote:

> Hi Devsk,
>
> On  Fr 04 Sep 2015 04:06:55 CEST, devsk wrote:
>
>> Yes, I am talking about Gentoo specific packaging issue. I have filed
>>
>> https://bugs.gentoo.org/show_bug.cgi?id=559370
>>
>> to track it down. As I mentioned, the specific files being talked  
>> about are the font files in /usr/share/fonts/misc  
>> (/usr/share/fonts/X11/misc on Ubuntu) which are character encodings  
>> specific e.g. 9x15-ISO8859-*.pcf.gz. nxagent can not load a fixed  
>> size font '9x15' without the presence of these files. It looks like  
>> these are abandoned by modern X code because both Xorg and Xvnc  
>> work fine without these files.
>>
>> -devsk
>
> Thanks for explaining the above. However, I think that we should get  
> this issue also solved upstream as most systems work on UTF-8 basis  
> and the more local encodings are rather historical than  
> current-state-of-the-art.
>
> Let's leave this bug open and address it for 3.6.x of nx-libs  
> instead of dealing with it as a Gentoo specific bug.
>
> Mike

This issue has been forwarded to the new upstream location of nx-libs:
https://github.com/ArcticaProject/nx-libs/issues/84

Greets,
Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
fon: +49 (1520) 1976 148

GnuPG Key ID 0x25771B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/mailxchange/kronolith/fb.php?u=m.gabriel%40das-netzwerkteam.de
[Message part 2 (application/pgp-signature, inline)]

Set Bug forwarded-to-address to 'https://github.com/ArcticaProject/nx-libs/issues/84'. Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de> to 884-submit@bugs.x2go.org. (Wed, 24 Feb 2016 14:05:02 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Sun, 28 Aug 2016 09:40:02 GMT) (full text, mbox, link).


🔗 View this message in rfc822 format

From: owner@bugs.x2go.org (X2Go Bug Tracking System)
To: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
Subject: Bug#884: Info received ([X2Go-Dev] Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed'')
Date: Sun, 05 Feb 2017 21:30:03 +0000
Thank you for the additional information you have supplied regarding
this Bug report.

This is an automatically generated reply to let you know your message
has been received.

Your message is being forwarded to the package maintainers and other
interested parties for their attention; they will reply in due course.

Your message has been sent to the package maintainer(s):
 X2Go Developers <x2go-dev@lists.x2go.org>

If you wish to submit further information on this problem, please
send it to 884@bugs.x2go.org.

Please do not send mail to owner@bugs.x2go.org unless you wish
to report a problem with the Bug-tracking system.

-- 
884: http://bugs.x2go.org/cgi-bin/bugreport.cgi?bug=884
X2Go Bug Tracking System
Contact owner@bugs.x2go.org with problems

Message #168 received at 884@bugs.x2go.org (full text, mbox, reply):

From: Mike Gabriel <mike.gabriel@das-netzwerkteam.de>
To: 884@bugs.x2go.org
Subject: Re: [X2Go-Dev] Bug#884: Bug#884: nxagent aborts session with 'Could not open default font 'fixed''
Date: Sun, 05 Feb 2017 21:26:33 +0000
[Message part 1 (text/plain, inline)]
Control: tag -1 fixed-upstream
Control: fixed -1 3.5.99.4

On  Mi 24 Feb 2016 15:03:18 CET, Mike Gabriel wrote:

> Control: forwarded -1 https://github.com/ArcticaProject/nx-libs/issues/84
>
> On  Sa 05 Sep 2015 14:05:39 CEST, Mike Gabriel wrote:
>
>> Hi Devsk,
>>
>> On  Fr 04 Sep 2015 04:06:55 CEST, devsk wrote:
>>
>>> Yes, I am talking about Gentoo specific packaging issue. I have filed
>>>
>>> https://bugs.gentoo.org/show_bug.cgi?id=559370
>>>
>>> to track it down. As I mentioned, the specific files being talked  
>>> about are the font files in /usr/share/fonts/misc  
>>> (/usr/share/fonts/X11/misc on Ubuntu) which are character  
>>> encodings specific e.g. 9x15-ISO8859-*.pcf.gz. nxagent can not  
>>> load a fixed size font '9x15' without the presence of these files.  
>>> It looks like these are abandoned by modern X code because both  
>>> Xorg and Xvnc work fine without these files.
>>>
>>> -devsk
>>
>> Thanks for explaining the above. However, I think that we should  
>> get this issue also solved upstream as most systems work on UTF-8  
>> basis and the more local encodings are rather historical than  
>> current-state-of-the-art.
>>
>> Let's leave this bug open and address it for 3.6.x of nx-libs  
>> instead of dealing with it as a Gentoo specific bug.
>>
>> Mike
>
> This issue has been forwarded to the new upstream location of nx-libs:
> https://github.com/ArcticaProject/nx-libs/issues/84
>
> Greets,
> Mike

This issue will be fixed in nx-libs 3.5.99.4. The fix is to support  
libXfont's built-in fonts as final fallback.

Mike
-- 

DAS-NETZWERKTEAM
mike gabriel, herweg 7, 24357 fleckeby
mobile: +49 (1520) 1976 148
landline: +49 (4354) 8390 139

GnuPG Fingerprint: 9BFB AEE8 6C0A A5FF BF22  0782 9AF4 6B30 2577 1B31
mail: mike.gabriel@das-netzwerkteam.de, http://das-netzwerkteam.de

[Message part 2 (application/pgp-signature, inline)]

Added tag(s) fixed-upstream. Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de> to 884-submit@bugs.x2go.org. (Sun, 05 Feb 2017 21:30:03 GMT) (full text, mbox, link).


Marked as fixed in versions 3.5.99.4. Request was from Mike Gabriel <mike.gabriel@das-netzwerkteam.de> to 884-submit@bugs.x2go.org. (Sun, 05 Feb 2017 21:30:03 GMT) (full text, mbox, link).


Information forwarded to x2go-dev@lists.x2go.org, X2Go Developers <x2go-dev@lists.x2go.org>:
Bug#884; Package nx-libs. (Fri, 28 Apr 2017 09:50:02 GMT) (full text, mbox, link).


Send a report that this bug log contains spam.


X2Go Developers <owner@bugs.x2go.org>. Last modified: Thu Apr 25 05:54:04 2024; Machine Name: ymir.das-netzwerkteam.de

X2Go Bug tracking system

Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.

Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.