반응형
자꾸만 까먹기에 정리해두려고 한다..
(몇일전에 리눅이 업데이트 한다고 재부팅을 했는데 방금 확인해보니 팀스픽 3 .. 가 켜져 있질 않터라...)

우선 /etc/rc.d 디렉토리로 가서..
cd /etc/rc.d

그리고...
rc.local 파일을 열어서 거기에 넣어주면 된다.
(root 권한이 필요하니.. 우선 root 권한을 획득하자)

vi rc.local

#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.

touch /var/lock/subsys/local

# Starting Teamspeak 2 Server
echo "Starting Teamspeak 2 Server"
/home/jsmall/tss2_rc2/server_linux

# Starting Teamspeak 3 Server
echo "Starting Teamspeak 3 Server
/home/jsmall/teamspeak3-server_linux-x86/ts3server_startscript.sh start

그리고 수정을 다 한후엔
:qw

그러면.. 기본적으로 .. 리눅이가 실행할때 같이 시작할것이다..
만약 카스 서버를 같이 실행한다면.. 저기에 . 콘솔 명령어 전부를 적어두면 된다.

만약 특정 유저로 실행해야 한다면..
sudo -u user
/home/jsmall/teamspeak3-server_linux-x86/ts3server_startscript.sh start  라고 입력하면 됩니다.

반응형