Tags: linux
Aug
11
rsync works great on production enviroments, I had paravirtualized some servers with these method:
rsync -ave ssh --exclude=/proc --exclude=/sys --exclude=/dev (if you are using udev) root@runingserver:/ /mnt/newserverimage/
after this:
mkdir /mnt/n… more »
Jun
03
When doing a system recovery often the things that can break your recovery procedures is having a new system that is new and completely dissimilar from the old system. This recovery procedure will walk you thru the process of creating the backup ima… more »
May
25
Mount filesystem with acl option
$ mount -o remount,acl /oracle
$ mount
/dev/mapper/VG0-LV1 on / type ext3 (rw) none on /proc type proc (rw) none on /sys type sysfs (rw) none on /dev/pts type devpts (rw,gid=5,mode=620) usbfs on /proc/bus/usb type u… more »
May
12
For FTP server: To change the greeting banner for vsftpd, add the following directive to the /etc/vsftpd/vsftpd.conf file:
ftpd_banner=<insert_greeting_here>
Replace <insert_greeting_here> in the above directive with the… more »
May
12
Squid configuration so that it will act as a transparent proxy
Iptables configuration
Configure system as router
Forward all http requests to 3128 (DNAT)
Run scripts and start squid service
First, Squid server in… more »
Recent comments