Install Firefox 57 on CentOS 6.5

The name of the pictureThe name of the pictureThe name of the pictureClash 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 ?







share|improve this question






















  • check the Firefox 57.0.4 System Requirements
    – GAD3R
    Jan 15 at 8:14














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 ?







share|improve this question






















  • check the Firefox 57.0.4 System Requirements
    – GAD3R
    Jan 15 at 8:14












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 ?







share|improve this question














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 ?









share|improve this question













share|improve this question




share|improve this question








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
















  • 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










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.






share|improve this answer




















  • 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










Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: false,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















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






























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.






share|improve this answer




















  • 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














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.






share|improve this answer




















  • 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












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.






share|improve this answer












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.







share|improve this answer












share|improve this answer



share|improve this answer










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
















  • 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












 

draft saved


draft discarded


























 


draft saved


draft discarded














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













































































Popular posts from this blog

How to check contact read email or not when send email to Individual?

Bahrain

Postfix configuration issue with fips on centos 7; mailgun relay