Просто несколько заметок об утилите mysqldump. Создание полной резервной копии базы: # mysqldump -uDBUSER -pPASSWORD DBNAME > filename.sql или # mysqldump –user=username –password=password DBNAME > filename.sql Если Вам необходимо создать резервную копию сразу нескольких баз данных, Вы можете использовать параметр -B (или -databases) mysqldump -uDBUSER -pPASSWORD -B DBNAME1 DBNAME2 > filename.sql Для создания полного дампа [...]
Posted on Июль 5th, 2011 by admin
Filed under: Development, Software, Tips | Comments Off
Ncftp is good ftp client for freebsd – install ncftp freebsd: #cd /usr/ports/ftp/ncftp3 && make install clean #rehash create ftp config file: #touch /home/config/ftp.conf – add information about ftp-server to /home/config/ftp.conf: host ftp.howtobsd.com user ftpuser pass ftpfassword and finally wonderful command: ncftpput -f /home/anton/ftp.conf /backups /backup/forupload/* /home/anton/ftp.conf- is ftp-connection information /backups – folder on ftp-server [...]
Posted on Июнь 1st, 2010 by admin
Filed under: Software | Comments Off
Fsbackup is a good and simple freebsd backup software for backuping your information. When you finish read this article you will be able to backup on freebsd your data automatically on the local directory or remote ftp server. 1.First of all we are going to install port fsbackup: #cd /usr/ports/sysutils/fsbackup && make install clean this [...]
Posted on Июнь 1st, 2010 by admin
Filed under: Software | Comments Off
freebsd geom mirror howto I did RAID-1 on the FreeBSD 7.1-RELEASE with two identical HDD – WD15EARS (1,5Tb) I think you can use any hhd on condition that firs device have to be smoller size than second. in my case: – FreeBSD detect it as ad10 and ad16 – System has been installed in ad10 [...]
Posted on Апрель 10th, 2010 by admin
Filed under: Software | Comments Off
Hello! Today I would like tell you how to quickly install server subversion (svn) and creat repository. The following instructions applies to install svn in FreeBSD certainly. SVN (Subversion) is a version control system – useful instrument for developers who works on large-scale project. I should draw your attention: it isn’t full manual about svn [...]
Posted on Декабрь 6th, 2009 by admin
Filed under: Software | Comments Off