이건 그냥 참고 : Apache 의 경우..
http://unix.stackexchange.com/questions/33793/how-to-auto-start-a-service-apache2-with-linux-mint
이걸 보고 해결 함..
터미널에 다음을 입력 하면 끝.. 재부팅 하면 서비스가 정상적으로 시작되어 팀뷰어가 한번에 실행 될 것 입니다.
cd /opt/teamviewer8/tv_bin/script
sudo cp teamviewerd.sysv /etc/init.d/
sudo chmod 755 /etc/init.d/teamviewerd.sysv
sudo update-rc.d teamviewerd.sysv defaults
재부팅이 싫다면 터미널에서 다음 코드를 입력 하면 됩니다.
sudo service teamviewerd.sysv start
출처 : http://ubuntuforums.org/showthread.php?t=2092298
Re: Teamviewer 8 will not start
Hello,
I *WAS* having this same issue.
Here is how i solved it and i believe it is the correct solution to this issue.
In the terminal, do the following.
Code:
cd /opt/teamviewer8/tv_bin/script
sudo cp teamviewerd.sysv /etc/init.d/
sudo chmod 755 /etc/init.d/teamviewerd.sysv
sudo update-rc.d teamviewerd.sysv defaults
This will setup the teamviewerd.sysv script to execute at boot and hence you will always have the teamviewerd daemon running at all times.
The above changes will take effect at the next system reboot. You can manually start the service for the first time by doing, hence not requiring a reboot.
Code:
sudo service teamviewerd.sysv start
NOTE: this will always keep the teamviewerd running.
Regards
~Sameer