我正在尝试使用 Chrome 在 Kiosk 模式下配置 Ubuntu Server 16.04.02。它正在工作,但我无法配置启动画面而不是显示启动消息。
工作至今
创建 Chrome 自助服务终端的步骤
sudo apt update && sudo apt upgrade -y显示服务器 + Windows 管理器: sudo apt install xorg openbox -y
注意:我尝试安装 openbox,--no-install-recommends但屏幕的一半(右侧)是黑色的。
谷歌浏览器
sudo add-apt-repository 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
wget -qO- https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt update && sudo apt install google-chrome-stable -y
Run Code Online (Sandbox Code Playgroud)sudo adduser kioskChrome 启动脚本:
sudo tee -a /home/kiosk/startchrome.sh <<EOF
#!/bin/bash
# …Run Code Online (Sandbox Code Playgroud)(tl;dr) 我的 USB 3.0 以太网适配器已找到 (lsusb),但在 Ubuntu 18.04 beta 2 中每次重新启动后以太网接口都会被禁用,即使我使用以下命令启用它ip or ifconfig command (funny: it's found during installation and even connects, via dhcp, but is disabled after first reboot).
Long version: I am trying to get a DELOCK 62966 USB 3.0 > 4x Ethernet Adapter to work in a Ubuntu machine. Important: Ubuntu runs as VM in the latest Virtualbox, with a USB filter allowing access from the VM. It works well in a parallel running Windows VM. …