Web Browser Boot-Only Operating System

5.2k Views Asked by At

Is it possible to create an operating system that loads a web browser without menu bars, tabs etc. and that is all it loads.

I do not mean like Chrome OS but I mean all it loads is a html page which can be interacted with like an ordinary web page e.g. google.com, youtube.com.

Also, if this is possible, I would prefer it to be a Linux based OS and Webkit based browser.

2

There are 2 best solutions below

1
On

You might have to roll your own for something like that...my recommendation would be a small linux distribution and then figure out how to run the surf browser, possibly with the tabbed extension, exclusively. When the x environment starts up just execute those programs. You'd honestly never know the difference.

Here is a screenshot of what this all looks like on my computer, running dwm for window management, and surf + tabbed. This browser is controlled via the keyboard, so you'd have to get use to that.

3
On

You don't need to create an operating system, you can use Linux.

A simple implementation would be creating an application using Qt Embedded (qws) with a Widget containing a QWebView only (it's WebKit based), that would load a predefined address.

You could spawn that app from the init scripts (rcS for example) in an endless loop (simple bash script, so if the app crashes it gets loaded again)

You can prototype it with a simple hardware like beagleboard.org or friendlyarm.net boards.