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)

link|improve this question

Starting an application when the OS boots is a user-level question, not a programming one. This would be better suited on Super User. – Cody Gray Mar 19 '11 at 10:28
Do you mean autologin after boot, starting X, then the fullscreen application? What distribution? – Dadam Mar 19 '11 at 11:48
yes, a minimal distro, but with mouse cursor etc – umar Mar 19 '11 at 12:17
It looks like you want to build a linux kiosk appliance. Google for 'linux kiosk' or ask the question on SuperUser. – Andrei Sosnin Mar 27 '11 at 15:08
feedback

5 Answers

Perhaps you could look at how this guy did it:

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

link|improve this answer
but that is for embedded - with no source – umar Mar 21 '11 at 10:30
@umar, see the link again. I'll quote: "If you're interested in exactly what modification I made and a little more about the approach taken - you may be interested in these slides" – Venemo Mar 24 '11 at 12:00
ok, some guidance - the system used is linux kernel 2.6, u-boot(loader) & buildroot. I think buildroot is the solution, as on its site: " using various CPU architectures (x86, ARM, MIPS, PowerPC, etc.)" and "Supports several hundreds of packages for userspace applications and libraries: ... Qt" – umar Mar 24 '11 at 13:06
feedback

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.

link|improve this answer
feedback

Might be helpfull Linux Journal KDE Kiosk Mode

link|improve this answer
I am considering the size increase caused by KDE – umar Mar 26 '11 at 15:34
Doens't KDE use Qt? So you will need the same libs – Martin Beckett Mar 26 '11 at 15:42
well maybe excluding plasma desktop and other things will reduce the size. But I am considering buildroot which allows for additional LIBS – umar Mar 26 '11 at 15:49
feedback

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.

link|improve this answer
1  
Qt builds its GUI on top of X. Unless the OP is talking about a daemon of sorts written in Qt, I don't think a framebuffer will help. – rubenvb Mar 19 '11 at 11:17
Qt/Embedded actually uses the framebuffer instead of X: developer.qt.nokia.com/wiki/Support_for_Embedded_Linux – Ton van den Heuvel Mar 27 '11 at 20:16
I wanted to propose this as well, but couldn't find the licence – Dadam Mar 27 '11 at 22:29
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.