1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
| 三、创建目录 1、创建父目录 mkdir /opt/terraria
2、创建2个子目录,和存档目录 mkdir /opt/terraria/bin keyword zip
3、查看目录是否创建成功 ls /opt/terraria/
4、进入zip文件夹 cd /opt/terraria/zip
5、下载泰拉瑞亚服务器包(最新版本去官网寻找) wget https://terraria.org/api/download/pc-dedicated-server/terraria-server-1436.zip
6、查看是否下载好terraria-server-1436.zip ls
7、解压服务器包到bin文件夹 unzip terraria-server-1436.zip -d ../bin
8、新建服务器的配置文件 vim ../server-config
按(英文状态小写的)i进入编辑模式
world=/opt/terraria/keyword/存档名.wld worldname=世界的名字 difficulty=0 autocreate=2 maxplayers=4 password=设定一个密码 worldpath=/opt/terraria/keyword
参数解释: autocreate是地图大小1<2<3 difficulty是难度0为普通,1为专家 maxplayers 最大人数
按esc-shift+:- wq保存退出
|