.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
winSPMBT: Main Battle Tank- Save $6.00

   







Go Back   .com.unity Forums > Illwinter Game Design > Dominions 3: The Awakening

Reply
 
Thread Tools Display Modes
  #1  
Old May 6th, 2007, 02:29 PM

Duncan_Ferguson Duncan_Ferguson is offline
Private
 
Join Date: May 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Duncan_Ferguson is on a distinguished road
Default Installing problems on Debian etch (FIXED)

Hi, long time lurking but new poster. Sorry for my english, it's not my first language (neither my second), I'll try to make it understandable:

I've been happily playing dom3 on my Ubuntu machine for months, today I switched to Debian Etch. I'm trying to re-install dom3 on my Debian, but I keep getting those "permission denied" messages every time I try to run the dominions_installer.run script, even if I'm logged as root. I have checked permissions with ls -l and it tells me that root has rx permission.

I'm sure it is just a silly thing, since I'm not proficient with linux, but I haven't got a clue.

Thanks in advance
Reply With Quote
  #2  
Old May 6th, 2007, 04:08 PM
Johan K's Avatar

Johan K Johan K is offline
Brigadier General
 
Join Date: Aug 2003
Location: Mictlan
Posts: 1,767
Thanks: 12
Thanked 165 Times in 22 Posts
Johan K is on a distinguished road
Default Re: Installing problems on Debian etch

Are you trying to run it from a CD or some other non harddrive device? If so copy it to your hardrive first and try again.
__________________
http://www.illwinter.com
Reply With Quote
  #3  
Old May 6th, 2007, 05:09 PM

Duncan_Ferguson Duncan_Ferguson is offline
Private
 
Join Date: May 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Duncan_Ferguson is on a distinguished road
Default Re: Installing problems on Debian etch

Hi

Thnak you for the tech support, it worked at first but I found another problem.

I've copied the dominions installer .run in my Desktop and now I don't get permission issues, but I cannot run it(nor user neither root). Message error displayed

/dominions3_installer.run: error while loading shared libraries: libXi.so.6: cannot open shared object file: No such file or directory

I've done a "locate libXi.so.6" and it says that it's in my /usr/lib directory but somehow the installer does not find it. I'd try to move libXi manually to another directory, but I don't know where the installer is looking for it.

Thanks again
Reply With Quote
  #4  
Old May 7th, 2007, 06:30 AM
B0rsuk's Avatar

B0rsuk B0rsuk is offline
Second Lieutenant
 
Join Date: Mar 2004
Location: Gdansk, Poland
Posts: 420
Thanks: 0
Thanked 15 Times in 4 Posts
B0rsuk is on a distinguished road
Default Re: Installing problems on Debian etch

No no no don't do that ! You're likely to break something else. Try making a symbolic link instead. Place it in the directory the game wants it, and make it point at where the library is. It still feels a bit like a dirty hack, there's probably a better way of doing it, but it's much cleaner this way.

I don't remember the syntax now, but it's something along the lines Code:
ln -s

