ID:1589402
 
Using this guide for an Ubuntu install using AWS basic.
http://www.byond.com/forum/?post=724528
Everything went smooth until I got to step 7.
That's the last command in the first code box in the first post.

I get
-bash: /home/ubuntu/byond/bin/DreamDaemon: No such file or directory

I can access the manual just fine, I've tried installing the 32 bit libraries.

sudo apt-get install ia32-libs

And this has yielded no results.

I tried a google search of this site, and I tried an internal search, but nothing I've found so far seems to help.
Try `ldd /home/ubuntu/byond/bin/DreamDaemon` and see what it's looking for.

ubuntu@ip-###-##-#-##:~$ ldd /home/ubuntu/byond/bin/DreamDaemon
not a dynamic executable

This is what was returned.
Make install usually installs it to /use/local/byond/bin. Are you sure you're testing the right location?

stat /home/ubuntu/byond/bin/DreamDaemon

To see what's there.
So two things, I've restarted the server since my last post, and I tried running it hoping maybe a dependency wasn't quite in place before.

That returns:
-bash: /usr/local/bin/DreamDaemon: No such file or directory

Using "stat /home/ubuntu/byond/bin/DreamDaemon" returns:

File: ‘/home/ubuntu/byond/bin/DreamDaemon’
Size: 35028 Blocks: 72 IO Block: 4096 regular file
Device: ca01h/51713d Inode: 143275 Links: 1
Access: (0755/-rwxr-xr-x) Uid: ( 1000/ ubuntu) Gid: ( 1000/ ubuntu)
Access: 2014-06-02 02:37:50.557991000 +0000
Modify: 2014-05-16 13:10:44.000000000 +0000
Change: 2014-06-01 23:47:12.273991000 +0000
Birth: -




Right okay, so you're local installed.

cd /home/ubuntu/byond/bin
source ./byondsetup
./DreamDaemon

The fact ldd isn't picking up it's a dynamic executable does still suggest missing 32 bit libraries.

The set you tend to need on Ubuntu is:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 libstdc++6:i386

ia32-libs has been deprecated on Ubuntu, so that's a no-go.
Alright, thanks, will give it a go soon-ish.
The settings we use on Travis install these packages: `libc6:i386 libgcc1:i386 libstdc++6:i386`.