Author Topic: No recognition  (Read 649 times)

foobar

  • Member
  • **
  • Posts: 308
  • Kudos: 0
    • http://www.fuckmicrosoft.com
No recognition
« on: 6 May 2002, 22:13 »
Hi, it's me again ....

I'm having the strange problem with my Mandrake 8.1 version, because it can't run my quake. Neither the quake.x11 or the squake binaries work.
It just says:

Code: [Select]

bash:squake: No such file or directory

Strange is that on a much older (1996, version 3.1) Slackware it runs like a charm, only with no sound ....

please help !
Linux user #283039

Gosh, I love Linux Quake.


voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
No recognition
« Reply #1 on: 6 May 2002, 22:24 »
Assuming that your /usr/local/games/quake/squake file exists can you post the first line contained within that file? It should be a script. The first line should be something like: "#!/usr/bin/sh" which would tell the script to run under the "sh" shell contained in /usr/bin. That is a common error message when the path to the shell is incorrect or the shell that the script is trying to run under does not exist.

[ May 06, 2002: Message edited by: VoidMain ]

Someone please remove this account. Thanks...

foobar

  • Member
  • **
  • Posts: 308
  • Kudos: 0
    • http://www.fuckmicrosoft.com
No recognition
« Reply #2 on: 7 May 2002, 01:51 »
Negative, quake.x11 and squake are both binaries,
like the MS-DOS version, quake.exe ....
Linux user #283039

Gosh, I love Linux Quake.


voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
No recognition
« Reply #3 on: 7 May 2002, 01:54 »
Where can I find a copy of the exact quake binaries you are trying to get running? I'm running Quake III and I have a quake3.x86 binary and a quake3 script to run it.

If you are getting that message from a binary then my guess is there is a critical shared library missing that quake is linked to.  You might be able to do a "strings squake | more" and see what libraries it is trying to call.  If you have those libraries installed on your sytem but just in a different location than where quake is looking for them you can create symbolic links.

For instance, when I do a "strings quake3.x86" the first line is "/lib/ld-linux.so.2". If that file did not exist on my system I would get a message similar to what you are seeing.

[ May 06, 2002: Message edited by: VoidMain ]

Someone please remove this account. Thanks...

foobar

  • Member
  • **
  • Posts: 308
  • Kudos: 0
    • http://www.fuckmicrosoft.com
No recognition
« Reply #4 on: 7 May 2002, 14:20 »
Yes void, you're right. But mine is Quake 1, and when i checked for my svgalib after posting, it wasn't there ! So i downloaded and installed svgalib, but it still don't work.

If you'd like to take a look, download it here.

http://metalab.unc.edu/pub/Linux/games/quake/squake2.0.tar.gz
Linux user #283039

Gosh, I love Linux Quake.


foobar

  • Member
  • **
  • Posts: 308
  • Kudos: 0
    • http://www.fuckmicrosoft.com
No recognition
« Reply #5 on: 7 May 2002, 17:57 »
Hi, me here.
Just got back from my mandrake box and i've collected lots of info :
(beware, XXL post, just about 1186 lines  :D )

This is the first page of the strings output :

[root@localhost /]# strings /games/quake/squake | more
/lib/ld-linux.so.1
libm.so.5
sqrt
_DYNAMIC
ceil
errno
floor
__environ
_init
atan2
_fini
atan
atexit
_GLOBAL_OFFSET_TABLE_
libvga.so.1
ioctl
_fxstat
printf
exit
close
open
getenv
keyboard_close
--More--

Then i knew, it needed /lib/ld-linux.so.1, reading the first line of the output.I don't have it, but i do have /lib/ld-linux.so.2 .

So i said:

# ln -s /lib/ld-linux.so.2 /lib/ld-linux.so.1

And then to check :

[root@localhost /]# ls -l /lib/ld-linux*
lrwxrwxrwx    1 root     root           11 May  5 17:10 /lib/ld-linux.so.1 -> ld-2.2.4.so*
lrwxrwxrwx    1 root     root           11 May  7  2002 /lib/ld-linux.so.2 -> ld-2.2.4.so*

Now, it doesn't say './squake: no such file or directory' anymore, but now it says about this :

./squake: error while loading shared libraries : libm.so.5 not available (my own words, not the true error output)

Then, I looked for it, using

# cd / ; find | grep "libm"

This finds a lot, including the little file

/lib/libm.so.6

Aha, i thought, so i did:

# ln -s /lib/libm.so.6 /lib/libm.so.5

And then

# ls -l /lib/libm.so.6 /lib/libm.so.5

ls gave :

lrwxrwxrwx    2 root     root           13 May  7  2002 libm.so.5 -> libm-2.2.4.so*
lrwxrwxrwx    2 root     root           13 May  7  2002 libm.so.6 -> libm-2.2.4.so*

So it should be right, now, but squake still says :

./squake: error while loading shared libraries: ./squake: undefined symbol: __libc_init

And i think that the 'libc-init' comes from line 9 of the strings output (_init).

Maybe squake (and punchbillgates too  :D ) think the libm is a libc library ???

Finally, my /lib and /usr/lib directories, for if it might help you :

