Install Firefox 57 on CentOS 6.5
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
I did the following steps to install Firefox 57 on CentOS 6.5 :
1) wget http://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
2) tar xvjf firefox-57.0.tar.bz2
3) sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
4) firefox
I get the following Error:
libgtk-3.so.0: cannot open shared object file: No such file or directory Couldn't load XPCOM.
Is it possible to install Firefox 57 on CENTOS 6.5 ?
centos software-installation firefox gtk3 gtk2
add a comment |Â
up vote
1
down vote
favorite
I did the following steps to install Firefox 57 on CentOS 6.5 :
1) wget http://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
2) tar xvjf firefox-57.0.tar.bz2
3) sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
4) firefox
I get the following Error:
libgtk-3.so.0: cannot open shared object file: No such file or directory Couldn't load XPCOM.
Is it possible to install Firefox 57 on CENTOS 6.5 ?
centos software-installation firefox gtk3 gtk2
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I did the following steps to install Firefox 57 on CentOS 6.5 :
1) wget http://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
2) tar xvjf firefox-57.0.tar.bz2
3) sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
4) firefox
I get the following Error:
libgtk-3.so.0: cannot open shared object file: No such file or directory Couldn't load XPCOM.
Is it possible to install Firefox 57 on CENTOS 6.5 ?
centos software-installation firefox gtk3 gtk2
I did the following steps to install Firefox 57 on CentOS 6.5 :
1) wget http://ftp.mozilla.org/pub/firefox/releases/57.0/linux-x86_64/en-US/firefox-57.0.tar.bz2
2) tar xvjf firefox-57.0.tar.bz2
3) sudo ln -s /usr/local/firefox/firefox /usr/bin/firefox
4) firefox
I get the following Error:
libgtk-3.so.0: cannot open shared object file: No such file or directory Couldn't load XPCOM.
Is it possible to install Firefox 57 on CENTOS 6.5 ?
centos software-installation firefox gtk3 gtk2
edited Jan 15 at 10:52
Jeff Schaller
31.8k848109
31.8k848109
asked Jan 15 at 6:24
Anu Chawla
63
63
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14
add a comment |Â
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
To handle this kind of error in general, you need to search the database for the missing file. To begin with, you need to update the database by
sudo yum makecache
After that you can search for the target file
yum provides "*/libgtk-3.so.0"
You will find that you need a package named gtk3
, now install it
sudo yum install gtk3
Now you should have the libgtk-3.so.0
file located in /usr/lib64
.
There are rare cases that a shared object file is not installed to the default location and you need to manually tell the system where to find it. You can achieve this by setting the LD_LIBRARY_PATH
variable.
export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH
Although in this case, this step is completely unnecessary because /usr/lib64
is one of the default locations to search for shared object files.
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
To handle this kind of error in general, you need to search the database for the missing file. To begin with, you need to update the database by
sudo yum makecache
After that you can search for the target file
yum provides "*/libgtk-3.so.0"
You will find that you need a package named gtk3
, now install it
sudo yum install gtk3
Now you should have the libgtk-3.so.0
file located in /usr/lib64
.
There are rare cases that a shared object file is not installed to the default location and you need to manually tell the system where to find it. You can achieve this by setting the LD_LIBRARY_PATH
variable.
export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH
Although in this case, this step is completely unnecessary because /usr/lib64
is one of the default locations to search for shared object files.
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
add a comment |Â
up vote
1
down vote
To handle this kind of error in general, you need to search the database for the missing file. To begin with, you need to update the database by
sudo yum makecache
After that you can search for the target file
yum provides "*/libgtk-3.so.0"
You will find that you need a package named gtk3
, now install it
sudo yum install gtk3
Now you should have the libgtk-3.so.0
file located in /usr/lib64
.
There are rare cases that a shared object file is not installed to the default location and you need to manually tell the system where to find it. You can achieve this by setting the LD_LIBRARY_PATH
variable.
export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH
Although in this case, this step is completely unnecessary because /usr/lib64
is one of the default locations to search for shared object files.
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
add a comment |Â
up vote
1
down vote
up vote
1
down vote
To handle this kind of error in general, you need to search the database for the missing file. To begin with, you need to update the database by
sudo yum makecache
After that you can search for the target file
yum provides "*/libgtk-3.so.0"
You will find that you need a package named gtk3
, now install it
sudo yum install gtk3
Now you should have the libgtk-3.so.0
file located in /usr/lib64
.
There are rare cases that a shared object file is not installed to the default location and you need to manually tell the system where to find it. You can achieve this by setting the LD_LIBRARY_PATH
variable.
export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH
Although in this case, this step is completely unnecessary because /usr/lib64
is one of the default locations to search for shared object files.
To handle this kind of error in general, you need to search the database for the missing file. To begin with, you need to update the database by
sudo yum makecache
After that you can search for the target file
yum provides "*/libgtk-3.so.0"
You will find that you need a package named gtk3
, now install it
sudo yum install gtk3
Now you should have the libgtk-3.so.0
file located in /usr/lib64
.
There are rare cases that a shared object file is not installed to the default location and you need to manually tell the system where to find it. You can achieve this by setting the LD_LIBRARY_PATH
variable.
export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH
Although in this case, this step is completely unnecessary because /usr/lib64
is one of the default locations to search for shared object files.
answered Jan 15 at 7:24
Weijun Zhou
1,434119
1,434119
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
add a comment |Â
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
But It is mentioned here ( centos.org/forums/viewtopic.php?t=50463) that it is not possible to install gtk3 on CentOS 6.5.
â Anu Chawla
Jan 15 at 7:40
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
The thread does not explain why it is impossible, and yes I admit that I am using CentOS 7. If the above method really doesn't work for you. You can either add custom repo, download rpm from rpm-hosting sites and manually installing them, or compile from source.
â Weijun Zhou
Jan 15 at 7:46
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f417166%2finstall-firefox-57-on-centos-6-5%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
check the Firefox 57.0.4 System Requirements
â GAD3R
Jan 15 at 8:14