0

Understanding Disk Volume Types

Tuesday, 28 January 2014

A dynamic disk can contain an unlimited number of volumes that function much like primary partitions on a basic disk, but you cannot mark an existing dynamic disk as active. When you create a volume on a dynamic disk using the Disk Management snap-in in Windows Server 2012, you choose from the following five volume types:
Simple Volume:
 Simple volume Consists of space from a single disk. After you have created a simple volume, you can extend it to multiple disks to create a spanned or striped volume, as long as it is not a system volume or boot volume. You can also extend a simple volume into any adjacent unallocated space on the same disk or, with some limitations, shrink the volume by deallocating any unused space in the volume.
Spanned Volume:
 Spanned volume Consists of space from 2 to 32 physical disks, all of which must be dynamic disks. A spanned volume is essentially a method for combining the space from multiple dynamic disks into a single large volume. Windows Server 2012 writes to the spanned volume by filling all of the space on the first disk and then fills each of the additional disks in turn. You can extend a spanned volume at any time by adding
disk space. Creating a spanned volume does not increase the disk’s read/write performance, nor does it provide fault tolerance. In fact, if a single physical disk in the spanned volume fails, all of the data in the entire volume is lost.
Striped Volume:
Striped volume Consists of space from 2 to 32 physical disks, all of which must be dynamic disks. The difference between a striped volume and a spanned volume is that in a striped volume, the system writes data one stripe at a time to each successive disk in the volume. Striping provides improved performance because each disk drive in the array has time to seek the location of its next stripe while the other drives are writing. Striped volumes do not provide fault tolerance, however, and you cannot extend them after creation. If a single physical disk in the striped volume fails, all of the data in the entire volume is lost.
Mirrored Volume:
Mirrored volume Consists of an identical amount of space on two physical disks, both of which must be dynamic disks. The system performs all read and write operations on both disks simultaneously, so they contain duplicate copies of all data stored on the volume. If one of the disks fails, the other continues to provide access to the volume until the failed disk is repaired or replaced.
RAID-5 Volume:
RAID-5 volume Consists of space on three or more physical disks, all of which must be dynamic. The system stripes data and parity information across all of the disks so that if one physical disk fails, the missing data can be re-created using the parity information on the other disks. RAID-5 volumes provide improved read performance, because of the disk striping, but write performance suffers, due to the need for parity calculations.

0

More Personalization Options in Windows 8.1

Saturday, 18 January 2014

You’re no longer limited to the handful of colors Windows 8 supported for the Start screen. As shown in Figure 1, you can select almost any color you want by opening the Settings charm and then selecting Personalize. You can also select your own desktop wallpaper, though you can’t select a different image as your wallpaper.
Figure 1 You can now select custom colors for the Start screen.

Windows 8.1 also makes your Start screen more dynamic by using motion accents. Basically, graphics move with your Start screen, providing an interesting, almost three-dimensional effect. Watch the video at the link provided at the beginning of this section to see motion accents in action.

0

IPv6 and the TCP/IP protocol architecture

Monday, 6 January 2014

As Figure 6-10 illustrates, the TCP/IP protocol networking stack on the Microsoft Windows platform is implemented using a dual IP layer approach. This means for example that
■Only a single implementation of transport layer protocols such as Transmission Control Protocol (TCP) or User Datagram Protocol (UDP) is needed for both IPv4 and IPv6 communications.
■Only a single implementation of framing layer protocols—such as Ethernet (802.3), Point-to-Point Protocol (PPP), and mobile broadband (802.11)—is needed for both IPv4 and IPv6 communications.
This dual IP layer TCP/IP stack is implemented on the following Windows platforms:

■Windows 8
■Windows 7
■Windows Vista
■Windows Server 2012
■Windows Server 2008 R2
■Windows Server 2008


0

Server Monitoring Through Windows PowerShell

Two of these cmdlets are new, and they both relate to virtual machine eventing, a minor new feature in Windows Server 2012 that is not well documented at the time of this writing. According to Get-Help and Windows PowerShell documentation at http://technet.microsoft.com/en-us/library/hh848462, “[v]irtual machine eventing keeps Hyper-V PowerShell objects updated without polling the virtual machine host.” You should be aware that it is enabled by default, and you can use the cmdlets Enable-VMEventing and Disable-VMEventing to reenable and disable the feature, respectively.
Use Table 5-1 to review some of the important Windows PowerShell cmdlets and other commands that relate to server monitoring. (More cmdlets are available to manage events. For a full list, type get-command *event* | sort noun,verb at a Windows PowerShell prompt.)

TABLE 5-1 Common command-line tools for server monitoring:

CMDLET OR COMMAND-LINE UTILITY              DESCRIPTION
Export-Counter                                                  Exports data that is returned by the                                                                             and Import-Counter cmdlets
Get-Counter                                                       Gets performance counter data from local and
                                                                           remote  computers
Import-Counter                                                  Imports performance counter log files (.blg, .csv, .tsv) and
                                                                          creates the objects that represent each counter sample in
                                                                          the log
Get-Event                                                          Gets events in the Windows PowerShell event queue for the
                                                                          current session
New-Event                                                        Creates a new custom event
Clear-EventLog                                                 Deletes all entries from specified event logs on the local or
                                                                         remote computers
Get-EventLog                                                   Manages event logs and displays events contained within
                                                                         those event logs
Enable-VMEventing                                         Enables virtual machine eventing
Disable-VMEventing                                        Disables virtual machine eventing        
Logman.exe                                                     Manages and schedules performance counter and
                                                                       event trace log collections on local and remote systems