/lib
total 7272
drwxr-xr-x    8 root     root         4096 May  7 12:54 ./
drwxr-xr-x   20 root     root         4096 May  7 12:54 ../
drwxr-xr-x    6 root     root         4096 May  5 17:37 aurora/
lrwxrwxrwx    1 root     root           25 May  5 17:19 cpp -> /etc/alternatives/lib_cpp*
drwxr-xr-x    9 root     root         4096 May  7 12:50 dev-state/
drwxr-xr-x    2 root     root         4096 May  5 17:46 iptables/
-rwxr-xr-x    1 root     root       448666 Sep 10  2001 ld-2.2.4.so*
lrwxrwxrwx    1 root     root           11 May  5 17:10 ld-linux.so.1 -> ld-2.2.4.so*
lrwxrwxrwx    1 root     root           11 May  7  2002 ld-linux.so.2 -> ld-2.2.4.so*
-rwxr-xr-x    1 root     root         3700 Sep 10  2001 libBrokenLocale-2.2.4.so*
lrwxrwxrwx    1 root     root           24 May  7  2002 libBrokenLocale.so.1 -> libBrokenLocale-2.2.4.so*
-rwxr-xr-x    1 root     root         4240 Sep 10  2001 libNoVersion-2.2.4.so*
lrwxrwxrwx    1 root     root           21 May  7  2002 libNoVersion.so.1 -> libNoVersion-2.2.4.so*
-rwxr-xr-x    1 root     root        14700 Sep 10  2001 libSegFault.so*
-r-xr-xr-x    1 root     root       952600 May  7 11:49 libX11.so.6*
-r-xr-xr-x    1 root     root        57944 May  7 11:49 libXext.so.6*
-r-xr-xr-x    1 root     root        28472 May  7 11:49 libXi.so.6*
-rwxr-xr-x    1 root     root         9832 Sep 10  2001 libanl-2.2.4.so*
lrwxrwxrwx    1 root     root           15 May  7  2002 libanl.so.1 -> libanl-2.2.4.so*
-r-xr-xr-x    1 root     root        63452 May  7 11:49 libbz2.so.1*
-rwxr-xr-x    1 root     root      1285480 Sep 10  2001 libc-2.2.4.so*
-rwxr-xr-x    1 root     root      1285480 Sep 10  2001 libc.so.5*
lrwxrwxrwx    1 root     root            9 May  7  2002 libc.so.6 -> libc.so.5*
lrwxrwxrwx    1 root     root           17 May  7  2002 libcom_err.so.2 -> libcom_err.so.2.0*
-rwxr-xr-x    1 root     root         5320 Sep 13  2001 libcom_err.so.2.0*
-rwxr-xr-x    1 root     root        21736 Sep 10  2001 libcrypt-2.2.4.so*
lrwxrwxrwx    1 root     root           17 May  7  2002 libcrypt.so.1 -> libcrypt-2.2.4.so*
-rwxr-xr-x    1 root     root       545976 Sep  4  2001 libdb-3.2.so*
-rwxr-xr-x    1 root     root         9788 Sep 10  2001 libdl-2.2.4.so*
lrwxrwxrwx    1 root     root           14 May  7  2002 libdl.so.2 -> libdl-2.2.4.so*
lrwxrwxrwx    1 root     root           13 May  7  2002 libe2p.so.2 -> libe2p.so.2.3*
-rwxr-xr-x    1 root     root        13656 Sep 13  2001 libe2p.so.2.3*
lrwxrwxrwx    1 root     root           16 May  7  2002 libext2fs.so.2 -> libext2fs.so.2.4*
-rwxr-xr-x    1 root     root        79548 Sep 13  2001 libext2fs.so.2.4*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.1 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.1.9.9e -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.3 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.3.0 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.4 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.4.2 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.5.0 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libform.so.5.1 -> ../usr/lib/libform.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libhistory.so.4 -> libhistory.so.4.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libhistory.so.4.1 -> ../..//lib/libhistory.so.4*
-rwxr-xr-x    1 root     root        21160 Aug 26  2001 libhistory.so.4.2*
lrwxrwxrwx    1 root     root           16 May  7  2002 libintl.so.1 -> libintl.so.1.0.1
-rw-r--r--    1 root     root        26912 Sep 12  2001 libintl.so.1.0.1
-rwxr-xr-x    1 root     root       139200 Sep 10  2001 libm-2.2.4.so*
lrwxrwxrwx    1 root     root           13 May  7  2002 libm.so.6 -> libm-2.2.4.so*
-rwxr-xr-x    1 root     root         9060 Sep 10  2001 libmemusage.so*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.1 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.1.9.9e -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.3 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.3.0 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.4 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.4.2 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.5.0 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           25 May  7  2002 libmenu.so.5.1 -> ../usr/lib/libmenu.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.1 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.1.9.9e -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.3 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.3.0 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.4 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.4.2 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.5 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.5.0 -> libncurses.so.5.2*
lrwxrwxrwx    1 root     root           17 May  7  2002 libncurses.so.5.1 -> libncurses.so.5.2*
-rwxr-xr-x    1 root     root       265400 Jul 19  2001 libncurses.so.5.2*
-rwxr-xr-x    1 root     root        78068 Sep 10  2001 libnsl-2.2.4.so*
lrwxrwxrwx    1 root     root           15 May  7  2002 libnsl.so.1 -> libnsl-2.2.4.so*
-rwxr-xr-x    1 root     root        27232 Sep 10  2001 libnss1_compat-2.2.4.so*
lrwxrwxrwx    1 root     root           23 May  7  2002 libnss1_compat.so.1 -> libnss1_compat-2.2.4.so*
-rwxr-xr-x    1 root     root        11820 Sep 10  2001 libnss1_dns-2.2.4.so*
lrwxrwxrwx    1 root     root           20 May  7  2002 libnss1_dns.so.1 -> libnss1_dns-2.2.4.so*
-rwxr-xr-x    1 root     root        33336 Sep 10  2001 libnss1_files-2.2.4.so*
lrwxrwxrwx    1 root     root           22 May  7  2002 libnss1_files.so.1 -> libnss1_files-2.2.4.so*
-rwxr-xr-x    1 root     root        34932 Sep 10  2001 libnss1_nis-2.2.4.so*
lrwxrwxrwx    1 root     root           20 May  7  2002 libnss1_nis.so.1 -> libnss1_nis-2.2.4.so*
-rwxr-xr-x    1 root     root        44340 Sep 10  2001 libnss_compat-2.2.4.so*
lrwxrwxrwx    1 root     root           23 May  7  2002 libnss_compat.so.1 -> libnss1_compat-2.2.4.so*
lrwxrwxrwx    1 root     root           22 May  7  2002 libnss_compat.so.2 -> libnss_compat-2.2.4.so*
-rwxr-xr-x    1 root     root        13700 Sep 10  2001 libnss_dns-2.2.4.so*
lrwxrwxrwx    1 root     root           20 May  7  2002 libnss_dns.so.1 -> libnss1_dns-2.2.4.so*
lrwxrwxrwx    1 root     root           19 May  7  2002 libnss_dns.so.2 -> libnss_dns-2.2.4.so*
-rwxr-xr-x    1 root     root        38480 Sep 10  2001 libnss_files-2.2.4.so*
lrwxrwxrwx    1 root     root           22 May  7  2002 libnss_files.so.1 -> libnss1_files-2.2.4.so*
lrwxrwxrwx    1 root     root           21 May  7  2002 libnss_files.so.2 -> libnss_files-2.2.4.so*
-rwxr-xr-x    1 root     root        14248 Sep 10  2001 libnss_hesiod-2.2.4.so*
lrwxrwxrwx    1 root     root           22 May  7  2002 libnss_hesiod.so.2 -> libnss_hesiod-2.2.4.so*
-rwxr-xr-x    1 root     root        39188 Sep 10  2001 libnss_nis-2.2.4.so*
lrwxrwxrwx    1 root     root           20 May  7  2002 libnss_nis.so.1 -> libnss1_nis-2.2.4.so*
lrwxrwxrwx    1 root     root           19 May  7  2002 libnss_nis.so.2 -> libnss_nis-2.2.4.so*
-rwxr-xr-x    1 root     root        39908 Sep 10  2001 libnss_nisplus-2.2.4.so*
lrwxrwxrwx    1 root     root           23 May  7  2002 libnss_nisplus.so.2 -> libnss_nisplus-2.2.4.so*
lrwxrwxrwx    1 root     root           14 May  7  2002 libpam.so.0 -> libpam.so.0.75*
-rwxr-xr-x    1 root     root        29232 Sep 24  2001 libpam.so.0.75*
lrwxrwxrwx    1 root     root           19 May  7  2002 libpam_misc.so.0 -> libpam_misc.so.0.75*
-rwxr-xr-x    1 root     root         8444 Sep 24  2001 libpam_misc.so.0.75*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.1 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.1.9.9e -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.3 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.3.0 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.4 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.4.2 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.5.0 -> ../usr/lib/libpanel.so.5.2*
lrwxrwxrwx    1 root     root           26 May  7  2002 libpanel.so.5.1 -> ../usr/lib/libpanel.so.5.2*
-rwxr-xr-x    1 root     root         4600 Sep 10  2001 libpcprofile.so*
lrwxrwxrwx    1 root     root           16 May  7  2002 libpopt.so.0 -> libpopt.so.0.0.0*
-rwxr-xr-x    1 root     root        25092 Sep 19  2001 libpopt.so.0.0.0*
lrwxrwxrwx    1 root     root           16 May  7  2002 libproc.so.2.0 -> libproc.so.2.0.7*
-rwxr-xr-x    1 root     root        37164 Apr  9  2001 libproc.so.2.0.7*
-rwxr-xr-x    1 root     root       553713 Sep 10  2001 libpthread-0.9.so*
lrwxrwxrwx    1 root     root           17 May  7  2002 libpthread.so.0 -> libpthread-0.9.so*
lrwxrwxrwx    1 root     root           15 May  7  2002 libpwdb.so.0 -> libpwdb.so.0.61*
-rwxr-xr-x    1 root     root       125068 May  2  2001 libpwdb.so.0.61*
lrwxrwxrwx    1 root     root           18 May  7  2002 libreadline.so.4 -> libreadline.so.4.2*
lrwxrwxrwx    1 root     root           27 May  7  2002 libreadline.so.4.1 -> ../..//lib/libreadline.so.4*
-rwxr-xr-x    1 root     root       155960 Aug 26  2001 libreadline.so.4.2*
-rwxr-xr-x    1 root     root        60020 Sep 10  2001 libresolv-2.2.4.so*
lrwxrwxrwx    1 root     root           18 May  7  2002 libresolv.so.2 -> libresolv-2.2.4.so*
-rwxr-xr-x    1 root     root        25612 Sep 10  2001 librt-2.2.4.so*
lrwxrwxrwx    1 root     root           14 May  7  2002 librt.so.1 -> librt-2.2.4.so*
lrwxrwxrwx    1 root     root           12 May  7  2002 libss.so.2 -> libss.so.2.0*
-rwxr-xr-x    1 root     root        15736 Sep 13  2001 libss.so.2.0*
lrwxrwxrwx    1 root     root           19 May  7  2002 libtermcap.so.2 -> libtermcap.so.2.0.8*
-rwxr-xr-x    1 root     root        11992 Jul 30  2001 libtermcap.so.2.0.8*
-rwxr-xr-x    1 root     root        12884 Sep 10  2001 libthread_db-1.0.so*
lrwxrwxrwx    1 root     root           19 May  7  2002 libthread_db.so.1 -> libthread_db-1.0.so*
-rwxr-xr-x    1 root     root         8168 Sep 10  2001 libutil-2.2.4.so*
lrwxrwxrwx    1 root     root           16 May  7  2002 libutil.so.1 -> libutil-2.2.4.so*
lrwxrwxrwx    1 root     root           14 May  7  2002 libuuid.so.1 -> libuuid.so.1.2*
-rwxr-xr-x    1 root     root         9236 Sep 13  2001 libuuid.so.1.2*
lrwxrwxrwx    1 root     root           15 May  7 11:32 libvga.so -> libvga.so.1.4.3*
lrwxrwxrwx    1 root     root           15 May  7 11:32 libvga.so.1 -> libvga.so.1.4.3*
-rwxr-xr-x    1 root     bin        334728 Jun  2  2001 libvga.so.1.4.3*
lrwxrwxrwx    1 root     root           17 May  7 11:32 libvgagl.so -> libvgagl.so.1.4.3*
lrwxrwxrwx    1 root     root           17 May  7 11:32 libvgagl.so.1 -> libvgagl.so.1.4.3*
-rwxr-xr-x    1 root     bin         55156 Jun  2  2001 libvgagl.so.1.4.3*
lrwxrwxrwx    1 root     root           13 May  7  2002 libz.so.1 -> libz.so.1.1.3*
-rwxr-xr-x    1 root     root        55576 Sep 11  2001 libz.so.1.1.3*
-rw-r--r--    1 root     root            5 May  7 12:54 log
drwxr-xr-x    3 root     root         4096 Feb  6  1996 modules/
drwxr-xr-x    2 root     root         4096 May  7  2002 modutils/
drwxr-xr-x    3 root     root         4096 May  7  2002 security/

