LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 06-12-2007, 10:51 AM   #1
emu103
Member
 
Registered: Aug 2006
Distribution: Open Suse 10.2/ Fedora Core 5/ Windows XP/ Studio 64/ Mandriva 2006
Posts: 36

Rep: Reputation: 15
wine will not execute


i have been having LOTS and LOTS of trouble installing wine and trying to get it working.
as far as i can tell i am installing it right
./configure
make depend
make
su
make install

i see no errors

i have even used the automatic installer
./tools/wine install

but i cant find a way to run wine the program. i have yet to see a user interface. ive ran the commands wine and wine program. a loading icon comes up in my toolbar and dies. and now when i try my shell comes up and say

preloader: Warning: failed to reserve range 00000000-60000000
wine: could not load L"c:\\windows\\system32\\program.exe": Module not found

correct me if im wrong but thats a windows filesystem.

i have gotten dvd shrink to work, but dont really know how. and it only works sometimes, which is the wierdest thing ive ever seen. i can click and it will work. close out. try again no less than thirty seconds later and it fails.
any suggestions on whats going on and how to fix it would be appreciated
 
Old 06-12-2007, 12:01 PM   #2
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
On Fedora, I just:

yum -y install wine

and DVDShrink works perfectly. Maybe the problem is with the way you built wine and the patches you did/didn't apply?

References to "c:" and other Windows drives are mapped to the ~/.wine directory. There's a lot of useful documentation on wine here.
 
Old 06-12-2007, 12:11 PM   #3
hoodedmanwithsythe
Member
 
Registered: Apr 2006
Location: West Midlands, UK
Distribution: mandriva, centos, debian
Posts: 91

Rep: Reputation: 15
the problem with make depend is that it forgets about the modules but if you were to do a straight
Code:
./configure ; make
su
make install
then that would solve that problem.
the second problem is that i am assuming that you don't have the wine-utils package,
nor have you tried the obvieous
Code:
wine --help
command and found that wine itself just runs the program that is inputed by the appropriate args
which outputs
Code:
Wine 20050725
Usage: wine PROGRAM [ARGUMENTS...]   Run the specified program
       wine --help                   Display this help and exit
       wine --version                Output version information and exit
ie to open example.exe I would use
Code:
wine example.exe
or to configure wine I would use
Code:
/usr/bin/winecfg
as you see wine itself has no actual gui but the other packed programs such as can be found by doing the following
Code:
su
cd /
find | grep wine | grep /usr/bin
this will output all files that have wine in the name or location
here is a sample output
Code:
find | grep wine | grep /usr/bin
./usr/bin/wine
./usr/bin/wineserver
./usr/bin/winebuild
./usr/bin/winemaker
./usr/bin/wine-pthread
./usr/bin/winebrowser
./usr/bin/wine-kthread
./usr/bin/wineshelllink
./usr/bin/wineconsole
./usr/bin/wineboot
./usr/bin/winedump
./usr/bin/winefile
./usr/bin/winemine
./usr/bin/winepath
./usr/bin/winewrap
./usr/bin/wineg++
./usr/bin/winecfg
./usr/bin/winedbg
./usr/bin/winecpp
./usr/bin/winegcc
./usr/bin/wine-preloader
./usr/bin/wineprefixcreate
./usr/bin/winelauncher
hope this helps
Note in future you may wish to explore the possibilities of winelib and compileing linux apps from windows program source but this is possibly a bit hard for you right now so I wont go on to explaining this in any detail
 
Old 06-12-2007, 12:37 PM   #4
hoodedmanwithsythe
Member
 
Registered: Apr 2006
Location: West Midlands, UK
Distribution: mandriva, centos, debian
Posts: 91

Rep: Reputation: 15
Quote:
Originally Posted by macemoneta
On Fedora, I just:

yum -y install wine

and DVDShrink works perfectly. Maybe the problem is with the way you built wine and the patches you did/didn't apply?

References to "c:" and other Windows drives are mapped to the ~/.wine directory. There's a lot of useful documentation on wine here.
You posted just before me but I wish to jepy to your post also, so here goes,
why use DVDShrink through wine when you could use the Linux equivalent DVD95.
also the overall process is a lot faster in my experience than using DVDShrink through wine.
With DVD95 the quality is better and it removes the extra languages and other unwanted crap. even when it says that the quality is at a low ratio the resulting dvd is still of a better quality than DVDShrink.
I don't mean to sound like a salesman, heck the software is free but it seems strange to me for someone to use a windows program through wine when a perfectly suitable Linux equivalent is available.
Note the burn option doen't work properly and I would recommend the iso option as it makes it a lot easier to do as you just run the program and then burn the resulting iso using any dvd burning software.

hope this helps you dvd "backing up",
 
Old 06-12-2007, 01:30 PM   #5
macemoneta
Senior Member
 
Registered: Jan 2005
Location: Manalapan, NJ
Distribution: Fedora x86 and x86_64, Debian PPC and ARM, Android
Posts: 4,593
Blog Entries: 2

Rep: Reputation: 344Reputation: 344Reputation: 344Reputation: 344
hoodedmanwithsythe: I wasn't recommending DVDShrink, just responding to the OP's report that it didn't work under wine.
 
Old 06-15-2007, 07:40 AM   #6
hoodedmanwithsythe
Member
 
Registered: Apr 2006
Location: West Midlands, UK
Distribution: mandriva, centos, debian
Posts: 91

Rep: Reputation: 15
Quote:
Originally Posted by macemoneta
hoodedmanwithsythe: I wasn't recommending DVDShrink, just responding to the OP's report that it didn't work under wine.
I know I was just saying that you may want to use dvd95 instead as it's faster and better quality. For future reference, and before you say or think I wasn't nor am i now getting at you as I have no time for such things it was just a recommendation.
 
  


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
A wine question: Theming wine or changing wine's colour scheme PatrickMay16 General 8 12-17-2006 06:53 AM
Link targets - problems with Wine (Though not Wine specific - Wine site doesn't help) Kevjml Linux - Newbie 1 01-13-2006 07:53 AM
walkthrough wine install and then execute homerjpbody Linux - Newbie 1 11-14-2003 01:16 PM
wine: chdir to /tmp/.wine-tom/server-306-33fca : No such file or directory Kinstonian Linux - Software 19 06-21-2003 05:16 AM

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

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