![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Debian Debian GNU/Linux is a free distribution of the GNU/Linux operating system. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| running localhost:8080 on firefox gives error . | madhumathikv | Shell Programming and Scripting | 2 | 08-08-2009 01:51 AM |
| error running sqlplus from shell file | mmunir | Shell Programming and Scripting | 3 | 02-06-2009 04:52 AM |
| Firefox 3.03 posting a newthread.php error | metallica1973 | Post Here to Contact Site Administrators and Moderators | 11 | 11-12-2008 03:54 AM |
| Error while running C++ make file | hram | High Level Programming | 1 | 10-18-2007 07:28 PM |
| Running Applications on my desktop?..... | adamcb | OS X (Apple) | 8 | 02-01-2004 05:28 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
|||||
|
the reason why your firefox doesn't start up is because you created the wrong symlink. you created a symlink to /usr/lib/firefox/firefox (which most likely does not exist) in the directory /usr/bin/firefox (the directory where you installed firefox). you need to check the /usr/bin/ directory for the symlink you created before. if you do a ls command in that folder, you should get something like: Code:
lrwxrwxrwx 1 foo foo 4 2003-02-07 16:49 firefox -> /usr/bin/firefox that should be the old symlink, which is not really of any use. what you need to do is remove the old symlink (verify that what you are about to delete is a symlink and not the actual application): Code:
rm /usr/bin/firefox you then can create the correct symlink: Code:
ln -s /usr/bin/firefox/firefox /usr/local/bin/firefox after this your shortcut should launch firefox without any problems. |
|
||||
|
The fault was found.
I wrongly forgot the line "Exec=firefox" in the firefox.desktop file. The symlink is correct since I downloaded and installed the Firefox under /usr/lib/firefox/ according to the orders I read somewhere. Also I can activate the Firefox anywhere in the directory tree. :-) Thank you very much Leppie, without you nothing would have been solved. |
|
|||||
|
you're welcome
![]() well, we all learn (at least, most of us do) from our mistakes. there's plenty to study and learn in Debian. why did you not use apt-get to install firefox? that's the Debian-way and much easier for newbies and it would've taken care of the main menu shortcut missing issue. about that, what desktop environment are you using? |
|
|||||
|
to add firefox to your menu:
- right click your applications menu and hit “Edit Menus” - select the "Internet" section - check the Firefox entry, otherwise click "New Item" and use "application" for "Type", "Firefox" for "Name", "firefox" for "Command" and "Web browser" for "Comment" then click ok. - close the menu editor and check that the new firefox shortcut is under the "Internet" section |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|