小编JPe*_*ier的帖子

带有启动画面和 Kiosk 模式的 Ubuntu Server 16.04.02

我正在尝试使用 Chrome 在 Kiosk 模式下配置 Ubuntu Server 16.04.02。它正在工作,但我无法配置启动画面而不是显示启动消息。

工作至今

创建 Chrome 自助服务终端的步骤

  1. 安装 Ubuntu Server 16.04.02 和 OpenSSH Server
  2. 更新: sudo apt update && sudo apt upgrade -y
  3. 显示服务器 + Windows 管理器: sudo apt install xorg openbox -y

    注意:我尝试安装 openbox,--no-install-recommends但屏幕的一半(右侧)是黑色的。

  4. 谷歌浏览器

    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)
  5. 创建一个“信息亭”用户: sudo adduser kiosk
  6. Chrome 启动脚本:

    sudo tee -a /home/kiosk/startchrome.sh <<EOF
    #!/bin/bash
    
    # …
    Run Code Online (Sandbox Code Playgroud)

server boot plymouth openbox kiosk

6
推荐指数
1
解决办法
1万
查看次数

USB Ethernet interface in virtual Ubuntu 18.04 disabled after every reboot

(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. …

usb networking ethernet virtualbox-networking

3
推荐指数
1
解决办法
2万
查看次数