Bootable Qt-Linux Application

前端 未结 5 1647
时光说笑
时光说笑 2020-12-28 19:32

How to boot a linux kernel + dependencies and auto run a Qt application so the linux environment doesn\'t show up (only the Qt GUI is visible)?

on x86

相关标签:
5条回答
  • 2020-12-28 19:57

    Perhaps you could look at how this guy did it:

    http://www.embedded-bits.co.uk/2011/1-second-linux-boot-to-qt/

    0 讨论(0)
  • 2020-12-28 20:05

    I have never tried this, but try google for 'framebuffer'. It should allow you to run a single application with no need for X server.

    0 讨论(0)
  • 2020-12-28 20:10

    Why not run x server without window manager and the running the application in full screen mode on that x server.

    to start x server type startx and then you must run your application in fullscreen mode (your app must support this mode by argument switch like this)

    ./myapp --fullscreen

    0 讨论(0)
  • 2020-12-28 20:16

    You could start with a minimal linux distribution such as Ubuntu Server and install only X-Windows (without any Window Manager) on top of it: https://help.ubuntu.com/community/ServerGUI

    Then, start your Qt application by adding a call to it in the .xinitrc initialization script.

    0 讨论(0)
  • 2020-12-28 20:18

    Might be helpfull Linux Journal KDE Kiosk Mode

    0 讨论(0)
提交回复
热议问题