• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Bought a dedicated

Benny

Member
Joined
Jul 19, 2008
Messages
560
Reaction score
6
I bought a dedicated from leaseweb, i got all the emails and stuff via my email, but i have no clue how to get onto remote access, and leaseweb has'nt been very supportive either, can anyone help me out? thanks
 
I contacted them and they said I had to install a graphic interface with commandprompt. I had to email them and then they would search a how to to install a graphic interface with commandprompt
 
Last edited:
haha, i just installed a gui on my server, since its debian instead of windows, lame weblease, and i used the program they told me to, and i installed a gui, then reset my dedicated and i cant even get on it now, it just says network error xD
 
Code:
g++ -I. -I/usr/include/libxml2 -I/usr/include/lua5.1 -Werror -Wall -O1 -D__NO_HOMEDIR_CONF__ -D__USE_MYSQL__ -D__USE_SQLITE__ -o ./TheForgottenServer account.o actions.o admin.o allocator.o ban.o baseevents.o beds.o creature.o creatureevent.o chat.o combat.o commands.o condition.o configmanager.o connection.o container.o cylinder.o database.o databasemysql.o databasesqlite.o depot.o exception.o fileloader.o game.o gui.o house.o housetile.o ioguild.o iologindata.o iomap.o iomapserialize.o inputbox.o item.o items.o logger.o luascript.o mailbox.o map.o md5.o monster.o monsters.o movement.o networkmessage.o npc.o otserv.o outfit.o outputmessage.o party.o player.o playerbox.o position.o protocol.o protocolgame.o protocollogin.o quests.o raids.o rsa.o scheduler.o scriptmanager.o server.o sha1.o spawn.o spells.o status.o talkaction.o tasks.o teleport.o textlogger.o thing.o tile.o tools.o trashholder.o vocation.o waitlist.o weapons.o  -L/usr/lib -lxml2 -lpthread -llua5.1 -lgmp -lmysqlclient -lboost_regex -lsqlite3 -llua5.1-sql-mysql -ldl -lboost_system
connection.o: In function `Connection::parsePacket(boost::system::error_code const&)':
connection.cpp:(.text+0x2192): undefined reference to `vtable for ProtocolOld'
collect2: ld returned 1 exit status
make: *** [theforgottenserver] Error 1
hosted-by:~/forgottenserver# ls
while compliing :<
 
Hmmmmmmmmm...

apt-get install
* libboost-date-time-dev
libboost-date-time1.34.1 (Has been installed with libboost-date-time-dev)
libboost-dev (Has been installed with libboost-date-time-dev)
* libboost-regex-dev
libboost-regex1.34.1 (Has been installed with libboost-regex1.34.1)
* libboost-signals-dev
libboost-signals1.34.1 (Has been installed with libboost-signals1.34.1)
* libboost-thread-dev
libboost-thread1.34.1 (Has been installed with libboost-thread1.34.1)
libxml2 (Has been installed)
* liblua5.1-0
* liblua5.1-0-dev
* liblua50
* liblua50-dev
liblualib50 (Has been installed)
* liblualib50-dev
lua50 (Has been installed)
* libsqlite0
* libsqlite0-dev
libsqlite3-0 (Has been installed with)
* libsqlite3-dev
* sqlite3
* lua5.1
* libmysql++-dev
* libgmp3-dev
* subversion
* make
* g++
* libxml2-dev
* libxml++2.6-dev
* liblua5.1-sql-mysql-dev
liblua5.1-sql-mysql-2 (Has been installed)
* liblua5.1-sql-sqlite-dev
liblua5.1-sql-sqlite2 (Has been installed)
libmysqlclient15-dev (Has been installed)
mysql-client-5.0 (Already have the server, if you are installed LAMP)
mysql-common (Already have the server, if you are installed LAMP)
mysql-server-5.0 (Already have the server, if you are installed LAMP)
gcc (Has been installed with g++)
cpp (Has been installed with g++)
* automake
autoconf (Has been installed)
pkg-config (Has been installed)

