• 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!

Linux Question on Linux

well if you mean the windows version, then no, but you can compile your own,
just check some of the tutorials about how to compile your own TFS server on
Ubuntu!
 
No, In linux you don't use program for database. You run some commands on terminal and linux installs it's own database program :thumbup:
You can still use phpmyadmin on linux.
Commands:
sudo su (your password)
sudo apt-get install mysql-server
sudo apt-get install lighttpd php5-cgi
sudo lighty-enable-mod fastcgi
sudo apt-get install phpmyadmin

Now you should have phpmyadmin and database program installed

About compiling (Stian's tut)
first
Code:
sudo apt-get install subversion autoconf build-essential pkg-config libboost-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libcrypto++-dev ccache libboost-filesystem-dev libboost-regex-dev libboost-system-dev libboost-thread-dev screen
Then download and unzip source files to one folder
sudo su
cd /home/YOURSERVERPATH
chmod -R 777 .
./autogen.sh
./configure --enable-mysql
make -j 2

Now it should compile your server

Starting
cd /home/YOURSERVERPATH
./theforgottenserver



Read those tutorials
http://otland.net/f137/ubuntu-nothi...gotten-server-modernaac-mysql-lighttpd-89001/
http://otland.net/f137/linux-ultimate-compile-guide-debian-ubuntu-included-2868/
http://otland.net/754561-post213.html
 
No, In linux you don't use program for database. You run some commands on terminal and linux installs it's own database program :thumbup:
You can still use phpmyadmin on linux.
Commands:
sudo su (your password)
sudo apt-get install mysql-server
sudo apt-get install lighttpd php5-cgi
sudo lighty-enable-mod fastcgi
sudo apt-get install phpmyadmin

Now you should have phpmyadmin and database program installed

About compiling (Stian's tut)
first
Code:
sudo apt-get install subversion autoconf build-essential pkg-config libboost-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libmysqlclient-dev libcrypto++-dev ccache libboost-filesystem-dev libboost-regex-dev libboost-system-dev libboost-thread-dev screen
Then download and unzip source files to one folder
sudo su
cd /home/YOURSERVERPATH
chmod -R 777 .
./autogen.sh
./configure --enable-mysql
make -j 2

Now it should compile your server

Starting
cd /home/YOURSERVERPATH
./theforgottenserver



Read those tutorials
http://otland.net/f137/ubuntu-nothi...gotten-server-modernaac-mysql-lighttpd-89001/
http://otland.net/f137/linux-ultimate-compile-guide-debian-ubuntu-included-2868/
http://otland.net/754561-post213.html

Very well explained, but for most users that want to edit the
files inside the server folder make sure to NOT use 'sudo su'
or 'sudo', Why? because if done in this manner you will not be
able to edit the files inside the server folder(data, mods, etc.)
you won't be able to add them without using terminal, but before
you do this process without sudo or sudo su make sure you are
administrator, by going to system > administration(I think) >
Groups and Users. Can someone explain to me for what is for the
'chmod -R 777 .', because I fail to understand for what that is
for(since I did not use it when I compiled the server).
Thanks! and I hope I helped you!
 
Back
Top