zoukankan      html  css  js  c++  java
  • Linux Mint 使用 VNC Server (x11vnc) 进行远程屏幕

    https://community.linuxmint.com/tutorial/view/2334

    This tutorial was adapted from here.

    1. Remove the default Vino server:

    sudo apt-get -y remove vino

    1. Install x11vnc:

    sudo apt-get -y install x11vnc

    1. Create the directory for the password file:

    sudo mkdir /etc/x11vnc

    1. Create the encrypted password file:

    sudo x11vnc --storepasswd /etc/x11vnc/vncpwd

    You will be asked to enter and verify the password. Then press Y to
    save the password file.

    1. Create the systemd service file for the x11vnc service:

    sudo xed /lib/systemd/system/x11vnc.service

    Copy/Paste this code into the empty file:
    复制以下文字

    [Unit]
    Description=Start x11vnc at startup.
    After=multi-user.target
    
    [Service]
    Type=simple
    ExecStart=/usr/bin/x11vnc -auth guess -forever -noxdamage -repeat -rfbauth /etc/x11vnc/vncpwd -rfbport 5900 -shared
    
    [Install]
    WantedBy=multi-user.target
    

    6: Reload the services:

    sudo systemctl daemon-reload

    1. Enable the x11vnc service at boot time:

    sudo systemctl enable x11vnc.service

    1. Start the service:

    Either reboot or

    sudo systemctl start x11vnc.service

    抱怨一句:
    百度上根本什么有用的都没有,我要的是mint,搜出来的都是些啥,连搜索引擎都懒成这样,

  • 相关阅读:
    文档API
    vi编辑器常用方法
    storm实战入门一
    redis教程
    为redis分配一个新的端口
    Lucene分页查询
    Lucene搜索方式大合集
    HBase Scan类用法
    java.util.Queue用法
    Makefile中预定义变量
  • 原文地址:https://www.cnblogs.com/SuCicada/p/10164643.html
Copyright © 2011-2022 走看看