Reply To: Installation on AMS 150 (Fujitsu Siemens)

#12896
qwertzy0815
Participant

With help of fizze I downloaded mt-daapd_svn-1673-1ds101g_powerpc.ipk, manually extracted it to my Macbook and copied the expanded /opt directory to the AMS 150 into /mnt.

I changed the related scripts and conf files to the new path /mnt/opt.

When I try to start with

/mnt/opt/etc/init.d/S60mt-daapd

i receive

/mnt/opt/etc/init.d/S60mt-daapd: 13: /mnt/opt/sbin/mt-daapd: not found

My S60mt-daapd is this

#!/bin/sh

# make sure our shared libraries are in the path.
# if we get /etc/ld.so.conf working, this export
# can be removed
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/mnt/opt/lib

if [ -n "`pidof mt-daapd`" ] ; then
killall mt-daapd 2>/dev/null
fi

sleep 2
/mnt/opt/sbin/mt-daapd -c /mnt/opt/etc/mt-daapd/mt-daapd.conf

The exports is

export HOME='/root'
export LD_LIBRARY_PATH=':/mnt/opt/lib'
export LOGNAME='root'
export OLDPWD='/mnt/opt/etc/mt-daapd'
export PWD='/mnt/opt/etc'
export SHELL='/bin/sh'
export TERM='xterm-color'
export USER='root'

Even when i try to start in

/mnt/opt/sbin

i receive

-sh: ./mt-daapd: not found

Is this just wrong configuration from my side?