============================================================================   

/usr/lib
total 110572
drwxr-xr-x   45 root     root        24576 May  7 12:57 ./
drwxr-xr-x   13 root     root         4096 May  7  2002 ../
drwxr-xr-x    2 root     root         4096 May  7  2002 2.4.1/
drwxr-xr-x    3 root     root         4096 May  5 17:35 ImageMagick/
-rw-r--r--    1 root     root         2296 Sep 10  2001 Mcrt1.o
lrwxrwxrwx    1 root     root           16 May  7  2002 X11 -> ../X11R6/lib/X11/
-rwxr-xr-x    1 root     root         1023 Sep 24  2001 appletproxy.la*
-rwxr-xr-x    1 root     root        36964 Sep 24  2001 appletproxy.so*
-rw-r--r--    1 root     root          157 Mar 24  2001 artseffects.mcopclass
-rw-r--r--    1 root     root          307 Mar 24  2001 artseffects.mcoptype
-rwxr-xr-x    1 root     root         1016 Sep 21  2001 basicstyle.la*
-rwxr-xr-x    1 root     root         5908 Sep 21  2001 basicstyle.so*
-rw-r--r--    1 root     root         1024 Oct  2  2000 cracklib_dict.hwm
-rw-r--r--    1 root     root       214268 Oct  2  2000 cracklib_dict.pwd
-rw-r--r--    1 root     root        11356 Oct  2  2000 cracklib_dict.pwi
-rw-r--r--    1 root     root        10380 Sep 10  2001 crt1.o
-rw-r--r--    1 root     root         1228 Sep 10  2001 crti.o
-rw-r--r--    1 root     root          870 Sep 10  2001 crtn.o
-rwxr-xr-x    1 root     root          956 Sep 21  2001 dcopserver.la*
-rwxr-xr-x    1 root     root        79448 Sep 21  2001 dcopserver.so*
-rwxr-xr-x    1 root     root         1044 Sep 24  2001 extensionproxy.la*
-rwxr-xr-x    1 root     root        36220 Sep 24  2001 extensionproxy.so*
drwxr-xr-x    2 root     root         4096 Aug 30  2001 faces/
drwxr-xr-x    2 root     root         4096 Feb  6  1996 games/
drwxr-xr-x    3 root     root         4096 Feb  6  1996 gcc-lib/
drwxr-xr-x    2 root     root         4096 May  7  2002 gconv/
-rw-r--r--    1 root     root        29485 Sep 10  2001 gcrt1.o
drwxr-xr-x    3 root     root         4096 May  5 17:19 gdk-pixbuf/
drwxr-xr-x    3 root     root         4096 May  5 17:40 ghostscript/
drwxr-xr-x    3 root     root         4096 Sep 21  2001 gimp/
drwxr-xr-x    2 root     root         4096 May  5 17:33 gnupg/
drwxr-xr-x    2 root     root         4096 May  5 17:40 gphoto/
drwxr-xr-x    2 root     root         4096 May  5 17:33 gphoto2/
drwxr-xr-x    2 root     root         4096 May  5 17:33 gphoto2_port/
drwxr-xr-x    2 root     root         4096 May  5 17:33 gpio/
-rwxr-xr-x    1 root     root         3596 Jul  6  2001 grcat*
drwxr-xr-x    3 root     root         4096 May  5 17:41 gtk/
-rwxr-xr-x    1 root     root          995 Sep 21  2001 hcstyle.la*
-rwxr-xr-x    1 root     root        65980 Sep 21  2001 hcstyle.so*
drwxr-xr-x    2 root     root         4096 May  5 17:28 htdig/
drwxr-xr-x    3 root     root         4096 May  5 17:46 ical/
-rwxr-xr-x    1 root     root         1234 Sep 24  2001 kate.la*
-rwxr-xr-x    1 root     root        10424 Sep 24  2001 kate.so*
drwxr-xr-x    6 root     root         4096 Sep  6  2001 kbd/
-rwxr-xr-x    1 root     root         1120 Sep 21  2001 kbuildsycoca.la*
-rwxr-xr-x    1 root     root        92172 Sep 21  2001 kbuildsycoca.so*
-rwxr-xr-x    1 root     root         1214 Sep 19  2001 kchart.la*
-rwxr-xr-x    1 root     root         5332 Sep 19  2001 kchart.so*
-rwxr-xr-x    1 root     root         1037 Sep 20  2001 kcolorchooser.la*
-rwxr-xr-x    1 root     root         5180 Sep 20  2001 kcolorchooser.so*
-rwxr-xr-x    1 root     root         1009 Sep 21  2001 kconf_update.la*
-rwxr-xr-x    1 root     root        37784 Sep 21  2001 kconf_update.so*
-rwxr-xr-x    1 root     root         1083 Sep 21  2001 kcookiejar.la*
-rwxr-xr-x    1 root     root       137400 Sep 21  2001 kcookiejar.so*
drwxr-xr-x    2 root     root        12288 May  5 17:41 kde2/
-rwxr-xr-x    1 root     root         1064 Sep 21  2001 kded.la*
-rwxr-xr-x    1 root     root       108128 Sep 21  2001 kded.so*
-rwxr-xr-x    1 root     root         1155 Sep 24  2001 kdesktop.la*
-rwxr-xr-x    1 root     root       433120 Sep 24  2001 kdesktop.so*
-rwxr-xr-x    1 root     root         1197 Sep 24  2001 keditbookmarks.la*
-rwxr-xr-x    1 root     root       134748 Sep 24  2001 keditbookmarks.so*
-rwxr-xr-x    1 root     root         1120 Sep 24  2001 kfmclient.la*
-rwxr-xr-x    1 root     root        67156 Sep 24  2001 kfmclient.so*
-rwxr-xr-x    1 root     root         1256 Sep 19  2001 kformulamain.la*
-rwxr-xr-x    1 root     root         6940 Sep 19  2001 kformulamain.so*
-rwxr-xr-x    1 root     root         1092 Sep 24  2001 khotkeys.la*
-rwxr-xr-x    1 root     root        42560 Sep 24  2001 khotkeys.so*
-rwxr-xr-x    1 root     root         1185 Sep 24  2001 kicker.la*
-rwxr-xr-x    1 root     root       657504 Sep 24  2001 kicker.so*
-rwxr-xr-x    1 root     root         1167 Sep 21  2001 kio_http_cache_cleaner.la*
-rwxr-xr-x    1 root     root        20956 Sep 21  2001 kio_http_cache_cleaner.so*
-rwxr-xr-x    1 root     root         1209 Sep 20  2001 kio_kamera.la*
-rwxr-xr-x    1 root     root        27016 Sep 20  2001 kio_kamera.so*
-rwxr-xr-x    1 root     root         1062 Sep 20  2001 kio_lan.la*
-rwxr-xr-x    1 root     root        52292 Sep 20  2001 kio_lan.so*
-rwxr-xr-x    1 root     root         1120 Sep 21  2001 kio_uiserver.la*
-rwxr-xr-x    1 root     root       139376 Sep 21  2001 kio_uiserver.so*
-rwxr-xr-x    1 root     root         1207 Sep 19  2001 kivio.la*
-rwxr-xr-x    1 root     root         8732 Sep 19  2001 kivio.so*
-rwxr-xr-x    1 root     root         1208 Sep 24  2001 kjobviewer.la*
-rwxr-xr-x    1 root     root        14804 Sep 24  2001 kjobviewer.so*
-rwxr-xr-x    1 root     root         1099 Sep 21  2001 klauncher.la*
-rwxr-xr-x    1 root     root       110124 Sep 21  2001 klauncher.so*
-rwxr-xr-x    1 root     root         1148 Sep 24  2001 klegacyimport.la*
-rwxr-xr-x    1 root     root        28768 Sep 24  2001 klegacyimport.so*
-rwxr-xr-x    1 root     root         1009 Sep 21  2001 klegacystyle.la*
-rwxr-xr-x    1 root     root       104128 Sep 21  2001 klegacystyle.so*
-rwxr-xr-x    1 root     root         1085 Sep 24  2001 klipper.la*
-rwxr-xr-x    1 root     root       116320 Sep 24  2001 klipper.so*
-rwxr-xr-x    1 root     root         1120 Sep 24  2001 kmenuedit.la*
-rwxr-xr-x    1 root     root       131332 Sep 24  2001 kmenuedit.so*
-rwxr-xr-x    1 root     root         1024 Sep 20  2001 kmixctrl.la*
-rwxr-xr-x    1 root     root        43184 Sep 20  2001 kmixctrl.so*
-rwxr-xr-x    1 root     root         1194 Sep 21  2001 knotify.la*
-rwxr-xr-x    1 root     root        59112 Sep 21  2001 knotify.so*
-rwxr-xr-x    1 root     root         1162 Sep 24  2001 konqueror.la*
-rwxr-xr-x    1 root     root       609632 Sep 24  2001 konqueror.so*
-rwxr-xr-x    1 root     root         1166 Sep 24  2001 konsole.la*
-rwxr-xr-x    1 root     root       143996 Sep 24  2001 konsole.so*
-rwxr-xr-x    1 root     root         1221 Sep 19  2001 kontour.la*
-rwxr-xr-x    1 root     root         7436 Sep 19  2001 kontour.so*
-rwxr-xr-x    1 root     root         1246 Sep 19  2001 koshell.la*
-rwxr-xr-x    1 root     root        60232 Sep 19  2001 koshell.so*
-rwxr-xr-x    1 root     root         1242 Sep 19  2001 kpresenter.la*
-rwxr-xr-x    1 root     root         7064 Sep 19  2001 kpresenter.so*
-rwxr-xr-x    1 root     root         1092 Sep 20  2001 ksirc.la*
-rwxr-xr-x    1 root     root      1373356 Sep 20  2001 ksirc.so*
-rwxr-xr-x    1 root     root         1221 Sep 19  2001 kspread.la*
-rwxr-xr-x    1 root     root         6948 Sep 19  2001 kspread.so*
-rwxr-xr-x    1 root     root         1016 Sep 21  2001 kstepstyle.la*
-rwxr-xr-x    1 root     root        34696 Sep 21  2001 kstepstyle.so*
-rwxr-xr-x    1 root     root         1163 Sep 20  2001 kview.la*
-rwxr-xr-x    1 root     root       186936 Sep 20  2001 kview.so*
-rwxr-xr-x    1 root     root          974 Sep 24  2001 kwin.la*
-rwxr-xr-x    1 root     root       393696 Sep 24  2001 kwin.so*
-rwxr-xr-x    1 root     root         1207 Sep 19  2001 kword.la*
-rwxr-xr-x    1 root     root         6960 Sep 19  2001 kword.so*
-rwxr-xr-x    1 root     root         1248 Sep 24  2001 kwrite.la*
-rwxr-xr-x    1 root     root        50912 Sep 24  2001 kwrite.so*
-rwxr-xr-x    1 root     root         1166 Sep 24  2001 kwrited.la*
-rwxr-xr-x    1 root     root        16672 Sep 24  2001 kwrited.so*
-rwxr-xr-x    1 root     root          974 Sep 24  2001 kxkb.la*
-rwxr-xr-x    1 root     root        61460 Sep 24  2001 kxkb.so*
-rwxr-xr-x    1 root     root         1092 Sep 24  2001 kxmlrpcd.la*
-rwxr-xr-x    1 root     root       146456 Sep 24  2001 kxmlrpcd.so*
-rw-r--r--    1 root     root        26934 Sep 10  2001 libBrokenLocale.a
lrwxrwxrwx    1 root     root           30 May  5 17:29 libBrokenLocale.so -> ../../lib/libBrokenLocale.so.1*
-rwxr-xr-x    1 root     root          925 Sep 21  2001 libDCOP.la*
lrwxrwxrwx    1 root     root           16 May  5 17:22 libDCOP.so -> libDCOP.so.1.0.0*
lrwxrwxrwx    1 root     root           16 May  5 17:22 libDCOP.so.1 -> libDCOP.so.1.0.0*
-rwxr-xr-x    1 root     root       204184 Sep 21  2001 libDCOP.so.1.0.0*
drwxr-xr-x    9 root     root         4096 May  5 17:32 libDrakX/
lrwxrwxrwx    1 root     root           18 May  5 17:35 libHermes.so.1 -> libHermes.so.1.0.0*
-rwxr-xr-x    1 root     root       105820 Aug 30  2001 libHermes.so.1.0.0*
lrwxrwxrwx    1 root     root           19 May  5 17:19 libIDL-0.6.so.0 -> libIDL-0.6.so.0.4.4*
-rwxr-xr-x    1 root     root       173912 Jul 23  2001 libIDL-0.6.so.0.4.4*
lrwxrwxrwx    1 root     root           16 May  5 17:19 libIIOP.so.0 -> libIIOP.so.0.5.8*
-rwxr-xr-x    1 root     root        53216 Jul 23  2001 libIIOP.so.0.5.8*
lrwxrwxrwx    1 root     root           18 May  5 17:19 libImlib.so.1 -> libImlib.so.1.9.11*
-rwxr-xr-x    1 root     root       194264 Aug 22  2001 libImlib.so.1.9.11*
lrwxrwxrwx    1 root     root           21 May  5 17:34 libMagick++.so.5 -> libMagick++.so.5.0.38*
-rwxr-xr-x    1 root     root       381516 Sep 17  2001 libMagick++.so.5.0.38*
lrwxrwxrwx    1 root     root           19 May  5 17:34 libMagick.so.5 -> libMagick.so.5.0.38*
-rwxr-xr-x    1 root     root       973784 Sep 17  2001 libMagick.so.5.0.38*
lrwxrwxrwx    1 root     root           17 May  5 17:19 libORBit.so.0 -> libORBit.so.0.5.8*
-rwxr-xr-x    1 root     root       285436 Jul 23  2001 libORBit.so.0.5.8*
lrwxrwxrwx    1 root     root           26 May  5 17:19 libORBitCosNaming.so.0 -> libORBitCosNaming.so.0.5.8*
-rwxr-xr-x    1 root     root        29796 Jul 23  2001 libORBitCosNaming.so.0.5.8*
lrwxrwxrwx    1 root     root           21 May  5 17:19 libORBitutil.so.0 -> libORBitutil.so.0.5.8*
-rwxr-xr-x    1 root     root         4424 Jul 23  2001 libORBitutil.so.0.5.8*
lrwxrwxrwx    1 root     root           19 May  5 17:27 libSDL-1.2.so.0 -> libSDL-1.2.so.0.0.2*
-rwxr-xr-x    1 root     root       345356 Aug  7  2001 libSDL-1.2.so.0.0.2*
lrwxrwxrwx    1 root     root           25 May  5 17:35 libSDL_image-1.2.so.0 -> libSDL_image-1.2.so.0.0.0*
-rwxr-xr-x    1 root     root        24600 Jul 23  2001 libSDL_image-1.2.so.0.0.0*
lrwxrwxrwx    1 root     root           23 May  5 17:38 libSDL_net-1.2.so.0 -> libSDL_net-1.2.so.0.0.2*
-rwxr-xr-x    1 root     root        11244 Aug  3  2001 libSDL_net-1.2.so.0.0.2*
lrwxrwxrwx    1 root     root           23 May  5 17:38 libSDL_ttf-1.2.so.0 -> libSDL_ttf-1.2.so.0.2.0*
-rwxr-xr-x    1 root     root        17380 May 29  2001 libSDL_ttf-1.2.so.0.2.0*
lrwxrwxrwx    1 root     root           18 May  5 17:25 libVFlib.so.2 -> libVFlib.so.2.25.1*
-rwxr-xr-x    2 root     root       187864 Jul 23  2001 libVFlib.so.2.25.1*
lrwxrwxrwx    1 root     root           19 May  5 17:25 libVFlib2.so.24 -> libVFlib2.so.24.0.3*
-rwxr-xr-x    2 root     root       187864 Jul 23  2001 libVFlib2.so.24.0.3*
lrwxrwxrwx    1 root     root           14 May  5 17:34 libaa.so.1 -> libaa.so.1.0.3*
-rwxr-xr-x    1 root     root        92472 Jun 23  2001 libaa.so.1.0.3*
-rw-r--r--    1 root     root       199274 Sep 10  2001 libanl.a
lrwxrwxrwx    1 root     root           21 May  5 17:29 libanl.so -> ../../lib/libanl.so.1*
lrwxrwxrwx    1 root     root           14 May  5 17:35 libao.so.2 -> libao.so.2.0.1*
-rwxr-xr-x    1 root     root        15644 Aug 27  2001 libao.so.2.0.1*
drwxr-xr-x    2 root     root         4096 May  5 17:35 libao2/
lrwxrwxrwx    1 root     root           20 May  5 17:20 libart_lgpl.so.2 -> libart_lgpl.so.2.2.0*
-rwxr-xr-x    1 root     root        64332 Sep 17  2001 libart_lgpl.so.2.2.0*
lrwxrwxrwx    1 root     root           30 May  5 17:36 libarts_mpeglib-0.3.0.so.0 -> libarts_mpeglib-0.3.0.so.0.0.3*
-rwxr-xr-x    1 root     root       285924 Sep 20  2001 libarts_mpeglib-0.3.0.so.0.0.3*
-rwxr-xr-x    1 root     root         1061 Sep 20  2001 libarts_mpeglib.la*
lrwxrwxrwx    1 root     root           30 May  5 17:36 libarts_mpeglib.so -> libarts_mpeglib-0.3.0.so.0.0.3*
-rwxr-xr-x    1 root     root         1029 Sep 20  2001 libarts_splay.la*
lrwxrwxrwx    1 root     root           22 May  5 17:36 libarts_splay.so -> libarts_splay.so.0.0.0*
lrwxrwxrwx    1 root     root           22 May  5 17:36 libarts_splay.so.0 -> libarts_splay.so.0.0.0*
-rwxr-xr-x    1 root     root        70272 Sep 20  2001 libarts_splay.so.0.0.0*
-rwxr-xr-x    1 root     root         1039 Sep 20  2001 libartsbuilder.la*
lrwxrwxrwx    1 root     root           23 May  5 17:36 libartsbuilder.so -> libartsbuilder.so.0.0.0*
lrwxrwxrwx    1 root     root           23 May  5 17:36 libartsbuilder.so.0 -> libartsbuilder.so.0.0.0*
-rwxr-xr-x    1 root     root       498112 Sep 20  2001 libartsbuilder.so.0.0.0*
-rwxr-xr-x    1 root     root          723 Sep 21  2001 libartsc.la*
lrwxrwxrwx    1 root     root           17 May  5 17:21 libartsc.so -> libartsc.so.0.0.0*
lrwxrwxrwx    1 root     root           17 May  5 17:21 libartsc.so.0 -> libartsc.so.0.0.0*
-rwxr-xr-x    1 root     root        22264 Sep 21  2001 libartsc.so.0.0.0*
-rwxr-xr-x    1 root     root         1104 Sep 21  2001 libartscbackend.la*
lrwxrwxrwx    1 root     root           24 May  5 17:21 libartscbackend.so -> libartscbackend.so.0.0.0*
lrwxrwxrwx    1 root     root           24 May  5 17:21 libartscbackend.so.0 -> libartscbackend.so.0.0.0*
-rwxr-xr-x    1 root     root        35140 Sep 21  2001 libartscbackend.so.0.0.0*
-rwxr-xr-x    1 root     root          758 Sep 21  2001 libartsdsp.la*
lrwxrwxrwx    1 root     root           19 May  5 17:21 libartsdsp.so -> libartsdsp.so.0.0.0*
lrwxrwxrwx    1 root     root           19 May  5 17:21 libartsdsp.so.0 -> libartsdsp.so.0.0.0*
-rwxr-xr-x    1 root     root        10652 Sep 21  2001 libartsdsp.so.0.0.0*
-rwxr-xr-x    1 root     root          748 Sep 21  2001 libartsdsp_st.la*
lrwxrwxrwx    1 root     root           22 May  5 17:21 libartsdsp_st.so -> libartsdsp_st.so.0.0.0*
lrwxrwxrwx    1 root     root           22 May  5 17:21 libartsdsp_st.so.0 -> libartsdsp_st.so.0.0.0*
-rwxr-xr-x    1 root     root        29124 Sep 21  2001 libartsdsp_st.so.0.0.0*
-rwxr-xr-x    1 root     root         1176 Sep 20  2001 libartseffects.la*
-rwxr-xr-x    1 root     root       120276 Sep 20  2001 libartseffects.so*
-rwxr-xr-x    1 root     root          994 Sep 21  2001 libartsflow.la*
lrwxrwxrwx    1 root     root           20 May  5 17:21 libartsflow.so -> libartsflow.so.0.0.0*
lrwxrwxrwx    1 root     root           20 May  5 17:21 libartsflow.so.0 -> libartsflow.so.0.0.0*
-rwxr-xr-x    1 root     root       408364 Sep 21  2001 libartsflow.so.0.0.0*
-rwxr-xr-x    1 root     root          919 Sep 21  2001 libartsflow_idl.la*
Linux user #283039

