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 |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
01-11-2005, 09:30 PM
|
#1
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Rep:
|
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.
|
|
|
01-12-2005, 03:48 AM
|
#2
|
Senior Member
Registered: Jul 2004
Distribution: Ubuntu 7.04
Posts: 1,994
Rep:
|
|
|
|
01-12-2005, 01:35 PM
|
#3
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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
|
|
|
01-12-2005, 09:12 PM
|
#4
|
LQ Newbie
Registered: Jan 2005
Posts: 1
Rep:
|
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.
|
|
|
01-12-2005, 10:26 PM
|
#5
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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
|
|
|
01-13-2005, 09:28 AM
|
#6
|
Member
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31
Rep:
|
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
|
|
|
01-13-2005, 10:08 AM
|
#7
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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.
|
|
|
01-13-2005, 10:50 AM
|
#8
|
Member
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31
Rep:
|
Are you trying to uninstall a wine RPM?
|
|
|
01-13-2005, 12:03 PM
|
#9
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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.
|
|
|
01-13-2005, 02:39 PM
|
#10
|
Member
Registered: Dec 2004
Location: Omaha, NE
Distribution: RH9
Posts: 31
Rep:
|
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.
|
|
|
01-13-2005, 06:30 PM
|
#11
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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? |
|
|
|
01-14-2005, 02:05 AM
|
#12
|
Member
Registered: Sep 2003
Location: Arizona
Distribution: Kubuntu 8.04
Posts: 202
Rep:
|
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.
|
|
|
01-14-2005, 10:05 AM
|
#13
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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
|
|
|
01-14-2005, 07:55 PM
|
#14
|
Member
Registered: Jan 2005
Location: B.C, Canada
Distribution: Mint 17.3
Posts: 131
Original Poster
Rep:
|
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.
|
|
|
01-16-2005, 08:55 AM
|
#15
|
LQ Guru
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565
Rep:
|
For those experiencing these problems you need to run the up2date program (or use Fedora Core 3 instead of the quite old RH9)
|
|
|
All times are GMT -5. The time now is 09:11 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|