On Friday 21 September 2007 21:32, Rikard Johnels wrote:
> Hi all!
>
> I enabled remote administration in YaST;
> YaST -> Network Services -> Remote Adinistration
>
> It works as expectad, but the opened window is set to 1024x768.
> I have a dual monitor setup that does 1600x1024x2 and i would like the
> remote session to be at least 1280x1024, or better yet, full screen.
> I have tried to find where Yast stores the setting for the daemon, but i
> cant seem to find how or where it sets it...

The short:

edit /etc/xinetd.d/vnc
Copy add new section for size you want.  

something like this:
# default: off
# description: This serves out a VNC connection which starts at a KDM login \
#       prompt. This VNC connection has a resolution of 1600x1200, 16bit depth.
service vnc4 <----  change name
{
        type            = UNLISTED
        port            = 5904 <------  change port
        socket_type     = stream
        protocol        = tcp
        wait            = no
        user            = nobody
        server          = /usr/bin/Xvnc
        server_args     = -SecurityTypes None -inetd -once -query localhost 
-geometry 
1600x1200 -depth 16  <-----  change geometry
        disable         = yes <----  change disable to no
}


once done with vnc file, you need to reload xinetd with following command:

rcxinetd reload

Then you need to open your firewall...

and you can connect to ip:4 (where 4 is the portno you used  -5900)


Jerry

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to