You are not logged in.
Pages: 1
Ohaidere, I've been trying to run a BF1942 Linux dedicated server from the links you've provided(like the 1.6-rc2.run, upgraded it and everything, however when trying to start the server i get this:
start.sh: using dynamically linked binary
start.sh: 34: exec: ./bf1942_lnxded: not found
I've tried not upgrading to the next version. I've tried every possible combination.
Another thing is when running the .run file at the end after accepting the EULA's and selecting the directory of it i get this.
./license.sh: 55: test: -a: unexpected operator
Installation complete.
Not sure if that has anything todo with it
The system is running Ubuntu sever 13.10 X64.
Fixed the license warning, but i still get the start.sh: error.
Probably, you have to create symbolic file manually, but start.sh script should do it:
ln -s bf1942_lnxded.static bf1942_lnxded
Or edit start.sh script and remove these lines:
# use ldd to look for 'not found' errors
if ldd bf1942_lnxded.dynamic 2>&1 | grep -q -i not\ found; then
else
echo "$0: using dynamically linked binary";
ln -s bf1942_lnxded.dynamic bf1942_lnxded;
fi
Probably, you have to create symbolic file manually, but start.sh script should do it:
ln -s bf1942_lnxded.static bf1942_lnxded
Or edit start.sh script and remove these lines:
# use ldd to look for 'not found' errors if ldd bf1942_lnxded.dynamic 2>&1 | grep -q -i not\ found; then else echo "$0: using dynamically linked binary"; ln -s bf1942_lnxded.dynamic bf1942_lnxded; fi
I just reinstalled the vps with a x86 version of ubuntu, 1942 probably doesn't like x64
In this topic it is explained how to run BF1942 Linux server in 64 bits OS.
Pages: 1