. If I remember correctly, the first argument should be the name of the link (should be the same as library's), and the second - what it points at.
------------
Note: I'm planning to switch to Etch, but I'm using Ubuntu now. By the way, my libXi.so.6 is in /usr/lib and there are no problems.
__________________
Those who do not understand Master Of Magic are condemned to reinvent it - badly.
Reply With Quote
  #5  
Old May 7th, 2007, 06:50 AM
vfb's Avatar

vfb vfb is offline
General
 
Join Date: Mar 2007
Location: Japan
Posts: 3,691
Thanks: 269
Thanked 397 Times in 200 Posts
vfb is on a distinguished road
Default Re: Installing problems on Debian etch

Please list your libraries in /usr/lib like this:

Code:

# ls -l /usr/lib/libXi.so*



You should see something like:

Code:

lrwxrwxrwx 1 root root 14 Jan 8 22:58 /usr/lib/libXi.so -> libXi.so.6.0.0
lrwxrwxrwx 1 root root 14 Jan 8 22:58 /usr/lib/libXi.so.6 -> libXi.so.6.0.0
-rwxr-xr-x 1 root root 28120 Jan 8 22:58 /usr/lib/libXi.so.6.0.0



If you are missing any of these files or links then it is possible that the install will not work.

Normally /usr/lib/ is always searched for shared libraries, so you should not need to create a link in the install or game directory.

B0rsuk is right that you should not be moving files out of /usr/lib.

If you are missing /usr/lib/libXi.so for example, you can create it with this command, Code:

ln -s /usr/lib/libXi.so.6.0.0 /usr/lib/libXi.so



If you are actually missing /usr/lib/libXi.so.6.0.0, so that
/usr/lib/libXi.so.6 is a link pointing to a non-existent file, you will need to re-install whatever package includes libXi.
__________________
Whether he submitted the post, or whether he did not, made no difference. The Thought Police would get him just the same. He had committed— would still have committed, even if he had never set pen to paper— the essential crime that contained all others in itself. Thoughtcrime, they called it. Thoughtcrime was not a thing that could be concealed forever.
http://z7.invisionfree.com/Dom3mods/index.php?
Reply With Quote
  #6  
Old May 7th, 2007, 07:20 AM

Duncan_Ferguson Duncan_Ferguson is offline
Private
 
Join Date: May 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Duncan_Ferguson is on a distinguished road
Default Re: Installing problems on Debian etch

Hi everyone:

I'm getting this

ls -l /usr/lib/libXi*
lrwxrwxrwx 1 root root 14 2007-05-07 12:38 /usr/lib/libXi.so.6 -> libXi.so.6.0.0
-rw-r--r-- 1 root root 35752 2007-02-16 20:42 /usr/lib/libXi.so.6.0.0

so libXi.so -> libXi.so.6.0.0 link is missing, or so it seems...

Meanwhile I've tried a workaround doing a manual install (as explained in the README file), and I get the game running, but i can't patch it correctly (also, I don't get the menu entries and so, but I don't really care for them)
Reply With Quote
  #7  
Old May 7th, 2007, 08:26 AM
vfb's Avatar

vfb vfb is offline
General
 
Join Date: Mar 2007
Location: Japan
Posts: 3,691
Thanks: 269
Thanked 397 Times in 200 Posts
vfb is on a distinguished road
Default Re: Installing problems on Debian etch

I think the permissions on /usr/lib/libXi.so.6.0.0 are wrong.

Please try this, Code:


chmod 755 /usr/lib/libXi.so.6.0.0
ln -s /usr/lib/libXi.so.6.0.0 /usr/lib/libXi.so



And then run the install program again.
__________________
Whether he submitted the post, or whether he did not, made no difference. The Thought Police would get him just the same. He had committed— would still have committed, even if he had never set pen to paper— the essential crime that contained all others in itself. Thoughtcrime, they called it. Thoughtcrime was not a thing that could be concealed forever.
http://z7.invisionfree.com/Dom3mods/index.php?
Reply With Quote
  #8  
Old May 7th, 2007, 12:47 PM
Johan K's Avatar

Johan K Johan K is offline
Brigadier General
 
Join Date: Aug 2003
Location: Mictlan
Posts: 1,767
Thanks: 12
Thanked 165 Times in 22 Posts
Johan K is on a distinguished road
Default Re: Installing problems on Debian etch

The installer is a 32-bit binary. Could it be that you're running a 64-bit distro without any support for 32-bit applications. In that case the installer won't work. But I believe there are instructions for a manual install as well.
__________________
http://www.illwinter.com
Reply With Quote
  #9  
Old May 7th, 2007, 02:22 PM
Gandalf Parker's Avatar

Gandalf Parker Gandalf Parker is offline
Shrapnel Fanatic
 
Join Date: Oct 2003
Location: Vacaville, CA, USA
Posts: 13,736
Thanks: 341
Thanked 479 Times in 326 Posts
Gandalf Parker is on a distinguished road
Default Re: Installing problems on Debian etch

There is also a text-mode installation which wont need the gui libraries. I use that.
__________________
-- DISCLAIMER:
This game is NOT suitable for students, interns, apprentices, or anyone else who is expected to pass tests on a regular basis. Do not think about strategies while operating heavy machinery. Before beginning this game make arrangements for someone to check on you daily. If you find that your game has continued for more than 36 hours straight then you should consult a physician immediately (Do NOT show him the game!)
Reply With Quote
  #10  
Old May 7th, 2007, 07:10 PM

Duncan_Ferguson Duncan_Ferguson is offline
Private
 
Join Date: May 2007
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
Duncan_Ferguson is on a distinguished road
Default Re: Installing problems on Debian etch

Thanks again for helping me with this

vfb --> it did not work

ls -l /usr/lib/libXi.so*
lrwxrwxrwx 1 root root 23 2007-05-07 23:59 /usr/lib/libXi.so -> /usr/lib/libXi.so.6.0.0
lrwxrwxrwx 1 root root 14 2007-05-08 01:18 /usr/lib/libXi.so.6 -> libXi.so.6.0.0
-rwxr-xr-x 1 root root 33248 2006-11-28 02:09 /usr/lib/libXi.so.6.0.0

I have this now, but installer keeps complaining about it:

/dominions3_installer.run: error while loading shared libraries: libXi.so.6: cannot open shared object file: No such file or directory

Johan K --> maybe you're right, I'm running a 64-bit Etch. Previously I installed it in Ubuntu 64 bits, but it had some 32-bit libraries (because it has no 64-bits native flash player and I had to install firefox32). I'll try this way. Manual install is OK and it works, but I'm not able to patch the game right...
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

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 On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 12:49 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.