Ubuntu 18.04 LTS安裝vncserver虛擬網路控制檯
虛擬網路控制檯(VNC)是一個圖形桌面共享軟體,允許您使用鍵盤和滑鼠遠端控制另一臺計算機。 |
系統環境
- 服務端:Ubuntu 18.04 Server LTS
- 客戶端:Windows10
- 客戶端VNC-Viewer 6.20下載地址:https://www.realvnc.com/en/connect/download/viewer/
安裝桌面環境
本實驗中安裝的系統沒有安裝桌面環境,我們需要自己安裝,如果已經安裝桌面了清跳過這一步。
我們可Ubuntu提供了許多桌面環境,可以選擇自己喜歡的桌面環境,在這裡選擇安裝Xfce4桌面:
bpang@ubuntu1804:~$ sudo apt install xfce4*
安裝VNC Server
安裝倉庫提供的vnc4server:
bpang@ubuntu1804:~$ sudo apt install vnc4server
執行 vncserver 命令建立一個初始配置並設定密碼:
bpang@ubuntu1804:~$ vncserver You will require a password to access your desktops. Password: Verify: New 'ubuntu1804:1 (bpang)' desktop is ubuntu1804:1 Creating default startup script /home/bpang/.vnc/xstartup Starting applications specified in /home/bpang/.vnc/xstartup Log file is /home/bpang/.vnc/ubuntu1804:1.log
然後停止vncserver服務:
bpang@ubuntu1804:~$ vncserver -kill :1 Killing Xvnc4 process ID 10260
配置VNC Server
編輯使用者家目錄下面的.vnc/xstartup檔案
bpang@ubuntu1804:~$ vim .vnc/xstartup #!/bin/sh # Uncomment the following two lines for normal desktop: unset SESSION_MANAGER exec /etc/X11/xinit/xinitrc [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & #x-terminal-emulator -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" & #x-window-manager & startxfce4 &
設定vncserver開機啟動
在/etc/init.d資料夾下面建立vncserver檔案, export USER=’bpang’改成自己的使用者名稱
bpang@ubuntu1804:~$ sudo vim /etc/init.d/vncserver #!/bin/bash export USER='bpang' eval cd ~$USER case "$1" in start) su $USER -c '/usr/bin/vncserver :1' echo "Starting VNC server for $USER " ;; stop) su $USER -c '/usr/bin/vncserver -kill :1' echo "vncserver stopped" ;; *) echo "Usage: /etc/init.d/vncserver {start|stop}" exit 1 ;; esac exit 0
給vncserver新增執行許可權
bpang@ubuntu1804:~$ sudo chmod +x /etc/init.d/vncserver
開機啟動設定
bpang@ubuntu1804:~$ sudo update-rc.d vncserver defaults bpang@ubuntu1804:~$ sudo service vncserver start
客戶端遠端連線測試
在windows10客戶端開啟VNC Viewer,輸入地址和回話埠號:
總結
如果需要將VNC伺服器配置為多個使用者啟動顯示,請使用vncserver 命令建立初始配置並設定密碼,然後使用其他埠建立新的服務檔案。
原文地址: https://www.linuxprobe.com/ubuntu18-vncserver-console.html
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/31559985/viewspace-2676150/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Centos安裝vncserver虛擬網路控制檯CentOSVNCServer
- Centos7.7安裝vncserver虛擬網路控制檯CentOSVNCServer
- Ubuntu系統安裝VNC虛擬網路控制檯UbuntuVNC
- Ubuntu 18.04 LTS安裝numbaUbuntu
- Ubuntu18.04安裝Python虛擬環境UbuntuPython
- wmware 安裝ubuntu18.04 虛擬機器Ubuntu虛擬機
- ubuntu安裝vncserver,ubuntu安裝vncserver的使用教程,教程詳解UbuntuVNCServer
- ubuntu 18.04 lts 安裝cuckoo沙箱踩坑記錄Ubuntu
- V-Rep虛擬機器器人實驗平臺在Ubuntu18.04LTS安裝與使用筆記虛擬機Ubuntu筆記
- Install erlang to Ubuntu 18.04 LTSUbuntu
- Install Rabbitmq to Ubuntu 18.04 LTSMQUbuntu
- Install Docker CE for Ubuntu 18.04 LTSDockerUbuntu
- Install Redis to Ubuntu18.04 LTSRedisUbuntu
- ubuntu虛擬機器安裝Ubuntu虛擬機
- ubuntu 18.04 安裝dockerUbuntuDocker
- idrac虛擬控制檯的使用
- Ubuntu 18.04 LTS重新裝回window10系統Ubuntu
- Ubuntu 22.04.1 LTS 安裝 MinIOUbuntu
- Install linux mint apt to Ubuntu 18.04 LTSLinuxAPTUbuntu
- Ubuntu 18.04 LTS(仿生河狸)釋出!Ubuntu
- ubuntu18.04安裝dockerceUbuntuDocker
- ubuntu18.04 安裝jenkinsUbuntuJenkins
- ubuntu18.04 安裝dockerUbuntuDocker
- Ubuntu18.04安裝NginxUbuntuNginx
- Ubuntu18.04安裝GhostUbuntu
- Ubuntu18.04安裝WikijsUbuntuJS
- ubuntu18.04安裝timeshiftUbuntu
- Ubuntu18.04安裝BeyondCompareUbuntu
- rocketmq控制檯安裝MQ
- VMware 安裝 Ubuntu Server 18.04.5 LTSUbuntuServer
- ubuntu18.04 上安裝jdkUbuntuJDK
- Ubuntu18.04安裝wps officeUbuntu
- 在Ubuntu 18.04上安裝TensorflowUbuntu
- Ubuntu18.04基礎安裝Ubuntu
- Ubuntu 18.04 安裝配置 MySQL 5.7UbuntuMySql
- Ubuntu Server 24.04 LTS 安裝記事UbuntuServer
- ubuntu18.04安裝xrdp後虛擬機器桌面能登入不能點選,介面假死Ubuntu虛擬機
- 基於VirtualBox虛擬機器安裝Ubuntu虛擬機Ubuntu