You could do this several different ways:
- You probably dont have Cpanel installed on your laptop, but if you did you could manually do an account copy in WHM
- You could use rsync; something like:
rsync -avz -e ssh /var/lib/mysql
[email protected]:/var/lib/
- SCP would also work similar to above
- Do a mysql dump and then copy/import the dump file into the database. Something like the following:
mysqldump dbname --add-drop-table -u user -p passwd | mysql -h remote_host_ IP -u user -p passwd dbname
If you wanted all databases you could make a small script using the techniques above and modify it to include: mysqldump --all-databases
Hope this helps.