Telegram 썸네일형 리스트형 텔레그렘(Telegram)으로 간단한 서버 모니터링 하기. 일단 Telegram-cli을 설치 안하신 분들은 앞 글을 참조하는게 좋을 것 이다. 참고로 Ubuntu 기준이다. http://slg1119.tistory.com/33 Telegram-cli가 설치되있다는 가정 하에 시작하겠다. 1.hello.lua 뜯어보기 Telegram-cli는 기본적으로 lua란 언어를 사용한다. 일단 예제 코드인 hello.lua 코드를 보자.function on_msg_receive (msg) if ( msg.text == 'hello' ) then send_msg(msg.from.print_name, "world", ok_cb, false) #hello란 명령어를 받으면 world를 보내라는 커맨드 return end end function ok_cb(extra, succe.. 더보기 우분투(Ubuntu)에 텔레그렘(Telegram) CLI설치 1. 컴파일이나, CLI가 구동하는데 필요한 패키지를 설치한다. $ sudo apt-get install libreadline-dev libconfig-dev libssl-dev lua5.2 liblua5.2-dev libevent-dev make git-core 2. Telegram-cli 소스 다운받고 빌드하기. $ git clone --recursive https://github.com/vysheng/tg.git && cd tg $ ./configure $ make 3. Telegram-cli 실행하기 $ bin/telegram-cli -k server.pub 이렇게 명령어를 입력하면, 밑의 사진처럼 뜨는데 겁먹지 말고 차근차근 하면 된다.change_user_group: can't find the.. 더보기 이전 1 다음