You are not logged in.
Pages: 1
This is probably a stupid question, but I installed firefox via pacman. Now, how do I run it? Again...sorry for the noobish question.
Offline
If your using Gnome or KDE there will be a launcher under the Internet category. You can also run it from a console with the firefox command.
$ firefox
Offline
*hits forehead
Why didn't I think of that, thanks.
EDIT: When I try to do fbsetbg -f ~picturesLinuxwallpaper.jpg I get an error that says xmessage: command not found in the fbsetbg script line 169.
Offline
EDIT: When I try to do fbsetbg -f ~picturesLinuxwallpaper.jpg I get an error that says xmessage: command not found in the fbsetbg script line 169.
pacman -S xorg-apps
I am a gated community.
Offline
Cirdan wrote:EDIT: When I try to do fbsetbg -f ~picturesLinuxwallpaper.jpg I get an error that says xmessage: command not found in the fbsetbg script line 169.
pacman -S xorg-apps
Thanks. But now it says it can't find a wallpaper setter and wants me to install eterm, so I did. Now Esetroot gives me an error:
Esetroot: error while loading shared libraries: libpcre.so.o: cannot open shared object file: No such file or directory
Offline
Forget eterm - install feh
Offline
or if u want to keep eterm+esetroot , do a "pacman -S pcre"
Offline
[root@justin eqisow]# pacman -S firefox
:: firefox-2.0.0.11-1: local version is up to date. Upgrade anyway? [Y/n]
resolving dependencies... done.
looking for inter-conflicts... done.
Targets: firefox-2.0.0.11-1
Total Package Size: 9.36 MB
Proceed with installation? [Y/n]
checking package integrity... done.
cleaning up... done.
(1/1) checking for file conflicts [#####################] 100%
(1/1) upgrading firefox [#####################] 100%
[root@justin eqisow]# firefox
bash: firefox: command not found
Any ideas? I've tried removing FF before reinstalling as well.
Offline
Do not, I repeat, DO NOT run firefox as root. that's asking for trouble.
If the same persists when running as normal user, it would be helpful to know what the output of
echo $PATH
and
ls /usr/bin/firefox
is.
Guy #1: I'd totally hit that.
Guy #2: Dude, I'd hit that so hard whoever could pull me out would become the King of England.
--College Walk, Columbia University (Overheard in NY)
Offline
Yeah, I know - browser as root is bad. Yes, the same thing does happen as a normal user.
bash-3.2$ echo $PATH
/opt/kde/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/games
bash-3.2$ ls /usr/bin/firefox
ls: cannot access /usr/bin/firefox: No such file or directory
Offline
hey!
Mozilla firefox installs to /opt/mozilla/bin/firefox.
Chances are /opt is not in your paths. Either type out the above, create an icon with the above as the call, or edit your ~.bash_profile to include /opt
Last edited by rdking (2008-01-08 00:28:43)
Offline
You need to log out completely and log back in -- or source /etc/profile... Firefox is installed in /opt so paths need to be updated before running it.
Offline
Would it be OK to do a quick
ln -s /opt/mozilla/bin/firefox /usr/bin/firefox
or is there a reason that this would be inadvisable?
Thanks for the help guys.
Offline
Would it be OK to do a quick
ln -s /opt/mozilla/bin/firefox /usr/bin/firefox
or is there a reason that this would be inadvisable?
Thanks for the help guys.
You can but there is no point since the next time you log in /opt/mozilla/bin is going to be in the path.
Offline
Logging out and back in actually didn't help - but I know where the binary is now so it's all good.
Thanks again all.
Offline
..that's not the way it's supposed to be? Can you give the output of
ls /etc/profile.d
If mozilla-common.sh exists in thet directory it should export /opt/mozilla/bin for you.
If it doesn't exist, maybe someone else can explain why? Just in case, you could give the output of
cat /etc/profile.d/mozilla-common.sh
too
Sakari
Offline
firefox is now in '/usr/bin/firefox'
Norm
Offline
firefox is now in '/usr/bin/firefox'
Not on my system:
filip@ground_control32 ~ $ pacman -Qs firefox
local/firefox 2.0.0.11-1
Standalone web browser from mozilla.org
filip@ground_control32 ~ $ which firefox
/opt/mozilla/bin/firefox
Are you using a custom package or firefox 3 beta?
Offline
Last time I updated FF from the repros pacman put it in /usr same with thunderbird.
glib2.csh jre.sh kde.sh mozilla-common.sh xorg.sh
glib2.sh kde.csh locale.sh qt3.sh
export PATH="${PATH}:/opt/mozilla/bin"
export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/opt/mozilla/lib/pkgconfig"
export MOZ_PLUGIN_PATH="/opt/mozilla/lib/plugins:/usr/lib/mozilla/plugins"
I'm running testing. When I updated and tried to run FF couldn't find it in opt. I searched ans found it in /usr
Norm
Offline
Pages: 1