When you Telnet your box or make a SSH connection shell to your Linux server, these commands are useful for you:
1-Show me who is online, which IP and which Gbox Version is running:
| Kod: |
cat /var/tmp/share.onl
|
2- Show me all Distance 1 cards:
| Kod: |
grep "dist:1" /var/tmp/share.info
|
3- Show me all Distance 1 cards and resolve the Provider ID:
| Kod: |
for i in `grep 'dist:1'
/var/tmp/share.info | awk '{print $6}' | sort` ; do grep "^$i" /var/keys/ident.info ; done
|
4-remove the Windows carriage returns ^M on Textfiles:
| Kod: |
tr -s "\r" "\n" < winfile > unixfile
|
5-Showing the ident.info file in a nice way:
first
then:
| Kod: |
cat ident.info | cut -c 1-9,19-196 > ident.info.new
|
and you will see the providers lije this example:
| Kod: |
01000000;S0 - Mediaguard CAID
01000002;(Old)S1 - Orbit (1W/26E)
01000003;(Old)S1 - Canal+ France (19E)
|
6-With this command, you can also see if gbox process is running:
7- To start cs2gbox:
| Kod: |
cd /var/bin/
./cs2gbox &
|
8- To start gbox:
| Kod: |
cd /var/bin/
./gbox&
|
9- To start cs2gbox and gbox together in Gemini:
| Kod: |
/var/script/gbox_cam.sh start
|
10-To stop cs2gbox:
11- To stop gbox:
12- To chmod binary:
| Kod: |
chmod 755 <filename>
|
13- To see number of cards from a peer :
| Kod: |
cd /tmp/
grep <peer domain> share.info | wc -l
|
14- To see cards from a peer with distance and level:
| Kod: |
cd /tmp/
grep <peer domain> share.info
|
15- To see peer status:
| Kod: |
cd /tmp/
more share.onl
|
(Lines beginning with 1 are online peers, Lines beginning with 0 are offline peers)
16- To see number of cards with level X where X = number
| Kod: |
cd /tmp/
grep Lev:X share.info | wc -l
|
17- To see number of cards with level X for a certain peer where X = number
| Kod: |
cd /tmp/
grep <peer domain> share.info | grep Lev:X | wc -l
|
18- To see number of cards at distance X where X = number
| Kod: |
cd /tmp/
grep dist:X share.info | wc -l
|
19- To see number of cards with distance X for a certain peer where X = number
| Kod: |
cd /tmp/
grep <peer domain> share.info | grep dist:X | wc -l
|
20-rebooting your server:
21- changing your server login password (Very important):
22-For editing files:
| Kod: |
vi <filename}
example:
vi /var/keys/cwshare.cfg
|