[M7IM][COM] Developer notes about php, mysql and ubuntu

26Oct/110

Using Rsync and SSH

Posted by admin

Good guide to setup dsa keys when setting up ssh and rsync in crontab
Using Rsync and SSH.

Tagged as: , , No Comments
12Sep/110

Freebsd: Install wget Utility To Download Files From The Internet

Posted by admin

Example of installing wget utility on FreeBsd but it works with other libs as well.

Method # 1: Install wget Using pkg_add Binary method Command

Type the following command as root user:

# pkg_add -r -v wget
# rehash

Method # 2: Install wget Using FreeBSD Ports Collection

Type the following command as root user to upgrade ports tree, enter:

# portsnap fetch update

Now, install the wget, enter:

# cd /usr/ports/ftp/wget
# make install clean
# rehash

rsync is located in /usr/ports/net/rsync

via Freebsd: Install wget Utility To Download Files From The Internet.