LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-03-2003, 08:49 PM   #1
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Rep: Reputation: 15
Exclamation Trouble installing Wine


When i am at the make install stage of installing wine, i get this error when it finishes.
*************************************************
*************************************************
The installed Wine libraries will not be found!
You can either:
Add the line '/usr/local/lib' to /etc/ld.so.conf and run /sbin/ldconfig
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
*************************************************
*************************************************
[root@THOMS wine-20030911]#

How do I fix this? (if you need what it displays before this , tell me)
 
Old 11-03-2003, 10:06 PM   #2
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
type this when you are done with make install
Code:
ldconfig
 
Old 11-03-2003, 10:47 PM   #3
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
ok, done that. it did this:
[root@THOMS wine-20030911]# ldconfig
[root@THOMS wine-20030911]#

Just about to test wine... Do you know how , the only other things i've installed are the packages to install wine..
 
Old 11-03-2003, 10:49 PM   #4
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
type
Code:
wine <.exe file to execute>
as easy as that
 
Old 11-03-2003, 11:49 PM   #5
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
Do i have to be in a paticlar directory?

EDIT: just tried just "Wine" and it gave me this:
[root@THOMS wine-20030911]# wine
wine: error while loading shared libraries: libntdll.dll.so: cannot open shared
object file: No such file or directory
[root@THOMS wine-20030911]#

What next?

Last edited by jkt; 11-03-2003 at 11:52 PM.
 
Old 11-03-2003, 11:51 PM   #6
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
in the directory were the exe file is
 
Old 11-04-2003, 12:14 AM   #7
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
have you seen my edit ? scrool up.
 
Old 11-04-2003, 08:13 AM   #8
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
try to do as the error say:
Quote:
Add the line '/usr/local/lib' to /etc/ld.so.conf and run /sbin/ldconfig
and tell me if that work
 
Old 11-04-2003, 09:12 AM   #9
DirtDart
Member
 
Registered: Nov 2003
Distribution: Mandrake 10.1/Solaris 10 (sparc)
Posts: 96

Rep: Reputation: 16
Doesn't sound like you added the correct directory listing to the appropriate file.

Add the line '/usr/local/lib' to /etc/ld.so.conf and run /sbin/ldconfig
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib


Check out the file /etc/ld.so.conf and look for /usr/local/lib. If its not there, add it, then run /sbin/ldconfig again.

or

If you're to lazy to edit the /etc/ld.so.conf file, or maybe don't have root access, you can just type export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib, assuming you're using the bash shell.
 
Old 11-04-2003, 09:12 PM   #10
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
Just typed export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib in konsole, got this :
[jordanthoms@THOMS etc]$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
[jordanthoms@THOMS etc]$

Note :there was no line break after export

Has it worked ? (if so, what do I do next?)
 
Old 11-04-2003, 09:27 PM   #11
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
after you do that try to run a windows exe in the same Konsole window and see what happens.
 
Old 11-05-2003, 12:32 AM   #12
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
Why does it have to be in the same Konsole window. I can't run things through konsole (when i type the name as it appears when i do a dir it says no such command or something like that) I have set them to open with wine when i dobble click on them, but nothing happens.
 
Old 11-05-2003, 12:46 AM   #13
linksocc
Member
 
Registered: Jul 2003
Location: US
Distribution: Mandrake 9.0 1st/9.1 2nd/Gentoo 1.4 now
Posts: 313

Rep: Reputation: 30
If the problem you are having with konsole is when you try to switch to directory whose name has a space on for example a directory in my home directory is called My Docs to switch to that directory I do "cd My\ Docs"no that before every space a have to put a backward slash. hope you get the idea as you can see I'm not an english speaker
 
Old 11-05-2003, 12:42 PM   #14
jkt
Member
 
Registered: Nov 2003
Location: New Zealand , down here at the bottom of the world...
Distribution: Mandrake 9.1
Posts: 35

Original Poster
Rep: Reputation: 15
Sorry, i just fixed my problem by installing off my Mandrake Cd. I should've tried it earlier but i did not know it was there...
 
Old 11-05-2003, 01:13 PM   #15
Lostman
Member
 
Registered: Nov 2003
Location: Chicago, IL
Posts: 239

Rep: Reputation: 30
Can you install proggys with Wine?
 
  


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
Trouble running wine from src wine:error while loading shared libraries: libwine.so.1 brynjarh Linux - Newbie 2 05-28-2013 10:59 AM
trouble installing WINe sp00kri0t Linux - Newbie 2 11-22-2005 08:34 PM
Trouble installing Wine for RH9, need glibc MajicMan Linux - Software 3 08-09-2005 05:54 PM
trouble installing a game through wine syphoncode.32 Linux - Newbie 1 10-21-2004 06:15 AM
Trouble installing/configuring wine and freetype jerrymc Linux - Software 2 06-27-2002 09:19 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:30 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