zoukankan      html  css  js  c++  java
  • Ubuntu 18.04安装xdrp以使用远程桌面

    背景

    开发环境有一台服务器默认没有屏幕(被我拿走用来拓展屏幕了),有时候需要使用到界面但嫌弃拆显示器太麻烦,因此使用远程桌面来解决这个需求。

    做法

    安装xrdp

    sudo apt install -y tightvncserver  xrdp
    sudo systemctl restart xrdp
    

    登录

    Windows

    入口:菜单--Windows 附件--远程桌面连接MSTSC

    1、输入IP,不需要用户名。

    image

    2、选择Xorg,输入账号密码

    image

    Ubuntu

    入口:remmina

    问题与解决

    多次输入密码

    https://blog.csdn.net/wu_weijie/article/details/108481456

    1、xrdp 远程登录需要输入很多次密码

    image

    Authentication is required to creat a color profile
    

    创建文件 /etc/polkit-1/localauthority/50-local.d/45-allow-colord.pkla 并写入内容:

    [Allow Colord all Users]
    Identity=unix-user:*
    Action=org.freedesktop.color-manager.create-device;org.freedesktop.color-manager.create-profile;org.freedesktop.color-manager.delete-device;org.freedesktop.color-manager.delete-profile;org.freedesktop.color-manager.modify-device;org.freedesktop.color-manager.modify-profile
    ResultAny=no
    ResultInactive=no
    ResultActive=yes
    

    创建文件 /etc/polkit-1/localauthority/50-local.d/46-allow-packagekit.pkla 并写入内容:

    [Allow Refresh Repository all Users]
    Identity=unix-user:*
    Action=org.freedesktop.packagekit.system-sources-refresh
    ResultAny=no
    ResultInactive=no
    ResultActive=yes
    

    thinclient_drives

    https://blog.csdn.net/jhjyear/article/details/91040216

    ubuntu上安装xrdp搭建远程桌面,后面远程桌面是可以了,但是用户目录下生出了一个thinclient_drives文件夹,无论是不是root都不能删除,

    这个不删除有时候也很难受,比如你要打包整个用户目录,打包到它的时候会告诉你权限不允许,例如:

    tar: thinclient_drives: Cannot stat: Permission denied
    tar: Exiting with failure status due to previous errors
    

    如果你有强迫症,你就感觉不舒服,一定要删除,下面介绍如何删除。

    具体表现如下:

    $ sudo  ll 
    ls: cannot access 'thinclient_drives': Transport endpoint is not connected
    total 72
    drwx------  7 root root  4096 Jun  6 09:39 ./
    drwxr-xr-x 23 root root  4096 Jun  6 10:16 ../
    d?????????  ? ?    ?        ?            ? thinclient_drives/
    

    由于是它的所有者、组用户、读写执行都是,chmod也不好使。

    需要另辟蹊径,使用下列命令:

    $ sudo umount ~/thinclient_drives && sudo rm thinclient_drives -rf
    
    如果说我的文章对你有用,只不过是我站在巨人的肩膀上再继续努力罢了。
    若在页首无特别声明,本篇文章由 Schips 经过整理后发布。
    博客地址:https://www.cnblogs.com/schips/
  • 相关阅读:
    7、cad图纸打印
    对账
    练习10—去掉图片文字
    6、cad里面如何快速将图纸的线条全部变成黑色
    5、cad如何快速选中图纸上所有文字
    4、如何修改cad的背景色为白色
    练习九—快速修饰面部光影
    iOS alloc&init探索
    export default / export const
    Vue2.0+组件库总结
  • 原文地址:https://www.cnblogs.com/schips/p/using_xdrd_for_remote_desktop_in_ubuntu.html
Copyright © 2011-2022 走看看