写点什么

以容器方式使用桌面系统

作者:walker12138
  • 2024-06-12
    广东
  • 本文字数:827 字

    阅读完需:约 3 分钟

以容器方式使用桌面系统

容器的优势无需赘述。有些场景仍然需要一个桌面系统,比如桌面软件开发(flutter),交互式应用访问等(chrome)。

以下记录如何在容器中使用完整桌面环境过程(ubuntu 2404)

安装桌面环境

apt-get install -y --no-install-recommends xfce4
复制代码

安装 vncserver

apt install tigervnc-standalone-server
复制代码

设置 vncserver 密码

vncserver
复制代码

添加配置文件 nano ~/.vnc/xstartup

#!/bin/sh
unset SESSION_MANAGER
unset DBUS_SESSION_BUS_ADDRESS
exec startxfce4
复制代码

chmod u+x ~/.vnc/xstartup


使用 novnc

git clone https://github.com/novnc/noVNC.gitcd noVNC./utils/novnc_proxy --vnc 0.0.0.0:5902 --listen 0.0.0.0:6081
复制代码

问题记录


安装,重启 vncserver

apt install dbus-x11
复制代码

启动报错

[root@moodle-bak .X11-unix]# vncserver   
WARNING: The first attempt to start Xvnc failed, possibly because the fontcatalog is not properly configured. Attempting to determine an appropriatefont path for this system and restart Xvnc using that font path ...Could not start Xvnc.
_XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed_XSERVTransMakeAllCOTSServerListeners: server already running(EE) Fatal server error:(EE) Cannot establish any listening sockets - Make sure an X server isn't already running(EE) _XSERVTransSocketUNIXCreateListener: ...SocketCreateListener() failed_XSERVTransMakeAllCOTSServerListeners: server already running(EE) Fatal server error:(EE) Cannot establish any listening sockets - Make sure an X server isn't already running(EE)


解决方法:touch /tmp/.X11-unix/X1chmod 777 /tmp/.X11-unix/X1解决
复制代码

参考

https://www.cnblogs.com/liyuanhong/articles/15487147.html

https://aws.amazon.com/cn/blogs/china/how-to-build-access-to-the-ubuntu-22-desktop-through-a-browser-using-novnc/

用户头像

walker12138

关注

熟练Python、Go多种语言的HelloWorld 2020-02-25 加入

目前主要在云原生大数据AI领域谋生

评论

发布
暂无评论
以容器方式使用桌面系统_walker12138_InfoQ写作社区