cd /var tar cvfjh www.tar.bzip2 wwwThis will backup all your websites into file www.tar.bzip2 (Assuming your websites are under /var/www) Explanation of the options:
c = create v = verbose f = into a file (instead of tape!) j = use bzip2 (which give you the best compression) h = follow symbolic linksOf course, there are other options but these are pretty nice.