Linux Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsOperating SystemsLinux Help
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.


Tutorials
| Forums

Download to Enter
| Contest Rules

DOWNLOAD INTEL® GPA FOR FREE

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old January 2nd, 2006, 10:19 PM
balvin balvin is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 100 balvin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 h 28 m 54 sec
Reputation Power: 8
Arrow 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.




Firefox version 1.0.7
CentOS version 4.2

Reply With Quote
  #2  
Old January 3rd, 2006, 01:30 AM
GNUbie's Avatar
GNUbie GNUbie is offline
Throws Rocks
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2002
Location: Cincinnati, Ohio
Posts: 392 GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level) 
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.

Reply With Quote
  #3  
Old January 3rd, 2006, 02:13 AM
balvin balvin is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 100 balvin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 h 28 m 54 sec
Reputation Power: 8
What I want to achieve currently is to auto launch firefox on system boot.

Locking down firefox to create a web kiosk is not an issue yet.

Reply With Quote
  #4  
Old January 3rd, 2006, 10:31 AM
GNUbie's Avatar
GNUbie GNUbie is offline
Throws Rocks
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2002
Location: Cincinnati, Ohio
Posts: 392 GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level)GNUbie User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 6 h 31 m 7 sec
Reputation Power: 11
Code:
ff=`which firefox`
ln -s $ff /etc/init.d/firefox
ln -s /etc/init.d/firefox /etc/rc5.d/S99firefox


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.
Code:
chmod +x /home/balvin/.kde/Autostart/firefox

Reply With Quote
  #5  
Old January 3rd, 2006, 03:29 PM
Ergo12 Ergo12 is offline
Permanently Banned
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2005
Location: trolls only :)
Posts: 172 Ergo12 Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 Day 20 h 5 m 11 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
Check out TDLP

In TDLP thereis a kiosk mode setup.

Reply With Quote
  #6  
Old January 3rd, 2006, 09:10 PM
balvin balvin is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2004
Posts: 100 balvin User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 14 h 28 m 54 sec
Reputation Power: 8
TLDP *


Thanks for the info guys. It has proven to be very usefull.

cheers

Reply With Quote
  #7  
Old January 4th, 2006, 10:14 AM
Ergo12 Ergo12 is offline
Permanently Banned
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Dec 2005
Location: trolls only :)
Posts: 172 Ergo12 Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 Day 20 h 5 m 11 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 0
Thumbs up

Quote:
Originally Posted by balvin
TLDP *

Thanks for the info guys. It has proven to be very usefull.

cheers


Whilst verbal thanks is welcome, reputation points are even better!!

Reply With Quote
  #8  
Old January 4th, 2006, 08:35 PM
Scorpions4ever's Avatar
Scorpions4ever Scorpions4ever is offline
Banned ;)
Dev Shed God 8th Plane (8500 - 8999 posts)
 
Join Date: Nov 2001
Location: Woodland Hills, Los Angeles County, California, USA
Posts: 8,978 Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level)Scorpions4ever User rank is General 39th Grade (Above 100000 Reputation Level) 
Time spent in forums: 1 Month 2 Weeks 6 Days 22 h 11 m 29 sec
Reputation Power: 3561
__________________
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

Reply With Quote
  #9  
Old February 19th, 2006, 05:39 PM
ehartwell ehartwell is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2006
Posts: 1 ehartwell User rank is Just a Lowly Private (1 - 20 Reputation Level) 
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?

Reply With Quote
  #10  
Old July 4th, 2008, 12:49 PM
baloon baloon is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2007
Posts: 23 baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level) 
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

Reply With Quote
  #11  
Old July 6th, 2008, 04:25 AM
baloon baloon is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2007
Posts: 23 baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level)baloon User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 6 h 54 m 26 sec
Reputation Power: 0
Wink

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 ..

Reply With Quote
Reply

Viewing: Dev Shed ForumsOperating SystemsLinux Help > Launch Firefox on Boot


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.

© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 6 - Follow our Sitemap