I want creat dedicated server

Xzanth

Legions Developer
I'll post a guide when I get home on Wednesday on running a legions server, unless someone else explains how in the meantime.

EDIT: Having to rush out again this evening and for the next day or so :( - sorry guys, it's started but won't be posted until Saturday.
 

Defender

Member
5-24-2013
Running a Linux Legions Overdrive dedicated server, Defenders success story.

First make a Legions Overdrive folder in your home/user/
If you don't have a user folder make one.
Next copy the live folder from your computer in to the new Legions Overdrive folder.
In the server/preferences/ copy the config.cs and rename it server1.cs
This is the new config your server will use.
Next step go to the live folder and open the terminal as root
Enter this command to enable this file
chmod +x ./Legions.linux
Note: Permission denied when trying to run Legions.linux file in the current directory usually means you don't have the execute permission for the file. Possibly, it's missing the executable bit, which you can add with the chmod command.

To run your new Legions Overdrive server enter this command line below.
./Legions.linux --log-dir=server1 --mod-list=modList_Server.txt --server-config=server1.cs

Last if you can't seem to log in as root on the terminal, follow the steps below, reboot your linux box and try again..
===============================================================================================================
Login to the terminal with your regular user account.
1. Add a password to the root account to allow terminal root logins.
Type: sudo passwd root
Enter the password when prompted.
If your Ubuntu login screen has an option to choose "Other" then you are DONE now. Go to the login screen, choose "Other". Your user name is root. use the password you just added. If your login screen does not have "Other" as a login choice, then continue to the next steps.
2. Change directories to the gnome desktop manager
Type: cd /etc/gdm
3. Edit the gnome desktop manager configuration file to allow desktop root logins.
Type: ls
This lists the contents of the current directory. Look for gdm.conf or custom.conf. Whichever one you have is the one you need to edit.
Type: nano gdm.conf
maybe you don't have the nano editor. Type gedit instead of nano in that case.
OR
Type: nano custom.conf
maybe you don't have the nano editor. Type gedit instead of nano in that case.
Find: AllowRoot = false
Change to: AllowRoot = true
Save the configuration and restart your machine. Cntrl + X, then answer Yes, and enter to save.

Done. Login as root the desktop.


For Ubuntu 12.XX versions:

Open the Terminal: CTRL + ALT + T
Create a password for the root account - Type: sudo passwd root
Show manual login screen - Type: sudo sh -c 'echo "greeter-show-manual-login=true" >> /etc/lightdm/lightdm.conf'
Now restart your computer. The login screen now lets you manually enter "root" as the user.
DONE
 
Top