Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootable Qt-Linux Application

Tags:

linux

qt

bootable

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 PCs

should be able to run from RAM (of course)

like image 489
yolo Avatar asked Mar 19 '11 10:03

yolo


2 Answers

Perhaps you could look at how this guy did it:

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

like image 115
Venemo Avatar answered Oct 04 '22 04:10

Venemo


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.

like image 33
Etienne Savard Avatar answered Oct 04 '22 06:10

Etienne Savard