This howto is valid for Betanet on Ubuntu or Debian
You have to install some dependencies. In debian / ubuntu run:
| #!/bin/sh | |
| # This is simple script for getting OS name and it's version | |
| # Script outputs the string in the format: dist_name-dist_version | |
| # e.g. fedora-14 | |
| os=$(uname -s) | |
| dist_name='unknown' | |
| dist_version='unknown' | |
| case "${os}" in |