Page 1 of 2 12 LastLast
Results 1 to 10 of 16

Thread: Smokin' Guns

  1. #1
    Join Date
    Nov 2008
    Location
    Fortson, GA
    Beans
    1,008
    Distro
    Ubuntu Development Release

    Smokin' Guns

    Anybody else tried this game? I think it's a keeper!
    -o)
    /\\
    _\_V
    Message void if penguin is violated...Don't mess with the penguin.

  2. #2
    Join Date
    Apr 2009
    Location
    Wasteland
    Beans
    90

    Re: Smokin' Guns

    I can't get it to play (:
    The ace of Enjoyed wasted time and time spent in wasteland. The internet needs more bandwidth and more linux...=D>

  3. #3
    Join Date
    Nov 2008
    Location
    Fortson, GA
    Beans
    1,008
    Distro
    Ubuntu Development Release

    Re: Smokin' Guns

    Make sure that the file named smokinguns.x86 is marked as executable. After that try launching from the terminal to see the error codes. For instance, say that the folder Smokin' Guns is in your Home folder. Rename that folder to Smokin_Guns. Then, to launch from the terminal just:

    Code:
    cd Smokin_Guns
    Followed by:

    Code:
    ./smokinguns.x86
    If it gives you error codes and you need help to resolve, just copy/paste in your next post.
    -o)
    /\\
    _\_V
    Message void if penguin is violated...Don't mess with the penguin.

  4. #4
    Join Date
    Apr 2009
    Location
    Wasteland
    Beans
    90

    Re: Smokin' Guns

    Ok, here is the output from the terminal:



    nick@nick-desktop:~$ cd ~/Smokin_Guns
    nick@nick-desktop:~/Smokin_Guns$ ./smokinguns.x86
    ./smokinguns.x86: error while loading shared libraries: libopenal.so.0: cannot open shared object file: No such file or directory



    Seems like I need yet another library: I've had problems with almost all of my games and libs in 9.04.....................Alien Arena 2009, et, UrT, now this............................Wow! Not easy!
    The ace of Enjoyed wasted time and time spent in wasteland. The internet needs more bandwidth and more linux...=D>

  5. #5
    Join Date
    Nov 2008
    Location
    Fortson, GA
    Beans
    1,008
    Distro
    Ubuntu Development Release

    Re: Smokin' Guns

    You can try installing with:

    Code:
    sudo apt-get install libopenal0a
    If that doesn't get it (it may be different on Jaunty...I'm still on Hardy), just search in synaptic for libopenal.
    -o)
    /\\
    _\_V
    Message void if penguin is violated...Don't mess with the penguin.

  6. #6
    Join Date
    Oct 2007
    Beans
    207
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Smokin' Guns

    Quote Originally Posted by accLinux View Post
    Ok, here is the output from the terminal:

    nick@nick-desktop:~$ cd ~/Smokin_Guns
    nick@nick-desktop:~/Smokin_Guns$ ./smokinguns.x86
    ./smokinguns.x86: error while loading shared libraries: libopenal.so.0: cannot open shared object file: No such file or directory
    I had the same issue - try
    Code:
    sudo ln -s /usr/lib/libopenal.so.1 /usr/lib/libopenal.so.0
    in a terminal.
    Intel E8400 - 4gb Corsair DDR2-6400 - 4.5tb combined diskspace - Nvidia 9600T 1024mb - Samsung 22" WS & Eizo 19" (Twinview 2960x1050)
    The Shrooms | The Laughing Wolf | Amarok 1.4 in Jaunty | Still praying for MediaMonkey Linux

  7. #7
    Join Date
    Aug 2005
    Location
    Philadelphia, PA, USA
    Beans
    2,774
    Distro
    Lubuntu 12.10 Quantal Quetzal

    Re: Smokin' Guns

    Here is an article about "Smokin' Guns" from linux.com:
    http://www.linux.com/archive/feature/142226
    Registered Linux User #422464 http://linuxcounter.net/
    Use the search engine that respects your privacy rights: https://startpage.com/

  8. #8
    Join Date
    Apr 2009
    Location
    Wasteland
    Beans
    90

    Re: Smokin' Guns

    Quote Originally Posted by PureLoneWolf View Post
    I had the same issue - try
    Code:
    sudo ln -s /usr/lib/libopenal.so.1 /usr/lib/libopenal.so.0
    in a terminal.
    Hey thanks man. it now works (:



    Where do you guys get these terminal commands, and what does this one do?
    The ace of Enjoyed wasted time and time spent in wasteland. The internet needs more bandwidth and more linux...=D>

  9. #9
    Join Date
    Nov 2008
    Location
    Fortson, GA
    Beans
    1,008
    Distro
    Ubuntu Development Release

    Re: Smokin' Guns

    You're just making a symbolic link (in Windows terms these would be called shortcuts). Let's break down that command.

    Code:
    sudo
    is Super User DO.

    Code:
    ln -s
    is LiNk with a switch of -s (symbolic)

    Code:
    /usr/lib/libopenal.so.1
    is the file to be linked to and finally,

    Code:
    /usr/lib/libopenal.so.0
    is the link itself.

    It's refreshing to see someone who actually wants to know what the commands do and why. Most people just want it to work with little to no regard as to why it works. Thank you for being genuinely interested.
    -o)
    /\\
    _\_V
    Message void if penguin is violated...Don't mess with the penguin.

  10. #10
    Join Date
    Apr 2009
    Location
    Wasteland
    Beans
    90

    Re: Smokin' Guns

    Quote Originally Posted by spcwingo View Post
    You're just making a symbolic link (in Windows terms these would be called shortcuts). Let's break down that command.

    Code:
    sudo
    is Super User DO.

    Code:
    ln -s
    is LiNk with a switch of -s (symbolic)

    Code:
    /usr/lib/libopenal.so.1
    is the file to be linked to and finally,

    Code:
    /usr/lib/libopenal.so.0
    is the link itself.

    It's refreshing to see someone who actually wants to know what the commands do and why. Most people just want it to work with little to no regard as to why it works. Thank you for being genuinely interested.
    Thanks for the explaination! Learning more all the time!
    The ace of Enjoyed wasted time and time spent in wasteland. The internet needs more bandwidth and more linux...=D>

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •