Microsoft Senior Sales Excellence Manager – Eric Ligman posted a list of almost 300 FREE Microsoft eBooks. You can download them all from hos blog at the following address:
http://blogs.msdn.com/b/mssmallbiz/archive/2014/07/07/largest-collection-of-free-microsoft-ebooks-ever-including-windows-8-1-windows-8-windows-7-office-2013-office-365-office-2010-sharepoint-2013-dynamics-crm-powershell-exchange-server-lync-2013-system-center-azure-cloud-sql.aspx
Free Study Guide for Microsoft Exam 74-409
Veeam are giving away a studying guide for Microsoft Exam 74-409: Server Virtualization with Windows Server Hyper-V and System Center for free.
The guide can be downloaded at http://go.veeam.com/microsoft-certification-exam.html
Automatic Virtual Machine Activation
One of the news in Hyper-V 2012 R2 is Automatic Virtual Machine Activation (AVMA), which lets you install virtual machines on a properly activated Windows server (running Windows Server 2012 R2 Datacenter) without having to manage product keys for each individual virtual machine. It works even in disconnected Environments. AVMA binds the virtual machine activation to the licensed virtualization server and activates the virtual machine (running Windows Server 2012 R2 Datacenter, Standard or Essential) when it starts. Real-time reporting and tracking data is available on the virtualization server.
AVMA is easy to implement, use one of the following AVMA keys when installing a new virtual machine in Hyper-V:
Edition | AVMA key |
---|---|
Datacenter | Y4TGP-NPTV9-HTC2H-7MGQ3-DV4TW |
Standard | DBGBW-NPF86-BJVTX-K3WKJ-MTB6V |
Essentials | K2XGM-NMBT3-2R6Q8-WF2FK-P36R2 |
More information is available on Technet: http://technet.microsoft.com/en-us/library/dn303421.aspx
How to install pfSense 2.0.2 on Hyper-V (Windows Server 2012)
When you are installing pfSense on Hyper-V there are some things to consider:
- Use Legacy Network Adapters.
- You need to reset all network adapters in pfSense every time the system boots.
- If running on AMD CPU you must set hw.clflush_disable=1 att boot-time.
- pfSense 2.0.x on Hyper-V is not recommended for production environments and should only be used for lab or test purposes.
The following steps is a description of how to install pfSense on Hyper-V in a successful way:
- Download pfSense-LiveCD-2.0.2-RELEASE-amd64.iso.gz from one of the pfSense mirrors at http://www.pfsense.org/mirror.php?section=downloadsVerify
- Verify the file hash of the downloaded file using your favourite hashing tool (Personally I like HashTab which is freely available for personal use at http://implbits.com/HashTab.aspx).
- Extract the ISO-file from the downloaded tarball using a file archiver of your choice (I like 7-Zip which is an open source file archiver. It is available at http://www.7-zip.org/).
- Create a Hyper-V VM with two Legacy Network Adapters and remove any network adapter already present. The VM should have a small IDE harddrive (typically 1GB) and at least 128MB of RAM.
- Boot the VM on the ISO-file. If you are using a AMD CPU in your windows host you must set the boot parameter hw.clflush_disable=1 at boot time. To do that press 7 at the boot menu and enter the following commands (also shown in the following picture):
OK set hw.clflush_disable=1
OK boot
- Select the option to install pfSense otherwise you wil just boot the LiveCD.
- Change video font, screenmap and keymap appropriate to your video monitor, keyboard and language. Then select “Accept these Settings”.
- Select Quick/Easy install to use the first hard disk and “automatically” install pfSense.
- Confirm by pressing OK.
- Select to install a standard kernel.
- When the installation is finished, choose to reboot the VM, power it off and eject the ISO.
- Start the VM again (remember to set the parameter hw.clflush_disable=1 at boot-time if using a AMD CPU).
- Configure VLANs if appropriate for your environment.
- Assign interfaces as appropriate for your configuration, confirm by pressing y and enter.
- Enter option 8 to get to the shell.
- Create simple script that resets all your network adapters at boot by entering the following commands (add more interfaces depending on your configuration and start dhclient on all interfaces that should receive IP-configuration dnyamically):
# touch /etc/rc.local
# touch /etc/rc.local.running
# chmod 755 /etc/rc.local
# echo “ifconfig de0 down” >> /etc/rc.local
# echo “ifconfig de0 up” >> /etc/rc.local
# echo “ifconfig de1 down” >> /etc/rc.local
# echo “ifconfig de1 up” >> /etc/rc.local
# echo “dhclient de0” >> /etc/rc.local
- If using an AMD CPU, enter the following command to permanently set the parameter hw.clflush_disable=1 at boot time:
# echo “hw.clflush_disable=1” >> /boot/loader.conf.local - Reboot to test your configuration.
# reboot