Discuss Launch Firefox on Boot in the Linux Help forum on Dev Shed. Launch Firefox on Boot Linux Help forum discussing topics including usage, troubleshooting, modules, and distributions. Linux is an open source OS, based on UNIX.
The ASP Free website provides in-depth information on the latest developer tools available from Microsoft. Our cadre of writers, highly experienced industry experts, reveals the best ways to use established technologies as well as new and emerging technologies. Our coverage of Microsoft's development and administration technologies is among the most respected in the IT industry today.
ASP Free and Iron Speed Designer are giving away $5,500+ in FREE licenses. Iron Speed's RAD CASE toolset can save up to 80% of your coding time. One free license per week, one perpetual license per month! Download and Activate to enter!
Intel® Graphics Performance Analyzers is a powerful tool suite for analyzing and optimizing your games, media, and graphics-intensive applications. Used by some of the best developers on the planet, Intel GPA lets you maximize your app’s performance.
Posts: 100
Time spent in forums: 14 h 28 m 54 sec
Reputation Power: 8
Launch Firefox on Boot
Hi,
I would like to know how can I auto launch firefox on system boot. That means once booted the user can only see the web browser.
I guess this is what u call web kiosk (correct me if I`m wrong)
Any help is appretiated. Thanks in advance.
Posts: 392
Time spent in forums: 6 h 31 m 7 sec
Reputation Power: 11
In order for the user to only be able to access and use Firefox, you would have to do some heavy modifications. These involve (but are not limited to):
- Removing minimize, maximize/restore, exit buttons
- Disabling various key combinations (alt-tab, ctrl-alt-del, ctrl-alt-backspace, etc)
- Heavy customization of desktop environment and security the install
Loading Firefox at boot is one thing, but locking down a web browser only kiosk is different. Can you be more specific in your goal?
__________________
Two things have come out of Berkeley, Unix and LSD.
It is uncertain which caused the other.
First we find where the firefox binary is.
Second we point a symbolic link at it.
Third we set another symbolic link that tells the system to load firefox in multi-user mode in X.
If you're using KDE, you could also set your login manager (eg: kdm) to automatically login as a specific user (eg: balvin), then place a script like so:
Code:
vi /home/balvin/.kde/Autostart/firefox
#!/bin/sh
/usr/bin/firefox
This is assuming that the firefox binary is located in /usr/bin/firefox. It might be elsewhere, so check by running which firefox. Finally, you need to make your script executable.
__________________ Up the Irons
What Would Jimi Do? Smash amps. Burn guitar. Take the groupies home. "Death Before Dishonour, my Friends!!" - Bruce D ickinson, Iron Maiden Aug 20, 2005 @ OzzFest
Down with Sharon Osbourne Diary of a first time dog owner <-- my cousin's blog
Posts: 1
Time spent in forums: 12 m 25 sec
Reputation Power: 0
Quote:
Originally Posted by balvin
I would like to know how can I auto launch firefox on system boot. That means once booted the user can only see the web browser. I guess this is what u call web kiosk (correct me if I`m wrong) Any help is appretiated. Thanks in advance. Firefox version 1.0.7, CentOS version 4.2
I've just written a tech note on Creating a boot-from-CD browser kiosk with Firefox and SLAX Linux. I used the R-kiosk 0.2 Firefox extension to disable menus and buttons and go full-screen. I used a small SLAX distro so the whole thing boots from CD, on just about any PC, without touching (or even needing) a hard disk.
I modified xinitrc to run Firefox instead of the desktop. This is really easy to do in SLAX, but the procedure should apply to any Linux using the X Window System. Isn't technology wonderful?
Posts: 23
Time spent in forums: 6 h 54 m 26 sec
Reputation Power: 0
Quote:
Originally Posted by ehartwell
I've just written a tech note on Creating a boot-from-CD browser kiosk with Firefox and SLAX Linux. I used the R-kiosk 0.2 Firefox extension to disable menus and buttons and go full-screen. I used a small SLAX distro so the whole thing boots from CD, on just about any PC, without touching (or even needing) a hard disk.
I modified xinitrc to run Firefox instead of the desktop. This is really easy to do in SLAX, but the procedure should apply to any Linux using the X Window System. Isn't technology wonderful?
Could you please share that technote .. it would be really helpfull for enthusiasts
Posts: 23
Time spent in forums: 6 h 54 m 26 sec
Reputation Power: 0
Quote:
Originally Posted by GNUbie
In order for the user to only be able to access and use Firefox, you would have to do some heavy modifications. These involve (but are not limited to):
- Removing minimize, maximize/restore, exit buttons
- Disabling various key combinations (alt-tab, ctrl-alt-del, ctrl-alt-backspace, etc)
- Heavy customization of desktop environment and security the install
Loading Firefox at boot is one thing, but locking down a web browser only kiosk is different. Can you be more specific in your goal?
- Removing minimize, maximize/restore, exit buttons
- Disabling various key combinations (alt-tab, ctrl-alt-del, ctrl-alt-backspace, etc)
- Heavy customization of desktop environment and security the install
How do we do these steps ?? Can you give some tips ..