Your command line is:
sudo apt-get install libboost-date-time-dev libboost-regex-dev libboost-signals-dev libboost-thread-dev liblua5.1-0 liblua5.1-0-dev liblua50 liblua50-dev liblualib50-dev libsqlite0 libsqlite0-dev libsqlite3-dev sqlite3 lua5.1 libmysql++-dev libgmp3-dev subversion make g++ libxml2-dev libxml++2.6-dev liblua5.1-sql-mysql-dev liblua5.1-sql-sqlite-dev automake

Boost: (by Elf)

Logged with root:

Code:
sudo -i
Code:
wget http://kent.dl.sourceforge.net/sourceforge/asio/boost_asio_0_3_8.tar.gz
Code:
wget http://switch.dl.sourceforge.net/sourceforge/boost/boost_1_34_1.tar.gz
Code:
tar -zxvf boost_asio_0_3_8.tar.gz
Code:
tar -zxvf boost_1_34_1.tar.gz
Code:
cp boost_asio_0_3_8/boost /usr/local/include -r
Code:
cp boost_asio_0_3_8/libs boost_1_34_1 -r
Code:
cd boost_1_34_1/libs/system/src/
Code:
g++ -shared -Wl,-soname,libboost_system.so.1 -o libboost_system.so.1.0.1 error_code.cpp -lc -fPIC
Code:
cp libboost_system.so.1.0.1 /usr/local/lib
Code:
ln -s /usr/local/lib/libboost_system.so.1.0.1 /usr/local/lib/libboost_system.so
Code:
ldconfig
Code:
cd ~
Code:
rm -rf boost_asio_0_3_8 boost_1_34_1

Logout with root:
Code:
exit

Compile try again.
 
Last edited:
Checked pass by Elf?

Try it:

Code:
wget http://heanet.dl.sourceforge.net/sourceforge/asio/boost_asio_1_0_0.tar.gz
Code:
tar -xf boost_asio_1_0_0.tar.gz
Code:
sudo cp -ar boost_asio_1_0_0/boost/* /usr/include/boost/
Code:
sudo g++ boost_asio_1_0_0/libs/system/src/error_code.cpp -c -o /usr/lib/libboost_system.a
Code:
ln /usr/lib/libboost_regex-mt.so /usr/lib/libboost_regex.so && ln /usr/lib/libboost_regex-mt.a /usr/lib/libboost_regex.a && ln /usr/lib/libboost_thread-mt.so /usr/lib/libboost_thread.so && ln /usr/lib/libboost_thread-mt.a /usr/lib/libboost_thread.a
 
Code:
g++ -I. -I/usr/include/libxml2 -I/usr/include/lua5.1 -Werror -Wall -O1 -D__NO_HOMEDIR_CONF__ -D__USE_MYSQL__ -D__USE_SQLITE__ -o ./TheForgottenServer account.o actions.o admin.o allocator.o ban.o baseevents.o beds.o creature.o creatureevent.o chat.o combat.o commands.o condition.o configmanager.o connection.o container.o cylinder.o database.o databasemysql.o databasesqlite.o depot.o exception.o fileloader.o game.o gui.o house.o housetile.o ioguild.o iologindata.o iomap.o iomapserialize.o inputbox.o item.o items.o logger.o luascript.o mailbox.o map.o md5.o monster.o monsters.o movement.o networkmessage.o npc.o otserv.o outfit.o outputmessage.o party.o player.o playerbox.o position.o protocol.o protocolgame.o protocollogin.o quests.o raids.o rsa.o scheduler.o scriptmanager.o server.o sha1.o spawn.o spells.o status.o talkaction.o tasks.o teleport.o textlogger.o thing.o tile.o tools.o trashholder.o vocation.o waitlist.o weapons.o  -L/usr/lib -lxml2 -lpthread -llua5.1 -lgmp -lmysqlclient -lboost_regex -lsqlite3 -llua5.1-sql-mysql -ldl -lboost_system
connection.o: In function `Connection::parsePacket(boost::system::error_code const&)':
connection.cpp:(.text+0x2192): undefined reference to `vtable for ProtocolOld'
collect2: ld returned 1 exit status
make: *** [theforgottenserver] Error 1
hosted-by:~/forgottenserver# ls
while compliing :<

.......
 
Back
Top