Posts: 196
Threads: 83
Joined: May 2014
Reputation:
0
How to start Linux Server ? like samp-server.exe at Window Servers?
Posts: 423
Threads: 96
Joined: Sep 2010
Reputation:
0
on linux you just want too run sudo ./samp*
sudo = root permissions, known as administrator on windows
./ = run
* = match rest of the file name, saves typing it all in.
Posts: 10,066
Threads: 38
Joined: Sep 2007
Reputation:
0
Never run anything under root if it's not strictly necessary!
Posts: 52
Threads: 11
Joined: Dec 2014
Debian/Ubuntu
Code:
apt-get install mysql-server
CentOS
Code:
yum install mysql-server
Then install phpmyadmin with either apt-get or yum
Posts: 1,753
Threads: 277
Joined: Sep 2010
Reputation:
0
You could also use "screen", if you don't have it, use this:
yum install screen
Then change directory to your SA-MP server with:
cd /directory/of/your/samp/server
Then you can use:
screen ./samp03svr
To kill the process, use:
killall -9 samp03svr
Hope I helped.