Tags: linux

linux p2v using rsync or dd

Linux Send feedback »
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 »

Linux RedHat Bare Metal Restore on diffrent Server

Linux Send feedback »
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 »

Linux Setfacl and getfacl setup and mount file system with acl

Linux Send feedback »
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 »

Display a legal warning before login.

Technology, Linux, Solaris, Aix, HP-UX Send feedback »
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 »

Linux Install & configure Squid in three easy steps

Linux Send feedback »
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 »