ID:1465044
 
hello to all i have a problem to host in linux
follow this tutorial(http://www.byond.com/ members/?command=view_post&post=34552) step by step and suddenly I get this error:

http://i1155.photobucket.com/albums/p553/JEY_SENSEY/ cosas%20privadas/aaaaa.png

when typing ''DreamDaemon --version'' would have to show the type of version, but show ''permission denied'' ...

help me pleaseĦĦĦĦĦ
Since you are using root, you would be much better off just installing it globally using

make install

When you are inside the byond folder.
thanks for the fast response

i now used "make install" but when typing ''DreamDaemon --version'' show ''permission denied'' again.

http://i1155.photobucket.com/albums/p553/JEY_SENSEY/ asdasd.png

Run these two and post the output, no need for a screenshot with these two.

la -la /usr/local/bin/

whoami

The first one will print out the files and permission of that directory, the second is pretty self explainitory.
Last login: Mon Jan  6 17:08:33 2014 from 181.54.165.xxx
root@soydelverde:~# la -la /root/local/byond/bin
-bash: la: command not found
root@soydelverde:~# la -la /root/byond/bin
-bash: la: command not found
root@soydelverde:~# la -la /usr/local/byond/bin
-bash: la: command not found
root@soydelverde:~#
Argh sorry, it's

ls -la /usr/local/byond/bin
ls -la /usr/local/bin/
ok now show this:
root@soydelverde:~# ls -la /usr/local/byond/bin
total 45216
drwxr-sr-x 2 root staff 4096 Jan 6 16:56 .
drwxr-sr-x 5 root staff 4096 Jan 6 16:56 ..
-rwxr-xr-x 1 root staff 450 Jan 6 16:56 byondsetup
-rw-r--r-- 1 root staff 24756 Jan 6 16:56 DreamDaemon
-rw-r--r-- 1 root staff 15056 Jan 6 16:56 DreamDownload
-rw-r--r-- 1 root staff 18656 Jan 6 16:56 DreamMaker
-rw-r--r-- 1 root staff 5417764 Jan 6 16:56 libbyond.so
-rw-r--r-- 1 root staff 2178104 Jan 6 16:56 libext.so
-rw-r--r-- 1 root staff 3393516 Jan 6 16:56 NaruterosV3.dmb
-rw-r--r-- 1 root staff 35228905 Jan 6 16:56 NaruterosV3.rsc

//----------------------------
root@soydelverde:~# whoami
root
chown -R root.root /usr/local/byond

Then give it a ago, probably won't work because of the permissions.

Or remove the folder entirely rm -rf /usr/local/byond

and run make install again.

Not sure why the group is staff?
I dont have idea that the group is staff.

Last login: Mon Jan  6 17:24:03 2014 from 181.54.165.206
root@soydelverde:~# chown -R root.root /usr/local/byond
root@soydelverde:~# //NOTHING IS DISPLAYED

//-------------------------
root@soydelverde:~# rm -rf /usr/local/byond
root@soydelverde:~#//NOTHING IS DISPLAYED

Solved this over Skype / Team Viewer

When using make install the files were being assign user root and group staff, the file permissions were also out of whack (not executable).

Fix -

Recursively chown the /usr/local/byond folder
chown -R root.root /usr/local/byond
NO output is given

Recursively chmod 755 the /usr/local/byond folder (probably overkill items in bin folder only need it)
chmod -R 755 /usr/local/byond
NO output is given

DreamDaemon -version

Now works.
thank you very much A.T.H.K

**CLOSED POST**