Tags: using
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 »
Sep
18
1. Create Volume Group
Note: the following example is using the disk c0t3d5, the volume group vg01, the logical volume lvtest, and mount point /test
1.1 Identify the disks to be used for LVM and create the missing device files
# insf -eC disk
#… more »
Jul
16
To create a 1GB partition on an empty GPT disk:
C:\>diskpart
Microsoft DiskPart version 5.1.3565
Copyright (C) 1999-2003 Microsoft Corporation.
On computer: NNII0280
DISKPART> Select Disk 1
Disk 1 is now the selected disk.
DISKPART> creat… more »
Jul
16
I have to automate transferring of files and the only protocol I have available is SSH. I have accomplished this using expect and SFTP. I think it can help others too, so I am writing this article.
You can get Expect from http://expect.nist.gov
Ex… more »
Recent comments