Posted on in category News

World’s largest ARM supercomputer is headed to a nuclear security lab

The content below is taken from the original ( World’s largest ARM supercomputer is headed to a nuclear security lab), to continue reading please visit the site. Remember to respect the Author & Copyright.

Most supercomputers are focused on pure processing speed. Take the DOE's new Summit system, which is now the world's most powerful supercomputer, with 9,000 22-core IBM Power9 processors and over 27,000 NVIDIA Tesla V100 GPUs. But processing performa…

Posted on in category News

Partner Interconnect now generally available

The content below is taken from the original ( Partner Interconnect now generally available), to continue reading please visit the site. Remember to respect the Author & Copyright.

We are happy to announce that Partner Interconnect, launched in beta in April, is now generally available. Partner Interconnect lets you connect your on-premises resources to Google Cloud Platform (GCP) from the partner location of your choice, at a data rate that meets your needs.

With general availability, you can now receive an SLA for Partner Interconnect connections if you use one of the recommended topologies. If you were a beta user with one of those topologies, you will automatically be covered by the SLA. Charges for the service start with GA (see pricing).

Partner Interconnect is ideal if you want physical connectivity to your GCP resources but cannot connect at one of Google’s peering locations, or if you want to connect with an existing service provider. If you need help understanding the connection options, the information here can help.

In this blog we will walk through how you can start using Partner Interconnect, from choosing a partner that works best for you all the way through how you can deploy and start using your interconnect.

Choosing a partner

If you already have a service provider partner for network connectivity, you can check the list of supported service providers to see if they offer Partner Interconnect service. If not, you can select a partner from the list based on your data center location.

Some critical factors to consider are:

Bandwidth options and pricing

Partner Interconnect provides flexible options for bandwidth between 50 Mbps and 10 Gbps. Google charges on a monthly basis for VLAN attachments depending on capacity and egress traffic (see options and pricing).

Setting up Partner Interconnect VLAN attachments

Once you’ve established network connectivity with a partner, and they have set up interconnects with Google, you can set up and activate VLAN attachments using these steps:

  1. Create VLAN attachments.
  2. Request provisioning from the partner.
  3. If you have a Layer 2 partner, complete the BGP configuration and then activate the attachments for traffic to start. If you have a Layer 3 partner, simply activate the attachments, or use the pre-activation option.

With Partner Interconnect, you can connect to GCP where and how you want to. Follow these steps to easily access your GCP compute resources from your on-premises network.

Related content

Posted on in category News

Google may be working on a way to run Windows 10 on a Pixel

The content below is taken from the original ( Google may be working on a way to run Windows 10 on a Pixel), to continue reading please visit the site. Remember to respect the Author & Copyright.

Google's Pixelbook is a high-end laptop that runs Chrome OS. If you're looking to do more with the hardware, like run Windows apps, you may soon be in luck. According to a report at XDA Developers (and picked up by 9to5Google), Google may in fact be…

Posted on in category News

The best webcams

The content below is taken from the original ( The best webcams), to continue reading please visit the site. Remember to respect the Author & Copyright.

By Andrew Cunningham and Kimber Streams

This post was done in partnership with Wirecutter. When readers choose to buy Wirecutter's independently chosen editorial picks, it may earn affiliate commissions that support its work. Read the full article h…

Posted on in category News

Customer Rewards

The content below is taken from the original ( Customer Rewards), to continue reading please visit the site. Remember to respect the Author & Copyright.

We'll pay you $1.47 to post on social media about our products, $2.05 to mention it in any group chats you're in, and 11 cents per passenger each time you drive your office carpool past one of our billboards.

Posted on in category News

Microsoft’s Office UI update includes a simpler, cleaner ribbon

The content below is taken from the original ( Microsoft’s Office UI update includes a simpler, cleaner ribbon), to continue reading please visit the site. Remember to respect the Author & Copyright.

Microsoft has given its infamous Office ribbon a much simpler, much less cluttered look as part of its interface redesign for Office.com and Office 365 applications. The tech giant has updated the element to only show the most basic options — if you…

Posted on in category News

How to Copy a Virtual Hard Disk in Microsoft Azure – Brad Dickinson
Brad Dickinson

How to Copy a Virtual Hard Disk in Microsoft Azure

The content below is taken from the original (How to Copy a Virtual Hard Disk in Microsoft Azure), to continue reading please visit the site. Remember to respect the Author & Copyright.

In today’s Ask the Admin, I will show you how to use the AZCopy tool to copy an Azure virtual machine (VM) to a virtual hard disk (VHD).

 

 

Azure VMs are automatically provided with a VHD when you provision them using the Azure management portal. For instance, if you choose to deploy Windows Server 2016 Datacenter, then the attached OS disk will contain the appropriate server image. But sometimes, you might want to use a custom disk image and attach it to a VM.

There are several ways you to get a custom disk image into Azure storage. You can upload an image from your local PC to Azure. You can also copy an existing VHD of a VM that has been generalized from an Azure storage account. That is what I am going to show you how to do in this article.

I will use the AZCopy tool to copy the OS disk of an existing Azure VM to a new container in the same storage account. To follow the instructions below, you will need an Azure subscription and at least one VM already provisioned. If you do not have an Azure subscription, you can get a free 30-day trial here. For more information on provisioning VMs in Azure, see Create a Virtual Machine in the Azure Cloud on the Petri IT Knowledgebase.

Prepare to Copy a VHD

Before copying a VHD in Azure, you will need to download and install the AzCopy tool on your local PC. You can download the tool for free here.

Find Out the Storage Account and Container Name of a VHD (Image Credit: Russell Smith)

Get the Storage Account Access Key and Container URL

The AzCopy tool requires the storage account access key and container URL, which you can find in the Azure management portal.

Get the Container URL (Image Credit: Russell Smith)

Run AzCopy

Open a command prompt on your local PC in the C:\Program Files (x86)\Microsoft SDKs\Azure\AzCopy directory. The easiest way to do this is to locate the AzCopy directory in File Explorer. You will need to right click the directory, while holding SHIFT, and click Open command window here in the context menu.

Sponsored

In the command prompt window, run the AzCopy command as shown below. Replace <container URL> with the URL you pasted in Notepad, <dest container URL> with the URL for the destination container, <storage account key> with the storage key you pasted to Notepad from the Azure management portal, and <disk name> with the name of the VHD you want to copy from the source URL.

You must copy the VHD to a different container or a different storage account. To make things easy, I am copying to a different container in the same storage account. The storage account key is the same in /SourceKey and /DestKey.

AzCopy /Source:<source container URL> /Dest:<dest container URL> /SourceKey:<storage account key> /DestKey:<storage account key> /Pattern:<disk name>

In my example, the destination container does not exist in the storage account but AzCopy will create it. I just made up a name: vhdscloned. My command line looks something like this:

AzCopy /Source:http://bit.ly/2nltYTI /Dest:http://bit.ly/2o5w9aW /SourceKey:QbU90fErU9cCJ7xchQ== /DestKey:QbU90fErU9cCJ7xchQ== /Pattern:osdisk.vhd

Copy an Azure VM Virtual Hard Disk Using AzCopy (Image Credit: Russell Smith)

When the copy operation has completed, click Refresh above the list of containers on the Storage account panel in the Azure management portal. The new destination container will appear in the list. Click the new container. You will see a copy of the VHD from the source container.

Sponsored

In this article, I showed you how to copy a VHD in Azure to a new storage account container.

The post How to Copy a Virtual Hard Disk in Microsoft Azure appeared first on Petri.

Exit mobile version