Tags: using

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 »

Configuring File System on HP-UX using LVM

HP-UX Send feedback »
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 »

Windows: Creating an aligned GPT partition by using diskpart

Technology, Windows 1 feedback »
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 »

Automating SFTP using expect

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