I am using MySQL database on Ubuntu machine.
My MySQL data directory is /var/lib/mysql/ , since I have a database named "db_test" , so, I have a directory named db_test/ under /var/lib/mysql/ . And all the table info are under /var/lib/mysql/db_test/
/var/lib/mysql# ls
db_test
/var/lib/mysql# cd db_test
/var/lib/mysql/db_test# ls
cars.frm
cars.MYD
cars.MYI
customers.frm
customers.MYD
...
What I want to achieve is very simple, just make a new directory named "backup", and move all files under /var/lib/mysql/db_test/ to the /var/lib/mysql/backup/ directory. So, I run the following commands under a sub-directory of my home directory:
~/tmp$ sudo mkdir /var/lib/mysql/backup
~/tmp$ sudo mv /var/lib/mysql/db_test/* /var/lib/mysql/backup
The 1st mkdir command run successfully, I did get a new directory named "backup/" under /var/lib/mysql/
But the 2nd command get failed, with the following error message:
mv: cannot stat `/var/lib/mysql/db_test/*': No such file or directory
Why?? I have db_test/ directory under /var/lib/mysql/ and many table files inside, why it raise the error message?
P.S.
I know only root user can access /var/lib/mysql/. Could it be the reason? (but I used sudo), I am not sure though... and how to get rid of it?

ls -A /var/lib/mysql/db_test/output? – rozcietrzewiacz Nov 28 '11 at 16:23