LinuxQuestions.org
Help answer threads with 0 replies.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-11-2005, 09:30 PM   #1
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Rep: Reputation: 15
wine problems


I just configured wine with a setup script from a site called sidenet, as this was suggested by a user in another thread. When I attempt to run the installer for photoshop 7 the terminal says:

/usr/bin/wineserver: relocation error: /usr/bin/wineserver: symbol epoll_create, version GLIBC_2.3.2 not defined in file libc.so.6 with link time reference

Part of the problem may be that I pointed the setup script to /usr/bin. What I really wanted was /usr/lib, which is where the wine package installed.

I attempted to run the photoshop installer with the command:
wine /mnt/cdrom/Photo shop 7/Photoshop/setup.exe.
This is definately the right path.
 
Old 01-12-2005, 01:35 PM   #3
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
wine problems

I just followed that first link. The thread starter was describing a problem after he installed from an RPM and it was suggested that he try installing from source
 
Old 01-12-2005, 09:12 PM   #4
papineau
LQ Newbie
 
Registered: Jan 2005
Posts: 1

Rep: Reputation: 0
RH9 Wine epoll glibc problem solution

Update your glibc to 2.3.2-27.9.7 (last errata one RedHat provided before discontinuing support for RH9).
Actually, update your complete distribution and keep it up to date, else you're just begging to be rooted (and RH9's support is terminated, so please install Fedora Core 3 for new installations instead of RH9).

The 20050111 Wine rpm for RH9 include an explicit dependancy on glibc >= 2.3.2-27.9.7, so it should be more explicit in the future what's the problem.
 
Old 01-12-2005, 10:26 PM   #5
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
glibc and wine 2005

Sorry but I'm unfamiliar with glibc. What is it and where do I get it from?

Also, I downloaded my wine 20041201 from winehq about 5 days ago and there was not a 2005 wine designed for my system
 
Old 01-13-2005, 09:28 AM   #6
hywaydave
Member
 
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31

Rep: Reputation: 15
I had the same problem too with that RPM (20041201-1rh9winehq.i386.rpm) on my RH9. I wouldn't update your glibc as that may pose some other problems with other programs. My suggestion would be to install a previous version. I have just installed 20041019-1rh9winehq.i386.rpm and it worked fine with no problems. You can download is from here:

ftp://rpmfind.net/linux/sourceforge/...inehq.i386.rpm
 
Old 01-13-2005, 10:08 AM   #7
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
thanks dave. I tried for an hour or two to uninstall wine, but i couldn't figure it out.
Some sites said "wine -r make uninstall" or something similar.
 
Old 01-13-2005, 10:50 AM   #8
hywaydave
Member
 
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31

Rep: Reputation: 15
Are you trying to uninstall a wine RPM?
 
Old 01-13-2005, 12:03 PM   #9
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
I'm a little hazy on that. The link I followed to download from winehq.com said "binary and source .rpms for RedHat...". The package installed itself automatically when I clicked on it.
 
Old 01-13-2005, 02:39 PM   #10
hywaydave
Member
 
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31

Rep: Reputation: 15
Well, I'm currently not at home in front of my linux box... but I believe if you typed this command:

rpm -qa | grep wine*

It will list the wine package that you have installed, then you can type this command to uninstall it:

rpm -e <wine package name>

Then you should be able to install the version I mentioned to you in the earlier post.
 
Old 01-13-2005, 06:30 PM   #11
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
thanks fro your help. I'll try that a little later when I reboot my pc into LInux. Right now I need my windows apps. One more newbie question: how do I get the vertical line? |
 
Old 01-14-2005, 02:05 AM   #12
Rick485
Member
 
Registered: Sep 2003
Location: Arizona
Distribution: Kubuntu 8.04
Posts: 202

Rep: Reputation: 30
The "|" is called the "pipe" and on my computer it is just above the "\"on the same key. Unfortunately, not all keyboards put the "|" in the same place. On my keyboard it looks like two short little vertical pipes one above the other. The "|" is used to redirect the output of one command into another command. In the example that hywaydave gave he is sending the output of the rpm command into the grep command. The grep command will then search for any lines in the output from the rpm command that have the word "wine" in them and only display those lines.

The rpm command is what is Red Hat and Fedora Core and some other versions of Linux usually use to install software which orignally came in the form of an rpm package . The "-qa" parameter after the rpm command tells the rpm command to "query" "all" of the package names which have been installed on the computer. Presumably, wine was one of the rpm packages that had been been installed. Hywaydave is having you use grep so that you will not have to look at too much output about every package ever installed, it will only display the lines that mention "wine." That output should give you the exact name of the original rpm installation file. You you will need to know its name to remove wine. I use Slackware which normally does not use rpm files but I believe the "-e" parameter stands for "erase" to remove an rpm package.

Wine or any other program can be installed either from a precompiled binary RPM package or it can be compiled from source code which can come in the form of an RPM source file or some other format such as a tar file or as a compressed tar file. Both forms have been mentioned in this discussion, so I wanted to make sure that you knew that there is a difference.

Last edited by Rick485; 01-14-2005 at 03:28 AM.
 
Old 01-14-2005, 10:05 AM   #13
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
wow, you learn something every day. My "pipe" is in the same place. With all this information I should be able to get going as soon as I'm back home on my linux pc.
Once again thanks to all who helped me
 
Old 01-14-2005, 07:55 PM   #14
trempel
Member
 
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131

Original Poster
Rep: Reputation: 15
Nice. Those commands that hywaydave mentioned worked great. I'm now ready to install a new wine RPM.

Rick485- thanks fro clearing that up. I was uncertain about rpm/source.

hywaydave-
Quote:
ftp://rpmfind.net/linux/sourceforge...winehq.i386.rpm
When I downloaded my 20041201 RPM the downloads were arranged by architecture. Options werer:
i686
i386
athlon
development package
source

I'm a little hazy on the difference between those top 3 (i686,i386,athlon) but since my PC rund on AMD athlon XP I went for the athlon version. Is that the right thing to do?

I used a downloaded setup script to configure my wine. It created the fake C:/ drive, the config file, etc.. in my home directory. Should I need to do anything with those dettings. I don't recall having to enter whet RPM I was using.
 
Old 01-16-2005, 08:55 AM   #15
mhearn
LQ Guru
 
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565

Rep: Reputation: 57
For those experiencing these problems you need to run the up2date program (or use Fedora Core 3 instead of the quite old RH9)
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Link targets - problems with Wine (Though not Wine specific - Wine site doesn't help) Kevjml Linux - Newbie 1 01-13-2006 07:53 AM
Still having WINE problems tgreiner Linux - Newbie 4 02-22-2005 12:59 PM
Wine problems ]SK[ Mandriva 1 09-28-2004 01:33 PM
Wine Problems Dwibbley Linux - Software 1 01-13-2004 11:06 AM
Problems with Wine AngelLucifer Linux - General 1 11-21-2003 06:30 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:11 PM.

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