LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat
User Name
Password
Red Hat This forum is for the discussion of Red Hat Linux.

Notices


Reply
  Search this Thread
Old 11-11-2007, 04:45 PM   #1
marty2007
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Rep: Reputation: 0
Fedora 6 problem running RH7 software


Hi,

I installed Fedora 6 and trying to install an old program that runs with Redhat 7.3 (this program runs also in Fedora 3 when compat.rpm is installed).
During installation of the program I get error:

"....symbol errno, version GLIBC_2.0 not defined in file libc.so.6 with link time reference"


Could you please let me know how to fix this? I am not expert on linux :-)

Thanks
 
Old 11-11-2007, 05:05 PM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Here's some simple explanation and useful steps to try: How to Run Binary-Only Application Packages on Various Versions of Linux. If that doesn't work at least tell us which application and version this is about and any other relevant details. The more details the better a chance you have of getting this solved.
 
Old 11-12-2007, 02:16 AM   #3
Valery Reznic
ELF Statifier author
 
Registered: Oct 2007
Posts: 676

Rep: Reputation: 137Reputation: 137
You can try to use Ermine (http://magicErmine.com) or statifier (http://statifier.sf.net) to create self-contained executable

Valery.
 
Old 11-12-2007, 02:36 PM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Not that often on sees the developer pitch his goods ;-p

Thanks for providing noexec and rpmrebuild BTW, been using them both.
 
Old 11-13-2007, 01:03 AM   #5
Valery Reznic
ELF Statifier author
 
Registered: Oct 2007
Posts: 676

Rep: Reputation: 137Reputation: 137
Quote:
Originally Posted by unSpawn View Post
Not that often on sees the developer pitch his goods ;-p

Thanks for providing noexec and rpmrebuild BTW, been using them both.
rpmrebuild is Eric Gerbier's in the first place.
I admit did some work on it, but rpmrebuild is his.

By the way what are you using noexec for ?

I wrote it when I have nothing else to do.
After that I suggest to sudo maintener to implement it with sudo
(noexec primary usage), and he did it ages ago.
So now sudo has built-in noexec functionality and (mostly) make noexec unnessesary.

Valery.
 
Old 11-13-2007, 01:48 PM   #6
marty2007
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Valery Reznic View Post
You can try to use Ermine (http://magicErmine.com) or statifier (http://statifier.sf.net) to create self-contained executable

Valery.
Thanks Valery. I went through both sites. The program I like to install creates a directory with many files under it. What happens to these files do they go along with the self-contained executable? Is there a document explainng what exactly to do, I am not an expert in Linux :-). If I have the whole program in RH7.3 under one directory(many of them not executable) can I make it self contained and transfer it to FD6 by those software? how much is staifier? Thanks

Marty
 
Old 11-13-2007, 03:51 PM   #7
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by Valery Reznic View Post
By the way what are you using noexec for ?
I did for just that: running a binary w/o allowing a subshell. I used to pitch it too.
REM Now I'll stop being OT in this thread...
 
Old 11-14-2007, 01:24 AM   #8
Valery Reznic
ELF Statifier author
 
Registered: Oct 2007
Posts: 676

Rep: Reputation: 137Reputation: 137
Quote:
Originally Posted by marty2007 View Post
Thanks Valery. I went through both sites. The program I like to install creates a directory with many files under it. What happens to these files do they go along with the self-contained executable? Is there a document explainng what exactly to do, I am not an expert in Linux :-). If I have the whole program in RH7.3 under one directory(many of them not executable) can I make it self contained and transfer it to FD6 by those software? how much is staifier? Thanks

Marty
What do you mean "The program I like to install creates a directory with many files under it" ?
Does your program NEED this directory (and files in it) or it really CREATE them when running ?

If you mean last, than you have nothing to worry about.
If (as i guess) you mean first, than you can use ErminePro like following:
1) create config file with following line:
path_to_dir_with_files_for_your_program internal
2) run ermine as
ErminePro --config=<your_config_file> <your_program> -o your_program.ermine

Valery.
 
Old 11-23-2007, 01:41 PM   #9
marty2007
LQ Newbie
 
Registered: Nov 2007
Posts: 5

Original Poster
Rep: Reputation: 0
Quote:
Originally Posted by Valery Reznic View Post
What do you mean "The program I like to install creates a directory with many files under it" ?
Does your program NEED this directory (and files in it) or it really CREATE them when running ?

If you mean last, than you have nothing to worry about.
If (as i guess) you mean first, than you can use ErminePro like following:
1) create config file with following line:
path_to_dir_with_files_for_your_program internal
2) run ermine as
ErminePro --config=<your_config_file> <your_program> -o your_program.ermine

Valery.
Thanks for reply, have'nt got the chance to try. Another question:
My program seems to have many executables and other files all within a dir in Fedora 3. So the software ErminePro could convert everything and create a replica of the dir in Fedora 6 ? Is there a detailed manual to how to work with ErminPro as I am a novice with linux?
Thanks,
 
Old 11-24-2007, 02:12 AM   #10
Valery Reznic
ELF Statifier author
 
Registered: Oct 2007
Posts: 676

Rep: Reputation: 137Reputation: 137
Quote:
Originally Posted by marty2007 View Post
Thanks for reply, have'nt got the chance to try. Another question:
My program seems to have many executables and other files all within a dir in Fedora 3. So the software ErminePro could convert everything and create a replica of the dir in Fedora 6 ? Is there a detailed manual to how to work with ErminPro as I am a novice with linux?
Thanks,
Al documentation is embedded in Ermine.
'ErmienPro --help' should help you.

Vaqlery.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem running old software under .bashrc wollery Linux - Enterprise 3 12-15-2006 09:44 AM
Problem running software!! nectron101 Linux - Software 2 04-09-2006 04:12 PM
How to edit my BIOS??? Running XP and RH7.2 cwp79 Linux - General 10 02-19-2002 12:05 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Red Hat

All times are GMT -5. The time now is 02:19 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration