Twokinds ARCHIVE Forums

This forum is for the preservation of old threads from before the forum pruning.
It is currently Wed Apr 16, 2025 7:50 am

All times are UTC - 5 hours




Post new topic Reply to topic  [ 12 posts ] 
Author Message
 Post subject: Linux, Wine, and Age of Empires
PostPosted: Sat May 03, 2008 11:04 am 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
Okay,


I can get to the installer, but once it starts copying files, it cannot copy any for some reason, what must I do to fix this?


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 6:25 pm 
Offline
Templar Inner Circle
User avatar

Joined: Wed Jan 17, 2007 12:33 pm
Posts: 2879
Location: Nebraska, USA
First step, check permissions. Do the user Wine is installing under have permission to create files and directories in the location you're installing into? (No real experience with Wine, but that's the first thing to always check.)


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 6:29 pm 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
I do not think so,

How do I check/Change?


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 6:58 pm 
Offline
Templar Inner Circle
User avatar

Joined: Wed Jan 17, 2007 12:33 pm
Posts: 2879
Location: Nebraska, USA
I don't know how to check the user Wine runs under (maybe it's your own, maybe it's a specific "wine" user, I don't know), but to check file ownership you can use
Code:
ls -l
Feel free to add a directory path after that (ls -l /usr/games/ or whatever) to see that directory. The list look something along these lines (your details will vary):
Code:
avwolf@miranda:~/web/phite$ ls -l
total 52
-rw-rw-r-- 1 avwolf users  547 2007-09-27 12:25 config.inc.php
-rw-rw-r-- 1 avwolf users 3777 2007-10-04 18:13 dbconnection.class.php
-rw-rw-r-- 1 avwolf users  864 2007-10-02 16:57 index.php
-rw-rw-r-- 1 avwolf users  522 2007-09-26 17:03 initrooms.inc.php
-rw-rw-r-- 1 avwolf users  202 2007-09-26 12:16 invalidcommand.txt
-rw-rw-r-- 1 avwolf users 1932 2007-09-27 16:46 parser.php
-rw-rw-r-- 1 avwolf users   34 2007-09-26 11:35 readme.txt
-rw-rw-r-- 1 avwolf users 4267 2007-10-04 18:13 room.class.php
-rw-rw-r-- 1 avwolf users  320 2007-09-26 11:58 rooms.xml
-rw-rw-r-- 1 avwolf users 2088 2007-10-04 18:14 script.class.php
-rw-rw-r-- 1 avwolf users 1363 2007-10-04 18:05 scripting_guide.txt
-rw-rw-r-- 1 avwolf users  181 2007-10-03 16:48 scripttest.php
drwxrwxr-x 2 avwolf users   48 2008-05-03 18:50 temp

The things you care about are the permission string (the first 10 characters) and then the user name ("avwolf" here) and the group name ("users" here). The permissions are setup as a flag as to if this is a directory (see the "d" on the entry for "temp" at the bottom) and then three sets of three characters. Those characters are the actual permissions -- read (r), write (w), and execute (x). The first set of three is for the owner, the second is for the group, and the third is for everybody else.

The directory you're installing in needs write permissions for the user Wine is running as. If you don't know who that user is, or you're really lazy, you can just set the permission for "everybody." (This is less secure, but security is probably not a top priority for you.)

Change ownership with chown:
Code:
sudo chown <user> <space separated list of files or directories, wildcards permitted>


Permissions are set with chmod. I use octal to set the file permissions, so I can never remember the way to do it with characters, but if you want to give everyone permissions to do whatever they want:
Code:
sudo chmod 777 <space separated list of files or directories, wildcards permitted>
Note that directories must have execute permissions, or you won't be able to change to that directory.

(For the record, most files default to 644, or read-write owner, read group, read everybody; the ones in the example are 664. Directories default to 755 for read-write-execute owner, read-execute group, read-execute everybody; the one in the example is 775.)


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 7:09 pm 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
Right, but I have no idea what I am supposed to change,

The Wine C:\Program_Files or something...


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 8:15 pm 
Offline
Templar Inner Circle
User avatar

Joined: Wed Jan 17, 2007 12:33 pm
Posts: 2879
Location: Nebraska, USA
Yeah, that's probably where you should look first. Darned if I know where that'll be though.


Top
 Profile  
 
 Post subject:
PostPosted: Sat May 03, 2008 9:46 pm 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
No idea where it is...


Found it on the internets

sudo chown -R <your username> .wine



Now I've got it installed, but every time I try to play, it brings up the load box, exits it like normal, but nothing happens

Some places are telling me I need a No CD Crack...Or a newer version of Wine

Need help on that next.


Top
 Profile  
 
 Post subject:
PostPosted: Sun May 04, 2008 4:40 am 
Offline
Templar Inner Circle
User avatar

Joined: Tue Mar 04, 2008 7:51 pm
Posts: 3468
Location: In the Ikki Tousen world. Leave me alone.
If you don't have the original CD then get a No-CD crack.

((these will be at the bottom of every post of mine, please click them as well as the ones in my siggie ImageImageImageImage))


Top
 Profile  
 
 Post subject:
PostPosted: Sun May 04, 2008 7:47 am 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
I have the original CD, but forums, and I think even M$ said you need a no CD crack for wine under a certain version, and my wine is under that version

Also, no, the CD's not working with it too well.


Got a new version of wine,...but now it won't let me open the setup...


WineHQ says :

With 0.9.59 you need to use native imm32.dll to allow installer to work.

Actually disabling it is enough, but The Conquerors expansion pack doesn't work without it.

what does this mean?



Also, I tried to install the game Stronghold, which WineHq said works out of the box, but the transfer had an error a file was "not ready"


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 05, 2008 12:34 am 
Offline
Templar Inner Circle
User avatar

Joined: Wed Jan 17, 2007 12:33 pm
Posts: 2879
Location: Nebraska, USA
Black_Elite1 wrote:
With 0.9.59 you need to use native imm32.dll to allow installer to work.

Actually disabling it is enough, but The Conquerors expansion pack doesn't work without it.

what does this mean?

I think that means you need an imm32.dll off of a Windows machine for the installer to work properly. I'm not sure how one would go about "disabling" it, but if you were to do so, you'd be able to install the game, but the expansion pack would not work.

The DLL might also be on the CD if you mount it and go looking.


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 05, 2008 7:28 am 
Offline
Templar Inner Circle
User avatar

Joined: Tue Mar 04, 2008 7:51 pm
Posts: 3468
Location: In the Ikki Tousen world. Leave me alone.
OMG! Stronghold is AWESOME.
i got Crusaders and I still love the game.

Mass knights FTW

((these will be at the bottom of every post of mine, please click them as well as the ones in my siggie ImageImageImageImage))


Top
 Profile  
 
 Post subject:
PostPosted: Mon May 05, 2008 3:53 pm 
Offline
Council Member
User avatar

Joined: Mon Sep 11, 2006 6:38 pm
Posts: 532
Location: Great Justice, Moving Zig
Optix wrote:
OMG! Stronghold is AWESOME.
i got Crusaders and I still love the game.

Mass knights FTW

((these will be at the bottom of every post of mine, please click them as well as the ones in my siggie ImageImageImageImage))


So do I, but Wine hates it.


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 12 posts ] 

All times are UTC - 5 hours


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group