Is it posible to duplicate an entire MySQL database on a linux server?
I know I can use export and import but the original database is >25MB so that\'s not ideal.
Once upon a time in MySQL you could just copy all the table files to another directory in the mysql tree
mysql cli - create database db2
linux cli - cp db1 db2