python probelm


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting python probelm
# 1  
Old 02-22-2008
python probelm

Colleagues
when i types python in console my system shows following error message
python: error while loading shared libraries: /usr/lib/libdb.so.3: ELF file OS ABI invalid
Any solution.
My machine is Fedora Core 6

jaganadh
# 2  
Old 02-22-2008
what do these command give as output:
Code:
/usr/bin/file /usr/lib/libdb.so.3
ls -l  /usr/lib/libdb.so.3

# 3  
Old 02-22-2008
-rwxr-xr-x 1 root root 274556 2008-02-22 20:01 /usr/lib/libdb.so.3
# 4  
Old 02-22-2008
]# file /usr/lib/libdb.so.3
/usr/lib/libdb.so.3: ELF 32-bit LSB shared object, ARM, version 1, stripped
# 5  
Old 02-22-2008
It looks like somebody just installed or touched libdb.

If you are on a 32 bit ARM box: you need to reinstall whatever updated libdb - it was changed today - 22 February. It looks like it is corrupted.

If you are not on a 32 bit ARM box, you have the wrong version of libdb.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Programming

Create a C source and compile inside Python 1.4.0 to 3.7.0 in Python for ALL? platforms...

Hi all... As you know I like making code backwards compatible for as many platforms as possible. This Python script was in fact dedicated for the AMIGA A1200 using Pythons 1.4.0, 1.5.2, 1.6.0, 2.0.1, and 2.4.6 as that is all we have for varying levels of upgrades from a HDD and 4MB FastRam... (1 Reply)
Discussion started by: wisecracker
1 Replies

2. Windows & DOS: Issues & Discussions

How to execute python script on remote with python way..?

Hi all, I am trying to run below python code for connecting remote windows machine from unix to run an python file exist on that remote windows machine.. Below is the code I am trying: #!/usr/bin/env python import wmi c = wmi.WMI("xxxxx", user="xxxx", password="xxxxxxx")... (1 Reply)
Discussion started by: onenessboy
1 Replies

3. Shell Programming and Scripting

**python** unable to read the background color in python

I am working on requirement on spreadsheet in python scripting. I have a spreadsheet containing cell values and with background color. I am able to read the value value but unable to get the background color of that particular cell. Actually my requirement is to read the cell value along... (1 Reply)
Discussion started by: giridhar276
1 Replies

4. SuSE

"ssh suse-server 'python -V' > python-version.out" not redirecting

Okay, so I have had this problem on openSUSE, and Debian systems now and I am hoping for a little help. I think it has something to do with Python but I couldn't find a proper Python area here. I am trying to redirect the output of "ssh suse-server 'python -V'" to a file. It seems that no matter... (3 Replies)
Discussion started by: Druonysus
3 Replies

5. Shell Programming and Scripting

Probelm setting a variable to $* in C Shell

Trying to put all command line arguments to the script in a variable msgst01 $* does not seem to work set msgst01 = $* (2 Replies)
Discussion started by: kristinu
2 Replies

6. Programming

Python: bash-shell-like less functionality in the python shell

Hello, Is there some type of functional way to read things in the Python shell interpreter similar to less or more in the bash (and other) command line shells? Example: >>> import subprocess >>> help(subprocess) ... ... I'm hoping so as I hate scrolling and love how less works with... (0 Replies)
Discussion started by: Narnie
0 Replies

7. Shell Programming and Scripting

for loop probelm

for index in `find /technologies -name *.jar | grep "/lib"`; do echo "$index"; done sometimes its throwing error saying find: paths must precede expression Usage: find but i execute same in cmd prompt its working (1 Reply)
Discussion started by: crackthehit007
1 Replies

8. Programming

probelm with purify

Hi, I am using purify to find memory leak in my process. When I run the instrumented program I get error I donot have this file in the specified directory. Instead I have following files in the directory /usr/lib/nls/loc/locales.2 What should I do in such case? I undersatnd... (1 Reply)
Discussion started by: shriashishpatil
1 Replies

9. UNIX for Dummies Questions & Answers

back up probelm

Hi I am using tar utility to take back up on HPUx and SUN 5.8 servers yesterday i made some change.....in the cronjob 29 23 * * 1,3,5 echo "`date` COMPLETE BACKUP TAR `uname``hostname`">/dev/rmt/0myn 30 23 * * 1,3,5 tar cvf /dev/rmt/0mny <filesystems> i am confused with the no rewind... (2 Replies)
Discussion started by: Prafulla
2 Replies
Login or Register to Ask a Question