You are not logged in.

Dear visitor, welcome to sourceserver.info. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

  • MadMakz

    Super Moderator

    You have to register first, to connect to this user.

Articles from the year »2013« (3)

Windows 8 / Windows Server 2012 weigert sich auf Festplatten mit weniger als 90GB zu installieren.

Dies ist vor allem ärgerlich bei kleinen SSD’s oder Virtuellen Servern.

Mit einem einfachen Trick kann man Windows 8 / 2012 aber doch dazu bewegen auf kleineren Partitionen zu installieren. Völlig ohne geändertem Installationsmedium.

Installiert wird Windows 8 / 2012 erst völlig normal vom gewünschten Medium. Also ISO (bsp. VM) oder DVD.

This article has been read 46,820 times.


2

SSLgen 0.5

Saturday, February 23rd 2013, 6:54pm

Nach knapp einem Jahr mal ein update zu SSLgen.

http://labor.spiffytek.com/sslgen/

Features:

This article has been read 47,539 times.


1

LVM Image Backup und Restore mit pbzip2

Monday, January 14th 2013, 10:55am

Vorteil von pbzip2: Multicore Unterstützung.

An pbzip2 wird mittels dem -p Switch definiert wieviele CPU-Kerne benutzt werden dürfen. In dem Beispiel sind es zwei (-p2).

Backup:

Source code

1
nohup dd if=/dev/<LVM Gruppe>/<LVM Disk> bs=512K | pbzip2 -p2 -9 > <Backupname>.bz2 &


Restore:

Source code

1
nohup pbzip2 -p2 -dcf <Backupname>.bz2 | dd of=/dev/mapper/<LVM Disk in welche das Backup gespielt werden soll> &

This article has been read 59,137 times.

Tags: Linux, Backup, howto, kvm, lvm, pbzip2, restore