LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Wine HELPPPP!!! (https://www.linuxquestions.org/questions/linux-software-2/wine-helpppp-156653/)

LuvDaPenguin 03-12-2004 05:36 AM

Wine HELPPPP!!!
 
:newbie:

i compiled wine by doing "./configure"....the last thing is said was

ith -g -O2 -o user.o user.c
gcc -c -I. -I. -I../include -I../include -D__WINESRC__ -Wall -pipe -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g -O2 -o window.o window.c
gcc -o wineserver async.o atom.o change.o class.o clipboard.o console.o context_i386.o context_powerpc.o context_sparc.o debugger.o event.o fd.o file.o handle.o hook.o main.o mapping.o mutex.o named_pipe.o object.o process.o ptrace.o queue.o registry.o request.o semaphore.o serial.o signal.o smb.o snapshot.o sock.o thread.o timer.o token.o trace.o unicode.o user.o window.o -L../libs/wine -lwine -L../libs/unicode -lwine_unicode -L../libs/port -lwine_port -lm
make[1]: Leaving directory `/root/Desktop/Wine/wine-20040309/server'
Wine build complete.
You have new mail in /var/spool/mail/root
[root@localhost wine-20040309]#

ok...so now what...is it installed?? if so..how do i configure it...i wanna get this workin..then i can rub it in my friends face haahaa thanks fer the help guys:scratch:

aaa 03-12-2004 07:01 AM

Assuming you installed properly... you need to make a configuration file for it. There is a sample in the 'samples' directory. Modify it for your needs with the help of 'man wine.conf'. It will go in the [your home]/.wine/config . See this:
frankscorner.org

/home/kyle 03-12-2004 07:24 AM

After you install wine, somewhere in your menu there will be a new option (Emulators), go to that, go to Wine, then go to Wine Setup, that is a little wizzard that will config ur config file for you very easily, with easy options, like what file system you want (win 3.1, 95 or 98), etc, then when you are done doing that, your fake_windows should be located under
[Your home]/.wine/fake_windows.

To install a program/game with wine, put the program/game in your cd-rom drive, open your home or w/e and go to /mnt/cdrom, the setup for the game/program should look like a wine cup, double click it and the setup will start just like it would on windows.. to run the program go to
[your home]/.wine/fake_windows/(application's folder)/(application.exe). Wine will open the program just like it would open in windows, usualy a terminal window will open as well, if you close the terminal, the program closes as well.

If you have any more problems, post back :).

LuvDaPenguin 03-12-2004 05:02 PM

:newbie:

ok so how do i install wine?? how do i check if its already installed?? when i extracted wine i did "./configure" then "make" is that what i should have done? thats where i sit..i dont think its installed yet tho...should i do "make install" ??? arg..this is BY FAR the hardest thing i have done on here EVER! usually i can jus pound through it and figure it out...but NOT this program..it kills me..PLEASE HELP!:cry:

/home/kyle 03-12-2004 05:14 PM

I gave you almost exact instructions above

Download the src.tar, ./configure, make then make install, you might wanna read the manuals it comes with as well, they have valuable information onto how to install. Wine is the easiest program I have installed on Linux, and I have only been using it for 4 days.

LuvDaPenguin 03-12-2004 11:12 PM

ok so i did all that...and at the end of the "make install" i got this

./tools/mkinstalldirs -m 755 /usr/local/share/aclocal
mkdir -m 755 -p -- /usr/local/share/aclocal
/usr/bin/install -c -m 644 ./aclocal.m4 /usr/local/share/aclocal/wine.m4
/sbin/ldconfig
*************************************************
*************************************************
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
*************************************************
*************************************************
what does this mean and how do i fix it?
once i fix that it should work correct?:scratch:

DrOzz 03-12-2004 11:19 PM

Quote:

*************************************************
*************************************************
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
*************************************************
*************************************************
??? :confused: ???

did you try any of this ?

LuvDaPenguin 03-12-2004 11:32 PM

ok so i did that and i think i did it right...cause i can go to /usr/locla/bin and run "./wine" and i get this

[root@localhost bin]# ./wine
Wine 20040309

Usage: wine [options] [--] program_name [arguments]
The -- has to be used if you specify arguments (of the program)

Options:
--debugmsg name Turn debugging-messages on or off
--dll name This option is no longer supported
--help,-h Show this help message
--version,-v Display the Wine version
[root@localhost bin]#


does that mean its working right?? and is all installed correctly and ready 2 use? if not what more do i need to do? thanks a bunch for all this help guys..i am learning tons..

/home/kyle 03-12-2004 11:36 PM

Wine isnt realy a program, its kinda like a thing that is there...you dont run wine realy, Is there a game you wanna install? or a program? Just put to game/program in ur cdrom drive, open the cdrom drive up and look for its setup.exe, the icon should be a wine glass, run that and itll install just like it would on windows.

But befor you do that, you need to go to your menu, and look around for an emulators section somewhere, then in that there will be wine, and in wine run the wine setup to make the fake windows folder. then you are done.

LuvDaPenguin 03-12-2004 11:46 PM

there is no place on my application menu for "emulators" where do i go to find that file/program elsewhere....or do u know the file name?

/home/kyle 03-12-2004 11:51 PM

Try to go to



If it doesent exist do this...which I have aklready said..

Download the rpm file, then open a terminal in the folder of the rpm file, and type this

rpm -i [rpm file's name here]

That will install wine, I dont think you will see anything happen, itll just not let you be able to type anything for a minute or so, after that is done, the emulators section might be in ur menu, if not, try to go to [your home]/[you]/.wine again.

WIne is the easiest program to install on Linux...if you are having trouble with this, who knows what kinda probs you are going to have with other programs.

LuvDaPenguin 03-13-2004 12:17 AM

u said "try to go to" then it was blank....try to go to what?

LuvDaPenguin 03-13-2004 12:40 AM

ok so i installed now from the RPM like i was told...still no "emulators" section..found this tho n did it and came up with this...

[root@localhost bin]# ./winecfg
Drive A: unknown filesystem type L"win98", defaulting to 'win95'.
Drive C: unknown filesystem type L"win98", defaulting to 'win95'.
Drive D: unknown filesystem type L"win98", defaulting to 'win95'.
Drive E: unknown filesystem type L"win98", defaulting to 'win95'.
Drive F: unknown filesystem type L"win98", defaulting to 'win95'.
Drive Z: unknown filesystem type L"win98", defaulting to 'win95'.
fixme:winecfg:WinMain The winecfg tool is not yet complete, and does not actually alter your configuration.
fixme:winecfg:WinMain If you want to alter the way Wine works, look in the ~/.wine/config file for more information.

what the hell does that mean....nothing will run on windows 95...i need it to be atleast win98 so i can make it all work...how do i change this...and where is the way to accually alter the configureation....

/home/kyle 03-13-2004 01:03 AM

Do you use KDE? or GNOME? OR what?

LuvDaPenguin 03-13-2004 06:33 AM

i use KDE on RH9....


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