发布时间:2015-09-18 10:35:00
pg_dump --host ip_address --port 5432 --dbname xx_db --username db_user --file xx_db.backup --format c --password
pg_restore --host ip_address --port 5432 --dbname xx_db --username db_user --file xx_db.backup --password
......【阅读全文】
发布时间:2015-08-29 13:48:19
If you got this: undefined reference to `vtable for...
Check your virtual function's definition.
virtual void foo(void) = 0;
.........【阅读全文】
发布时间:2015-08-24 14:19:24
1. apt-get install sshfs
2. sshfs username@ip_address/some_dir_on_the_server some_dir
3. fusermount -u some_dir
......【阅读全文】