1. Copy One database to other on same hostmysqldump -uroot -p source_database_name | mysql -uroot dest_database_name2. Copy database from one host to other host.mysqldump -uroot -p source_database | ssh host2 "mysql -uroot dest_database"
Category: General
Mysql cheatsheet
Change Mysql password mysqladmin -u root -p'oldpassword' password newpass
Getting wired and wireless working on ubuntu 9.0.4
It might be the case that earlier wireless was working and then it stopped workingFollow the simple steps here....1. Restart networkingsudo /etc/init.d/networking restart2. Disable the "Support for Atheros 802.11 wireless LAN cards" on system/administration/Hardware Drivers, and reboot your box.3. Restart sudo rebootThat's it, Cheers!Still having problem follow the instructions here
