Results 1 to 7 of 7
need help installing firefox. i ran firefox-installer and it just installed firefox into its own directory. where am i suposed to put each files and how do i get a ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-12-2005 #1Linux Newbie
- Join Date
- Jan 2005
- Posts
- 104
help installing firefox
need help installing firefox. i ran firefox-installer and it just installed firefox into its own directory. where am i suposed to put each files and how do i get a link from the start menu (KDE).
- 02-12-2005 #2Linux Newbie
- Join Date
- Oct 2004
- Location
- de
- Posts
- 103
There's a special folder for precompiled things like Firefox. Just copy the firefox folder to /opt - You need to be root to do that. (Try the 'su' command in the terminal.)
In KDE, you have to use the menu editor (Right click on the menu, then 'menu editor', but I'm not too sure about that.). Create a new link, name it Firefox, and let the path be /opt/firefox/firefox
If the starter doesn't work, set the executable bit in the properties of the file /opt/firefox/firefox.
Good luck!
--LC
- 02-16-2005 #3Just Joined!
- Join Date
- Aug 2004
- Location
- UK
- Posts
- 79
Viper assuming that you've now installed Firefox, to get it on your start (or 'launch') menu in KDE varies a little with the distro but basically it's similar to this approach that I use with Mandrake 10:
In the 'Start' menu (or KDE or Launch menu however you feel comfortable thinking of it) select as follows:
System/Configuration/KDE/LookNFeel/Panels/Menus/Edit K menu (in MD10 MenuDrake now opens)/ add application. The rest is straightforward.
By way of illustration in Xandros there is actually in Panels a button called 'Edit Launch Menu', or maybe just 'Launch Menu'.
You can add an icon if you want. For example in MD10 just click on the icon shown in when in the edit K menu section to begin the process.
In one sense, it doesn't matter very much where your firefox is installed: what matters is that you and your PC know where it is so that you can easily start it.
- 02-16-2005 #4Just Joined!
- Join Date
- Feb 2005
- Posts
- 16
when i download a tar file, is it best to install it in the /opt folder? Ive been installing in the /usr/local/src folder and that gets anoying typing you that directory.
- 02-17-2005 #5Linux Newbie
- Join Date
- Oct 2004
- Location
- de
- Posts
- 103
When you download a program's sourcecode, untar it into the /usr/src directory and install the program into the /usr or /usr/local directory tree. You can do this by typing
instead of justCode:./configure --prefix=/usr
You can remove the sourcecode from the /usr/src directory after the installation.Code:./configure
It is a good idea to create the directory /usr/src/packages and to place the compressed sourcecode packages in there, its easy to find the packages then.
In the case of Firefox, you most likely have downloaded a file containing precompiled binaries. Since you don't compile them yourself, you should place the program in the /opt directory tree.
For the typing thing, if you use a recent version of bash, you have a nice autocompletion system with the tab key. For example, type inand press tab, it will complete it to /usr.Code:/u
--LC
- 02-18-2005 #6Just Joined!
- Join Date
- Feb 2005
- Posts
- 16
do you install it in /usr or /usr local for convinence
or are there permissions or something you have to worry about finding that file?
- 02-18-2005 #7Linux Newbie
- Join Date
- Oct 2004
- Location
- de
- Posts
- 103
On 'normal' machines, it doesn't matter if a program is installed in /usr or int /usr/local. I prefer /usr.
The two directories do indeed have a different purpose, documented in the Filesystem Hierarchy Standard:
Originally Posted by Filesystem Hierarchy Standard For example, if you have a company with one server and some clients, the server can provide the /usr directory for all clients via network. This way, the clients can have smaller (=cheaper) harddisks, because their /usr directory is 'linked' to that one on the server. It also makes the maintenance of installed software more comfortable.
Originally Posted by Filesystem Hierarchy Standard
If you have some client-specific software, you can install it in the local directory /usr/local. In contrast to software installed in the above way, the software would not be available on the other clients.
Since a normal desktop doesn't store its files on a server, both /usr and /usr/local directories are local.
The permissions of the Firefox dir should be that all users on the machine can enter and read it, for example rwxr-xr-x.
--LC


Reply With Quote