Gosh, I love Linux Quake.


foobar

  • Member
  • **
  • Posts: 308
  • Kudos: 0
    • http://www.fuckmicrosoft.com
No recognition
« Reply #6 on: 7 May 2002, 20:16 »
quote:
Originally posted by X11:
I had simlar problems.... try chmod


uhh ... i'm no linux genius, but since i'm running everything (exept KDE) as root, that shouldn't be a problem, methinks .. ??

[ May 07, 2002: Message edited by: -=f00bar=- ]

Linux user #283039

Gosh, I love Linux Quake.


voidmain

  • VIP
  • Member
  • ***
  • Posts: 5,605
  • Kudos: 184
    • http://voidmain.is-a-geek.net/
No recognition
« Reply #7 on: 7 May 2002, 20:43 »
foobar, rather than symbolic linking the newer libraries to the older (and finding it will not work) why not just copy the older libraries from your other Linux box?  You won't affect any of your other apps because they use the newer libraries. NOTE: before you copy the old libraries to said box, remove those symbolic links that you created or you will overwrite your "newer" libraries.

Either that or get a more up to date version of squake that is compiled against the newer libraries.

You might also check here:
http://www.tldp.org/HOWTO/Quake-HOWTO-2.html

And if you feel really froggy you can get the Quake source code from ftp://ftp.idsoftware.com/idstuff/source/ although I don't see the squake code. I think squake is pretty much dead but I could be wrong...

The last place I find source code for squake is http://www.polito.it/~scarsi/squake.html but it's really old...

[ May 07, 2002: Message edited by: VoidMain ]

Someone please remove this account. Thanks...