|
Bugzilla – Full Text Bug Listing |
| Summary: | could not open default font 'fixed' | ||
|---|---|---|---|
| Product: | [openSUSE] openSUSE 10.2 | Reporter: | Andreas Schwab <schwab> |
| Component: | YaST2 | Assignee: | Marcus Schaefer <ms> |
| Status: | RESOLVED FIXED | QA Contact: | Jiri Srain <jsrain> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | locilka, ms |
| Version: | Alpha 3 plus | ||
| Target Milestone: | --- | ||
| Hardware: | Other | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | Other | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
|
Description
Andreas Schwab
2006-09-04 09:57:59 UTC
already fixed No, it isn't. . . Stefan, VNC in installation seems to be broken. Could you, please, take care of fixing it? I wonder if YaST2 specifies a wrong font path for Xvnc. # Xvnc :1 Xvnc Free Edition 4.1.2 Copyright (C) 2002-2005 RealVNC Ltd. See http://www.realvnc.com for information on VNC. Underlying X server release 70100000, The X.Org Foundation Mon Sep 4 14:28:59 2006 vncext: VNC extension running! vncext: Listening for VNC connections on port 5901 vncext: created VNC server for screen 0 Could not init font path element /usr/share/fonts/TTF/, removing from list! Could not init font path element /usr/share/fonts/OTF, removing from list! FreeFontPath: FPE "/usr/share/fonts/misc/" refcount is 2, should be 1; fixing. Marcus: please, fix font paths if there are wrong or make it "duplicate" if already fixed. Jsrain: Have a look please, if font paths are set correctly (XVersion?). ...or write who's responsible for this... thanks I think this was fixed in a wrong way during my vacation. I assume the variable
Xfontdir should be used here not Xlibdir. I changed the Xvnc call like
the following patch shows:
Index: startup/common/vnc.sh
===================================================================
--- startup/common/vnc.sh (revision 32684)
+++ startup/common/vnc.sh (working copy)
@@ -84,7 +84,7 @@
-httpd /usr/share/vnc/classes \
-rfbport 5901 \
-httpport 5801 \
- -fp $Xlibdir/X11/fonts/misc/,$Xlibdir/X11/fonts/uni/,$Xlibdir/X11/fonts/truetype/ \
+ -fp $Xfontdir/misc/,$Xfontdir/uni/,$Xfontdir/truetype/ \
&> /var/log/YaST2/vncserver.log &
xserver_pid=$!
export DISPLAY=:0
thanks Hui, you are really fast... "already checked in" |