linux:telegram
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
linux:telegram [2015/07/01 19:51] – [Step 5: install the client] rlunaro | linux:telegram [2022/12/02 21:02] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 54: | Line 54: | ||
===== Step 4: a basic test ===== | ===== Step 4: a basic test ===== | ||
- | Make a simple confirmation that the program is working. The program is called '' | + | Make a simple confirmation that the program is working. |
+ | |||
+ | The program is called '' | ||
< | < | ||
Line 63: | Line 65: | ||
< | < | ||
- | rluna@gamora: | + | $: |
Telegram-cli version 1.0.5, Copyright (C) 2013-2014 Vitaly Valtman | Telegram-cli version 1.0.5, Copyright (C) 2013-2014 Vitaly Valtman | ||
Telegram-cli comes with ABSOLUTELY NO WARRANTY; for details type `show_license' | Telegram-cli comes with ABSOLUTELY NO WARRANTY; for details type `show_license' | ||
Line 85: | Line 87: | ||
===== Step 5: install the client ===== | ===== Step 5: install the client ===== | ||
- | I've opted for manually install the client. I've copied the '' | + | I've opted for manually install the client. I've copied the '' |
< | < | ||
- | sudo cp telegram-cli | + | # mkdir /usr/local/share/ |
- | sudo cp tg-server.pub | + | # cp telegram-cli /usr/local/share/ |
- | sudo chmod g=r, | + | |
</ | </ | ||
+ | I've also created a directory called ''/ | ||
+ | </ | ||
+ | # mkdir / | ||
+ | # chmod u=rwx, | ||
+ | # cp tg-server.pub / | ||
+ | # chmod g=r,o=r,u=r / | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Step 6: create the system user telegramd ===== | ||
+ | |||
+ | In order to run the telegram-daemon as root, you will need to create the user telegramd. I've opted | ||
+ | to create this user as a system user: | ||
+ | |||
+ | < | ||
+ | # useradd -M --user-group --system --shell=/ | ||
+ | </ | ||
+ | |||
+ | |||
+ | Impersonate this user and run the telegram-cli program again, to create a proper configuration file: | ||
+ | |||
+ | < | ||
+ | telegramd@: | ||
+ | Telegram-cli version 1.0.5, Copyright (C) 2013-2014 Vitaly Valtman | ||
+ | Telegram-cli comes with ABSOLUTELY NO WARRANTY; for details type `show_license' | ||
+ | This is free software, and you are welcome to redistribute it | ||
+ | under certain conditions; type `show_license' | ||
+ | Telephone number (with ' | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | |||
+ | ===== Step 7: create a daemon and install it ===== | ||
+ | |||
+ | Telegram-cli has a bug that provokes that, unless '' | ||
+ | |||
+ | Let's go for it. The code for the daemon is this (customize the adequate variables): | ||
+ | |||
+ | |||
+ | < | ||
+ | #!/bin/bash | ||
+ | # | ||
+ | # telegram.sh | ||
+ | # | ||
+ | # | ||
+ | |||
+ | ### BEGIN INIT INFO | ||
+ | # Provides: | ||
+ | # Required-Start: | ||
+ | # Required-Stop: | ||
+ | # Default-Start: | ||
+ | # Default-Stop: | ||
+ | # Short-Description: | ||
+ | ### END INIT INFO | ||
+ | |||
+ | TELEGRAM_BIN="/ | ||
+ | TELEGRAM_PORT=1234 | ||
+ | TELEGRAM_ARGS=" | ||
+ | PID_FILE=/ | ||
+ | |||
+ | umask 022 | ||
+ | |||
+ | test -f " | ||
+ | |||
+ | |||
+ | case $1 in | ||
+ | start) | ||
+ | echo " | ||
+ | $TELEGRAM_BIN $TELEGRAM_ARGS & | ||
+ | echo $! > " | ||
+ | # issue the command " | ||
+ | # for sending messages | ||
+ | sleep 5 | ||
+ | echo " | ||
+ | echo " | ||
+ | ;; | ||
+ | stop) | ||
+ | echo " | ||
+ | # first make a gentle kill | ||
+ | kill $(cat " | ||
+ | # then sleep and make a hard kill | ||
+ | sleep 4s | ||
+ | kill -9 $(cat " | ||
+ | rm " | ||
+ | echo " | ||
+ | ;; | ||
+ | reload) | ||
+ | $0 stop | ||
+ | $0 start | ||
+ | ;; | ||
+ | status) | ||
+ | if kill -0 $(cat " | ||
+ | echo " | ||
+ | else | ||
+ | echo " | ||
+ | fi | ||
+ | ;; | ||
+ | *) | ||
+ | echo " | ||
+ | ;; | ||
+ | esac | ||
+ | |||
+ | exit 0 | ||
+ | |||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | Install it under ''/ | ||
+ | |||
+ | < | ||
+ | sudo mv telegram-daemon /etc/init.d | ||
+ | sudo chown root:root / | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Step 8: install the telegram-msg program ===== | ||
+ | |||
+ | After that I've created a '' | ||
+ | |||
+ | < | ||
+ | #!/bin/bash | ||
+ | # | ||
+ | # telegram-msg - sends a telegram message | ||
+ | # | ||
+ | # | ||
+ | |||
+ | |||
+ | echo "msg $1 $2" | nc 127.0.0.1 1234 | ||
+ | |||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Step 8: first test ===== | ||
+ | |||
+ | < | ||
+ | $ sudo / | ||
+ | $ telegram-msg somebody "some message you want to send" | ||
+ | </ | ||
linux/telegram.1435780295.txt.gz · Last modified: 2022/12/02 21:02 (external edit)