Cấu hình Xorg bên trong container
Cấu hình Xorg và gnome trên container base Centos 6:
1. Start CT với IP address có thể connect được (for VNC access).
2. Cài đặt các gói cần thiết bên trong CT:
~# vzpkg install CTID -p Xorg gnome-desktop gdm xorg-x11-fonts* tigervnc-server xorg-x11-drv-dummy gnome-icon-theme gnome-menus gnome-panel gnome-system-monitor gnome-terminal gnome-themes gnome-utils
3. Cấu hình runlevel mặc định trong CT là “5”:
~# vzctl enter CTID
~# grep initdefault /etc/inittab
id:5:initdefault:
4. Restart the container
~# vzctl restart CTID
5. Cấu hình Xorg trong file /etc/X11/xorg.conf cho CT như bên dưới:
Section “InputDevice”
Identifier “Dummy Input”
Driver “void”
EndSection
Section “Device”
Identifier “Dummy Video”
Driver “dummy”
EndSection
Section “Monitor”
Identifier “Configured Monitor”
EndSection
Section “Screen”
Identifier “Default Screen”
Monitor “Configured Monitor”
Device “Dummy Video”
EndSection
Section “ServerLayout”
Identifier “Default Layout”
Screen “Default Screen”
InputDevice “Dummy Input”
EndSection
6. Bên trong CT, start Gnome desktop manager:
~# gdm&
7. Thực thi VNC server:
~# vncserver
Mặc định VNC Server lắng nghe trên port 5901, bạn có thể connect đển VNC thông qua VNC client với địa chỉ <Đỉa chỉ IP>:5901