Changes between Version 22 and Version 23 of TipAndDoc/Linux/LXC


Ignore:
Timestamp:
Dec 30, 2012 5:36:54 AM (11 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/Linux/LXC

    v22 v23  
    439439rm: cannot remove `/mnt/host-media': Read-only file system 
    440440}}} 
     441 
     442 = X11 with VNC = 
     443 * [http://box.matto.nl/lxcxserver.html Set up a LXC Linux Container as Xserver howto | box.matto.nl] 
     444 * [http://unix.stackexchange.com/questions/18003/linux-lxc-deploying-images-with-tiniest-possible-x11 xorg - Linux - LXC; deploying images with tiniest possible X11 - Unix and Linux] 
     445 
     446 * 12.04上のLXCでは、configのcgroupの設定やmknodなどは特に必要ない模様 
     447 * vnc自体については => [../../network/vnc#vncserver] 
     448 
     449 * 基本的に{{aptitude install -R}}でインストールしている 
     450 * エラーメッセージについては ~/.vnc/ 以下に保存されるログファイルから 
     451 
     452 == common packages == 
     453 * vnc4server 
     454 * xfonts-base 
     455{{{ 
     456could not open default font 'fixed' 
     457}}} 
     458 
     459 == GNOME == 
     460 * gnome 
     461 * unity-2d 
     462{{{ 
     463gnome-session[5129]: WARNING: GSIdleMonitor: IDLETIME counter not found 
     464gnome-session[5129]: WARNING: Session 'ubuntu' runnable check failed: Exited with code 1 
     465gnome-session[5129]: WARNING: Unable to find default provider 'unity-2d-panel' of required provider 'panel' 
     466gnome-session[5129]: WARNING: Unable to find default provider 'unity-2d-shell' of required provider 'shell' 
     467}}} 
     468  * [https://forums.ubuntulinux.jp/viewtopic.php?id=12231 Ubuntu日本語フォーラム / 11.10でUnityを削除してみたら起動しなくなってしまいました] 
     469 
     470 * ~/.vnc/xstartup 
     471{{{#!sh 
     472xsetroot -solid grey 
     473exec gnome-session & 
     474}}} 
     475 
     476 == Xfce == 
     477 * xfce4  
     478 
     479 * ~/.vnc/xstartup 
     480{{{#!sh 
     481xsetroot -solid grey 
     482exec startxfce4 & 
     483}}} 
     484 * もしくは 
     485{{{#!sh 
     486xsetroot -solid grey 
     487exec xfce4-session & 
     488}}} 
     489 * 後者だとTrashディレクトリなどがFile Managerに表示されない 
     490 
     491 == LXDE == 
     492 * lxde 
     493 
     494 * ~/.vnc/xstartup 
     495{{{#!sh 
     496xsetroot -solid grey 
     497exec lxsession -s LXDE & 
     498}}} 
     499  * -s LXDEは無くても良い模様