How to show GRUB memu if it skips
Hold “shift” key after BIOS load.
How to edit GRUB parameter
Select a entry and press “e”
After edit the parameter, press Ctrl-X or F10 to boot
lubuntu Linux can’t display correctly after boot
First, edit GRUB paramter and delete parameter
then start lubuntu Linux.
After start lubuntu Linux, open terminal LXTerminal
1
   | $sudo vi /etc/default/grub
   | 
 
Uncomment line
This issue is about “eeepc 901 resolution can’t be set 1024x600”
VNC
Configure VNC Server
1
   | sudo apt -y install vnc4server
   | 
 
set VNC password
1 2 3
   | ubuntu@dlp:~$ vncpasswd  Password: Verify:
   | 
 
start VNC server
1 2 3 4 5 6 7
   | ubuntu@dlp:~$ vncserver :1 
  New 'dlp:1 (ubuntu)' desktop is dlp:1
  Creating default startup script /home/ubuntu/.vnc/xstartup Starting applications specified in /home/ubuntu/.vnc/xstartup Log file is /home/ubuntu/.vnc/dlp:1.log
   | 
 
stop once
1 2
   | ubuntu@dlp:~$ vncserver -kill :1  Killing Xvnc4 process ID 2675
   | 
 
modify ~/.vnc/xstartup and add following line to the end
1 2 3 4
   | ubuntu@dlp:~$ vi ~/.vnc/xstartup
  # add to the end exec /usr/bin/mate-session &
   | 
 
start with diplay number ‘1’, screen resolution ‘800x600’, color depth ‘24’
1 2 3 4 5
   | ubuntu@dlp:~$ vncserver :1 -geometry 1024x600 -depth 16  New 'ubuntu:1 (ubuntu)' desktop is ubuntu:1
  Starting applications specified in /home/ubuntu/.vnc/xstartup Log file is /home/ubuntu/.vnc/ubuntu:1.log
   |