Tag Archives: debian

Replace disk on failed linux software raid

With command: cat /proc/mdstat chech which disk is failed poweroff machine, replace disk copy partittion data from old to new disk sfdisk -d /dev/sdb | sfdisk /dev/sda add disk partition do raid mdadm –manage /dev/md0 –add /dev/sda1 mdadm –manage /dev/md1 … Continue reading

Posted in Debian, HW issue, Linux tips, Mint, Ubuntu | Tagged , , , | Leave a comment

Change debian keyboard layot

How to change debian keyboard configuration, just use following command: dpkg-reconfigure keyboard-configuration

Posted in Debian, ISPConfig 3, Linux tips, Mint, Ubuntu | Tagged , , | Leave a comment

Update: ISPConfig3 Backup script – local server

This is updated backup script which can be run on ISPConfig3 server (locally) and copy files to already mounted drive. Original post_ http://blog.it-podrska.info/2009/08/backup-remote-linux-mysql-and-data/ Variables which are removed: sshuser=”remote_username_root” # remote ssh username sshhostname=”remote_hostname” # remote hostname sshport=”remote ssh port” # … Continue reading

Posted in Linux tips | Tagged , , , | 5 Comments

pure-FTP on openVZ on debian

Here is description how to compile pure ftp to run in openVZ server. First install needed packages and pure-ftpd-mysql: apt-get install pure-ftpd-mysql build-essential libpam0g-dev libmysqlclient15-dev Then download and compile new pure-fptd: cd /tmp wget http://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.22.tar.gz tar -xvzf pure-ftpd-1.0.22.tar.gz cd pure-ftpd-1.0.22 … Continue reading

Posted in Linux tips | Tagged , , | Leave a comment