Error while loading shared libraries: libdb_cxx-4.8.so
up vote
0
down vote
favorite
I'm trying to execute a program but got the error
error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory
Is there a way to find out how to fix it?
Thank you!
libraries
add a comment |Â
up vote
0
down vote
favorite
I'm trying to execute a program but got the error
error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory
Is there a way to find out how to fix it?
Thank you!
libraries
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to execute a program but got the error
error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory
Is there a way to find out how to fix it?
Thank you!
libraries
I'm trying to execute a program but got the error
error while loading shared libraries: libdb_cxx-4.8.so: cannot open shared object file: No such file or directory
Is there a way to find out how to fix it?
Thank you!
libraries
libraries
edited Feb 1 at 19:08
davidbaumann
1,4361826
1,4361826
asked Feb 1 at 18:53
The_Immortal
112
112
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57
add a comment |Â
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
you may want to try and locate it first
find ~ / -name *libdb*
ldconfig creates the necessary links and cache to the most recent
shared libraries found in the directories specified on the command
line, in the file /etc/ld.so.conf
apt-cache search libdb
apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
LD_LIBRARY_PATH is the predefined environmental variable in Linux/Unix which sets the path which the linker should look in to while linking dynamic libraries/shared libraries.
export LD_LIBRARY_PATH="/list/of/library/path"
The LD_PRELOAD allow an extra library not specified in the executable to be loaded:
export LD_PRELOAD="/list/of/library/path"
ldd checks the (so) shared library files for any missing dependencies
ldd /usr/lib/x86_64-linux-gnu/libdb-5.3.so
if you're installing it with a package use:
./configure --prefix=/usr/local --enable-cxx
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
you may want to try and locate it first
find ~ / -name *libdb*
ldconfig creates the necessary links and cache to the most recent
shared libraries found in the directories specified on the command
line, in the file /etc/ld.so.conf
apt-cache search libdb
apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
LD_LIBRARY_PATH is the predefined environmental variable in Linux/Unix which sets the path which the linker should look in to while linking dynamic libraries/shared libraries.
export LD_LIBRARY_PATH="/list/of/library/path"
The LD_PRELOAD allow an extra library not specified in the executable to be loaded:
export LD_PRELOAD="/list/of/library/path"
ldd checks the (so) shared library files for any missing dependencies
ldd /usr/lib/x86_64-linux-gnu/libdb-5.3.so
if you're installing it with a package use:
./configure --prefix=/usr/local --enable-cxx
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
add a comment |Â
up vote
0
down vote
you may want to try and locate it first
find ~ / -name *libdb*
ldconfig creates the necessary links and cache to the most recent
shared libraries found in the directories specified on the command
line, in the file /etc/ld.so.conf
apt-cache search libdb
apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
LD_LIBRARY_PATH is the predefined environmental variable in Linux/Unix which sets the path which the linker should look in to while linking dynamic libraries/shared libraries.
export LD_LIBRARY_PATH="/list/of/library/path"
The LD_PRELOAD allow an extra library not specified in the executable to be loaded:
export LD_PRELOAD="/list/of/library/path"
ldd checks the (so) shared library files for any missing dependencies
ldd /usr/lib/x86_64-linux-gnu/libdb-5.3.so
if you're installing it with a package use:
./configure --prefix=/usr/local --enable-cxx
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
add a comment |Â
up vote
0
down vote
up vote
0
down vote
you may want to try and locate it first
find ~ / -name *libdb*
ldconfig creates the necessary links and cache to the most recent
shared libraries found in the directories specified on the command
line, in the file /etc/ld.so.conf
apt-cache search libdb
apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
LD_LIBRARY_PATH is the predefined environmental variable in Linux/Unix which sets the path which the linker should look in to while linking dynamic libraries/shared libraries.
export LD_LIBRARY_PATH="/list/of/library/path"
The LD_PRELOAD allow an extra library not specified in the executable to be loaded:
export LD_PRELOAD="/list/of/library/path"
ldd checks the (so) shared library files for any missing dependencies
ldd /usr/lib/x86_64-linux-gnu/libdb-5.3.so
if you're installing it with a package use:
./configure --prefix=/usr/local --enable-cxx
you may want to try and locate it first
find ~ / -name *libdb*
ldconfig creates the necessary links and cache to the most recent
shared libraries found in the directories specified on the command
line, in the file /etc/ld.so.conf
apt-cache search libdb
apt-get install libdb5.3++-dev libdb++-dev libdb5.3-dev libdb-dev && ldconfig
LD_LIBRARY_PATH is the predefined environmental variable in Linux/Unix which sets the path which the linker should look in to while linking dynamic libraries/shared libraries.
export LD_LIBRARY_PATH="/list/of/library/path"
The LD_PRELOAD allow an extra library not specified in the executable to be loaded:
export LD_PRELOAD="/list/of/library/path"
ldd checks the (so) shared library files for any missing dependencies
ldd /usr/lib/x86_64-linux-gnu/libdb-5.3.so
if you're installing it with a package use:
./configure --prefix=/usr/local --enable-cxx
edited Feb 1 at 20:00
answered Feb 1 at 19:38
Jojo
105
105
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
add a comment |Â
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
Thank you, man! Unfortunately I'm too low to add a point for you but u really helped me!
â The_Immortal
Feb 2 at 1:24
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
it's my pleasure, you're welcome
â Jojo
Feb 3 at 1:04
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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%2faskubuntu.com%2fquestions%2f1002154%2ferror-while-loading-shared-libraries-libdb-cxx-4-8-so%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
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
Where did you get this program? How did you install it? What version of Ubuntu are you using?
â steeldriver
Feb 1 at 18:57