From ca475802ab85738f31048b736f9fc2d3a4c632d9 Mon Sep 17 00:00:00 2001 From: "rick.chan" Date: Mon, 3 Jun 2024 08:43:27 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=E7=AC=94=E8=AE=B0=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: rick.chan --- Ecology/LubanCat2/关于_Weston_的一些配置.md | 67 +++++++++++++++++++ .../YanYu/RK3568/YanYu_RK3568_主板初始配置.md | 2 +- .../易百纳_EB-RV1126-DC-201_Linux_说明.md | 4 +- 3 files changed, 70 insertions(+), 3 deletions(-) create mode 100644 Ecology/LubanCat2/关于_Weston_的一些配置.md diff --git a/Ecology/LubanCat2/关于_Weston_的一些配置.md b/Ecology/LubanCat2/关于_Weston_的一些配置.md new file mode 100644 index 0000000..630c49f --- /dev/null +++ b/Ecology/LubanCat2/关于_Weston_的一些配置.md @@ -0,0 +1,67 @@ +# 关于 Weston 的一些配置 + +Error running systemd as user - Failed to connect to bus: $DBUS_SESSION_BUS_ADDRESS and $XDG_RUNTIME_DIR not defined + +```md +The quick solution + +Assuming someuser uses bash as their login shell, add the following exports to ~someuser/.profile [1]: + +export XDG_RUNTIME_DIR="/run/user/$UID" +export DBUS_SESSION_BUS_ADDRESS="unix:path=${XDG_RUNTIME_DIR}/bus" + +Then, a user with root/sudo privileges can interact with someuser's systemd by wrapping the command with runuser: + +sudo runuser someuser -l -c "systemctl --user enable ipfs" +sudo runuser someuser -l -c "systemctl --user start ipfs" + +runuser someuser -l -c "printenv" can help to troubleshoot these and other exported environment variables. +``` + +```bash +apt install weston +/etc/xdg/weston/weston.ini +``` + +```bash +[core] +xwayland=true +backend=drm-backend.so + +[keyboard] +keymap_layout=gb + +[output] +name=DSI-1 +mode=1024x600 + +[launcher] +icon=/usr/share/icons/locolor/32x32/apps/gvim.png +path=/usr/bin/weston-terminal +``` + +```weston.ini +backend=headless-backend.so + overrides defaults backend. Available backend modules in the /usr/lib/x86_64-linux- + gnu/weston directory are: + drm-backend.so + fbdev-backend.so + headless-backend.so + rdp-backend.so + rpi-backend.so + wayland-backend.so + x11-backend.so +``` + +```bash +sudo -E XDG_RUNTIME_DIR="/run/user/1000" weston-launch --tty=/dev/tty2 --user=cat + +usermod -aG video user123 +usermod -a -G weston-launch user-name + +gst-play-1.0 Big_Buck_Bunny_720_10s_30MB.mp4 --videosink=waylandsink0 + +apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio +``` + +https://wayland.pages.freedesktop.org/weston/toc/running-weston.html#running-weston-on-a-different-seat-on-a-stand-alone-back-end diff --git a/Ecology/YanYu/RK3568/YanYu_RK3568_主板初始配置.md b/Ecology/YanYu/RK3568/YanYu_RK3568_主板初始配置.md index e8795ef..c1985ab 100644 --- a/Ecology/YanYu/RK3568/YanYu_RK3568_主板初始配置.md +++ b/Ecology/YanYu/RK3568/YanYu_RK3568_主板初始配置.md @@ -9,7 +9,7 @@ sudo apt install libqt5multimedia5-plugins libqt5multimediagsttools5 libqt5gstre sudo apt install qml-module-qtquick-virtualkeyboard qml-module-qtquick-window2 qml-module-qtquick-shapes qml-module-qtquick-scene2d qml-module-qtquick-privatewidgets qml-module-qtquick-localstorage qml-module-qtquick-extras qml-module-qtquick-dialogs qml-module-qtquick-controls2 qml-module-qtquick-controls qml-module-qt-labs-calendar qml-module-qt-labs-qmlmodels qml-module-qt-labs-folderlistmodel qml-module-gsettings1.0 qml-module-qmltermwidget qml-module-qt-labs-folderlistmodel qml-module-qt-labs-location qml-module-qt-labs-platform qml-module-qt-labs-qmlmodels qml-module-qt-labs-settings qml-module-qt-labs-sharedimage qml-module-qtcharts qml-module-qtmultimedia qml-module-qtlocation qml-module-qtpositioning qml-module-qtqml-statemachine -sudo apt install gstreamer1.0-libav libgstreamer-plugins-bad1.0-0 gstreamer1.0-qt5 gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gstreamer1.0-plugins-bad +sudo apt install gstreamer1.0-plugins-base-apps gstreamer1.0-libav libgstreamer-plugins-bad1.0-0 gstreamer1.0-qt5 gstreamer1.0-plugins-ugly gstreamer1.0-plugins-good gstreamer1.0-plugins-bad # 安装 NATS 服务和调试工具. sudo apt install libssl-dev libprotobuf-c-dev libprotobuf-c1 protobuf-c-compiler protobuf-compiler diff --git a/Ecology/易百纳_EB-RV1126-DC-201/易百纳_EB-RV1126-DC-201_Linux_说明.md b/Ecology/易百纳_EB-RV1126-DC-201/易百纳_EB-RV1126-DC-201_Linux_说明.md index 7aaae5e..e691972 100644 --- a/Ecology/易百纳_EB-RV1126-DC-201/易百纳_EB-RV1126-DC-201_Linux_说明.md +++ b/Ecology/易百纳_EB-RV1126-DC-201/易百纳_EB-RV1126-DC-201_Linux_说明.md @@ -135,8 +135,8 @@ GPrivate* gobj() { return &gobject_; } ### 裁剪 -* nginx -* host-ntfs1 +- nginx +- host-ntfs1 ### 软件包下载过慢或无法下载的处理