Does anyone know how to fix the following error? I've been searching for days without any solid clues for FreeBSD, though I've found many instances of the error on Linux systems. This error is received on only one out of two 10.3 systems built at the same time, the other for whatever reason, works perfectly without any changes to the vncserver script.
the default, relevant portions of /usr/local/bin/vncserver;
I tried setting fontpath to /usr/local/share/fonts/ as well as /usr/local/share/fonts/75dpi and some of the other font directories found in that folder as some of the Linux forums that my searches directed, but I still get that same error. Any advice from someone who has dealt with this issue before would be greatly appreciated.
Code:
$ vncserver
Syntax error: Unterminated quoted string
Syntax error: Unterminated quoted string
Syntax error: Unterminated quoted string
Syntax error: Unterminated quoted string
Couldn't start Xvnc; trying default font path.
Please set correct fontPath in the vncserver script.
Syntax error: Unterminated quoted string
Syntax error: Unterminated quoted string
Couldn't start Xvnc process.
Code:
# Default configuration of the TightVNC Server:
$geometry = "1024x768";
$depth = 24;
$desktopName = "X";
$vncClasses = "/usr/local/share/tightvnc/classes";
$vncUserDir = "$ENV{HOME}/.vnc";
#$fontPath = "unix/:7100";
$authType = "-rfbauth $vncUserDir/passwd";
my @configurableVariables =
qw(geometry
depth
desktopName
vncClasses
vncUserDir
fontPath
authType
colorPath
);
Last edited by a moderator: