[M7IM][COM] Developer notes about php, mysql and ubuntu

10Mar/120

Backup remote database quickly

Posted by admin

Quick cmd to backup a remote database locally without storing data on remote server:

ssh -C user@host "mysqldump --lock-tables=falseĀ -uuser -ppass --compress database-name | gzip -9 -c" > backup.sql.gz

It uses compression to speedup the data transfer

Tagged as: , , No Comments
8Mar/120

Linux: list count of files, dirs or sym links

Posted by admin

ls -l | grep ^- | wc -l

ls -l | grep ^d | wc -l

ls -l | grep ^l | wc -l

Tagged as: , No Comments
8Mar/120

Linux: count files in dir

Posted by admin

Usefull cmd for counting files in a dir:

ls "path" | wc -l

If a specific files should be counted this works as well:

ls "path/filename_*" | wc -l

Tagged as: , No Comments
7Mar/120

nnmap

Posted by admin

quickly check if the host is reponding to the port:

nmap -PN -p80 www.hostname.com

Tagged as: , No Comments
6Mar/120

OpenConnect VPN client.

Posted by admin

usefull for vpn connections

OpenConnect VPN client..

Tagged as: , No Comments
28Feb/120

Notification

Posted by admin

Growl noticfication interface to test listnerrs in phpunit

Notification.

Tagged as: , No Comments
28Feb/120

Close and re-open tickets from tests: Fogbugz PHPUnit TicketListener | Olle Jonssons blog

Posted by admin

Direct integration of Fogbugz into PHPUnit. Whenever af test fail the corrosponding case will reopen.

Close and re-open tickets from tests: Fogbugz PHPUnit TicketListener | Olle

Jonssons blog.

7Feb/120

Ubuntu 11.10 GNOME Shell Guide

Posted by admin

 

Install the gnome shell with an official install
Ubuntu 11.10 GNOME Shell Guide
.

Tagged as: No Comments
17Jan/120

Ohloh, the open source network

Posted by admin

 

 

 

 

list of open source projects

Ohloh, the open source network.

26Oct/110

Installing / Using Classic GNOME Desktop In Ubuntu 11.10 Oneiric Ocelot ~ Web Upd8: Ubuntu / Linux blog

Posted by admin

sudo apt-get install gnome-session-fallback

via Installing / Using Classic GNOME Desktop In Ubuntu 11.10 Oneiric Ocelot ~ Web Upd8: Ubuntu / Linux blog.

Filed under: Uncategorized No Comments