On Thu, Nov 26, 2009 at 1:50 AM, Meik Hellmund
<meik.hellm...@math.uni-leipzig.de> wrote:
> On Wed, 25 Nov 2009 16:11:36 +0100
> Csaba Erdei <er...@inue.uni-stuttgart.de> wrote:
>
>> Hallo,
>>
>> We have the SRSS4.2_EA2 on openSUSE 10.3 successfully installed.
>> The Sunray client connects with the server, but indicates 26D.
>> This means that the Xserver or gdm will not start.
>>
>>
>> Can someone tell uns how you can debugg the dgm or why is this problem?
>>
>> Thanks a lot.
>>
>> the Log files  /var/log/gdm/:0.log and /var/log/gdm/:11.log show error :
>> ------------------------------------------------------------------------------------------------------------------
>>
>> inuray6:/etc/opt/SUNWut # tail /var/log/gdm/:0.log
>>        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
>> (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 25 12:51:48 2009
>> (==) Using config file: "/etc/X11/xorg.conf"
> ....
>> Could not init font path element /usr/share/X11/fonts/Speedo, removing
>> from list!
>> Could not init font path element /usr/share/X11/fonts/TrueType, removing
>> from list!
>>
>> Fatal server error:
>> could not open default font 'fixed'
>
>
> Add the correct font paths to /etc/X11/xorg.conf
> (/usr/share/fonts/... instead of /usr/share/X11/fonts/... ?)
>
>
> --
> Meik Hellmund
> Mathematisches Institut, Uni Leipzig
> e-mail: meik.hellm...@math.uni-leipzig.de
> http://www.math.uni-leipzig.de/~hellmund
>
> _______________________________________________
> SunRay-Users mailing list
> SunRay-Users@filibeto.org
> http://www.filibeto.org/mailman/listinfo/sunray-users
>

I have the same problem with 4.2, the config worked OK with 4.1, and
the fonts in /etc/X11/xorg.conf are the correct path.

I think the problem is due to the 4.1 patch to SUNWut/lib/utxsun fails
completely, as the code has changed.

The code in 4.2 is:

        if [ -f /etc/opt/SUNWut/X11/fontpath ] ; then
                # The following awk script accumulates the fontpaths to be used
                # with the -fp option to Xnewt.  Comment and blank lines are
                # ignored and imbedded comments are not allowed.
                FONTPATH=$($AWK '\
                        BEGIN   { sep=""; fp=""; } \
                        /^#/ || /^[     ]*$/    { next } \
                                { fp = fp sep $1; \
                                  sep="," } \
                        END     { print fp } \
                                ' /etc/opt/SUNWut/X11/fontpath )
        fi


So the patch below fails. I haven't figured out how to fix it yet.

+++ SUNWut/lib/utxsun   2008-12-09 10:53:06.000000000 +0100
@@ -31,12 +31,17 @@
 # fontpath is for a particular system. We'll grep through the
 # XF86Config file. For FCS we'll do this at install time and
 # keep the path in a file.
-if [[ -f /etc/X11/XF86Config ]] ; then
+if [[ -f /etc/X11/xorg.conf ]]; then
+       XCFG_FILE=/etc/X11/xorg.conf
+else
+       XCFG_FILE=/etc/X11/XF86Config
+fi
+if [[ -f $XCFG_FILE ]] ; then
        # match lines with FontPath that are not commented out,
        # accumulate the path, but remove double quotes before appending:
        FONTPATH=$($AWK '$1 == "FontPath" { fp = fp ","
substr($2,2,length($2)-2) } \
                         END { print substr(fp,2) } \
-                        ' /etc/X11/XF86Config)
+                        ' $XCFG_FILE)
        if [ x$FONTPATH != x ] ; then
                XMOREOPTS="-fp $FONTPATH"
        fi


r...@sunraytest:/var/log/gdm# grep fonts /etc/X11/xorg.conf
        FontPath        "/usr/share/fonts/X11/misc"
#       FontPath        "/usr/share/fonts/X11/cyrillic"
        FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
        FontPath        "/usr/share/fonts/X11/Type1"
        FontPath        "/usr/share/fonts/X11/100dpi"
        FontPath        "/usr/share/fonts/X11/75dpi"
        # path to defoma fonts

r...@sunraytest:/var/log/gdm# cat \:0.log.1

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Ubuntu (xorg-server
2:1.4.1~git20080131-1ubuntu9.2)
Current Operating System: Linux sunraytest 2.6.24-25-server #1 SMP Tue
Oct 20 08:12:40 UTC 2009 i686
Build Date: 13 June 2008  01:08:21AM

        Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 25 11:56:15 2009
(==) Using config file: "/etc/X11/xorg.conf"
(II) Module "ramdac" already built-in
expected keysym, got XF86KbdLightOnOff: line 70 of pc
expected keysym, got XF86KbdBrightnessDown: line 71 of pc
expected keysym, got XF86KbdBrightnessUp: line 72 of pc
expected keysym, got XF86KbdLightOnOff: line 70 of pc
expected keysym, got XF86KbdBrightnessDown: line 71 of pc
expected keysym, got XF86KbdBrightnessUp: line 72 of pc
r...@sunraytest:/var/log/gdm# cat \:11.log.3
gdm[9276]: DEBUG: gdm_server_spawn:
'/etc/opt/SUNWut/basedir/lib/utxsun :11 -auth /var/lib/gdm/:11.Xauth'
expected keysym, got XF86KbdLightOnOff: line 70 of pc
expected keysym, got XF86KbdBrightnessDown: line 71 of pc
expected keysym, got XF86KbdBrightnessUp: line 72 of pc
Could not init font path element /usr/X11R6/lib/X11/fonts/local,
removing from list!
Could not init font path element
/usr/X11R6/lib/X11/fonts/misc/:unscaled, removing from list!
Could not init font path element
/usr/X11R6/lib/X11/fonts/75dpi/:unscaled, removing from list!
Could not init font path element
/usr/X11R6/lib/X11/fonts/100dpi/:unscaled, removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Type1,
removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/CID,
removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/Speedo,
removing from list!
Could not init font path element /usr/X11R6/lib/X11/fonts/TrueType,
removing from list!
Could not init font path element /usr/share/X11/fonts/local, removing from list!
Could not init font path element /usr/share/X11/fonts/misc/:unscaled,
removing from list!
Could not init font path element /usr/share/X11/fonts/75dpi/:unscaled,
removing from list!
Could not init font path element
/usr/share/X11/fonts/100dpi/:unscaled, removing from list!
Could not init font path element /usr/share/X11/fonts/Type1, removing from list!
Could not init font path element /usr/share/X11/fonts/CID, removing from list!
Could not init font path element /usr/share/X11/fonts/Speedo, removing
from list!
Could not init font path element /usr/share/X11/fonts/TrueType,
removing from list!

Fatal server error:
could not open default font 'fixed'
_______________________________________________
SunRay-Users mailing list
SunRay-Users@filibeto.org
http://www.filibeto.org/mailman/listinfo/sunray-users

Reply via email to