Changes between Version 29 and Version 30 of TipAndDoc/network/vnc


Ignore:
Timestamp:
Nov 16, 2015 10:55:00 PM (8 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/network/vnc

    v29 v30  
    88 * [http://www.realvnc.com/products/free/4.1/man/vncpasswd.html vncpasswd(1) manual page] 
    99 > The password must be at least six characters long, and only the first eight characters are significant. Note that the stored password is not encrypted securely 
     10 * [https://www.realvnc.com/products/open/4.0/man/vncconfig.html vncconfig(1) manual page] 
    1011 
    1112 * [http://d.hatena.ne.jp/hidepon_mory/20080422/1208862370 VNCサーバーの設定 - ひでっぷの技術メモ] 
    1213 * [http://www.server-world.info/query?os=Debian_6.0&p=x&f=2 Debian GNU/Linux 6.0 Squeeze - デスクトップ環境 - VNCサーバーインストール : Server World] 
    1314 * [http://www32.atwiki.jp/parepan/pages/113.html @鯖味噌缶 - vncserver] 
     15 * [http://net-3.blogspot.jp/2012/09/vnc-vncconfig.html net3: VNC 間のクリップボード反映は vncconfig & で対応] 
    1416 
    1517 * -nolisten 
     
    9294}}} 
    9395 
     96 === 12.04 with lxde === 
     97{{{#!sh 
     98#!/bin/sh 
     99 
     100# Uncomment the following two lines for normal desktop: 
     101# unset SESSION_MANAGER 
     102# exec /etc/X11/xinit/xinitrc 
     103 
     104[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup 
     105[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources 
     106xsetroot -solid grey 
     107# vncconfig -iconic & 
     108# x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & 
     109# x-window-manager & 
     110 
     111PIDFILE="$HOME/.vnc/*${DISPLAY}.pid" 
     112 
     113 
     114vncconfig -nowin & 
     115while : 
     116do 
     117    [ -r $PIDFILE ] || break 
     118    PID=`cat $PIDFILE` 
     119    ps $PID > /dev/null 2>&1 || break 
     120     
     121    lxsession -s LXDE 
     122done 
     123}}} 
     124 
    94125 = x11vnc = 
    95126 * 「caught XIO error」というエラーとともに勝手にログアウト(Xのセッションからも)することがあるが、詳細不明