If you are backing up directories rather than using cPanel backups, then I would suggest the list mentioned here:
http://forums.cpanel.net/f5/rsync-ba...tml#post671150
Of note, if you have InnoDB enabled, it isn't advisable to only copy /var/lib/mysql but to take a full mysqldump instead of the databases using this type of command:
Code:
mysqldump --add-drop-table --all-databases | gzip > /home/alldatabases.sql.gz
This will backup all the databases and put them into a file at /home/alldatabases.sql.gz, which you could then copy with /home contents.