Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
08-05-2004, 10:23 AM
|
#1
|
Member
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458
Rep:
|
Fire fox
Wehn I try to launch firefox web browser I get this message that the user with the profile that has been selected is already logged on. I am not already logged on how can I gtet rid of this messsage?
http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ
Last edited by paul62; 12-04-2005 at 11:27 PM.
|
|
|
08-05-2004, 10:26 AM
|
#2
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
this message should only appear if you already have a firefox window open when you try to launch it... can you confirm this??
|
|
|
08-05-2004, 10:27 AM
|
#3
|
LQ Guru
Registered: Aug 2003
Location: Sydney, Australia
Distribution: Gentoo
Posts: 1,796
Rep:
|
If there isn't another firefox window open then deleting your profile (~/.pheonix) should help, make sure backup your bookmarks etc first. There's probably a better way to get rid of the "lock" file, try the search function, check Firefox/Mozilla FAQs.
|
|
|
08-05-2004, 10:29 AM
|
#4
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
if you wanna be able to open firefox even when you already have a window open, use a script like this:
Code:
#!/bin/sh
mozilla-firefox -remote "ping()" &> /dev/null
if [ $? == "0" ]; then
exec mozilla-firefox -remote "openURL(about:blank,new-window)" &
else
exec mozilla-firefox &
fi
Last edited by win32sux; 08-05-2004 at 12:13 PM.
|
|
|
08-06-2004, 01:05 PM
|
#5
|
Member
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458
Original Poster
Rep:
|
firefox
I did the `/.phoenix command and I also went into the profile manager and deleted my profiles and created a new one, and I still get the message cannot use this profile while it is already in use, and firefox will not start. Is there any altenative rto reinstalling the program and what would the command be to remove all of the files and start over again?
http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ
Last edited by paul62; 12-04-2005 at 11:27 PM.
|
|
|
08-06-2004, 01:34 PM
|
#6
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
it's normal for firefox to do that... did you try the script i posted???
~/.pheonix isn't a command, it's a hidden directory in your home folder... the "~/" means "your home folder" and the dot before "pheonix" means it's hidden... so to erase your .pheonix diectory, you use:
rm -fr .pheonix
if you were currently in your home directory, or:
rm -fr ~/.pheonix
no matter where you are...
but if you just want to be able to open all the firefox windows you want by clicking the shortcut when there's already one window open, don't do that, it won't help... only do that if you're having issues opening the FIRST window...
if your issue is with the windows after the first one, use the script above... if you need help on how to do that, just ask...
Last edited by win32sux; 08-06-2004 at 01:36 PM.
|
|
|
08-07-2004, 07:54 PM
|
#7
|
Member
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458
Original Poster
Rep:
|
I realized what was really happening ios that when I minimized the windows they would disappear completly from the desktop, not show up on the taskbar, how could I( correct this?
http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ
Last edited by paul62; 12-04-2005 at 11:27 PM.
|
|
|
08-07-2004, 09:22 PM
|
#8
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
Quote:
Originally posted by paul62
I realized what was really happening ios that when I minimized the windows they would disappear completly from the desktop, not show up on the taskbar, how could I( correct this?
|
i think it depends on what window manager you are using... wait, does it happen with all windows of any program or just firefox???
|
|
|
08-07-2004, 09:54 PM
|
#9
|
Member
Registered: Mar 2004
Location: glenview illinois
Distribution: fedora core 7
Posts: 458
Original Poster
Rep:
|
firefox
I just checked and now it seems to be happening to all programs. and also I am a bit of a novice but what file do I add that script to?
http://www.blingo.com/friends?ref=gR...2vQvIfp2X-9TEQ
Last edited by paul62; 12-04-2005 at 11:28 PM.
|
|
|
08-07-2004, 10:10 PM
|
#10
|
LQ Guru
Registered: Jul 2003
Location: Los Angeles
Distribution: Ubuntu
Posts: 9,870
|
just put the text into into a text file with whatever name you want, make it executable, and then you can run the script from the shell or from an icon... for example, if you called it "mozilla-launcher.sh" (the ".sh" is a common choice for shell scripts):
chmod a+x mozilla-launcher.sh
./mozilla-launcher.sh
to run it from an icon just specify the whole path in the "command" box:
/home/example/mozilla-launcher.sh
Last edited by win32sux; 08-07-2004 at 10:12 PM.
|
|
|
All times are GMT -5. The time now is 01:04 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|