This post explains how to install a SVN server through svnserve xinetd service. It is installed from RPM packeges using URPMI on a Mandrake system. 1. Install First install all necessary packages. You will need the following ones: # urpmi
Vi Useful Commands
Vi: Search and Replace Change to normal mode with <ESC>. Search (Wraped around at end of file): Search STRING forward : / STRING. Search STRING backward: ? STRING. Repeat search: n Repeat search in opposite direction: N (SHIFT-n) Replace: Same
About OpenVZ Memory Management
Important quote: As xemul said.. the VE has no concept of the difference between ram and swap. Its just “memory” at the VE level. So, your HN can have 64MB of ram and 64GB of swap. Or, your HN can
OpenVZ or XEN? Links
Xen or OpenVZ VPS? http://hostingfu.com/article/xen-or-openvz Technical Discussion about OpenVZ vs. XEN memory handling. http://forums.vpslink.com/xen/2675-xen-vs-openvz-swap-space.html VPS Hosting. http://vpslink.com/
PostgreSQL: Dumping Databases
Dump and restore of a database in PostgreSQL is simple: Dump: $ pg_dump dbname > outfile Restore: $ psql dbname < infile References PostgreSQL 8.1.13 Documentation – Chapter 23. Backup and Restore