Arch Linux: How to - Pacman parallel package download

Arch Linux: How to - Pacman parallel package download Hello Everyone If you are using Arch Linux or any Arch Linux based distro, you might got tired with slow single package download with pacman. From pacman v6, parallel download feature has been added. To have this, all you have to do Open file /etc/pacman.conf Inside file, there will be a section called # Misc options, under...

Az-204 - Prep - How To - Creating a container and access its service in Azure environment with ACR

Hello Team, Below commands can be used to create a container with image from ACR and to access the container service.az login \ --username <> \ --password <> \az group list | select -p name# Deploying a container from public registryaz container create \ --resource-group "1-028b2503-playground-sandbox" \ --name psdemo-hello-world-cli-010 \ --dns-name-label psdemo-hello-world-cli-010...

Az-204 - Prep - How To - Creating Azure Container Registry And Upload/Push docker image into Azure Container Registry (ACR)

 Hello Everyone, This post contains below list of topicsHow to create ACR ( Azure Container Registry )How to login into ACRHow to push Docker images into ACRHow to build docker images with ACRGithub link contains a sample dotnet webapp, which we can build using given instructions. I will share the Github link soon. But you can build your own container image and upload it ACR with same instructions...

How to install .Net core SDK in Mac OS ?

 Hello Everyone,As the official website not having full instructions,I am writing this article about installing .Net code SDK in Mac OS.Step1: As usual, go to microsfot website https://dotnet.microsoft.com/download and choose what version of .Net SDK you want. Download and install it. As per the installation guide in the webpage, you have to execute in the terminal `dotnet` you will expect...

Az-204 - Prep - How To - Creating VM Using Azure Powershell

 Hello Everyone, Please find below commands to create VM using azure powershell # LoginConnect-AzAccount -SubscriptionName "Demo Account"# Set your subscriptionSet-AzContext -SubscriptionName "Demo Account"# Create a resource GroupNew-AzResourceGroup -Name "psdemo-rg" -Location "CentralUS"# Create a credential to use in VM Creation$username = 'cloud_user_p_25e585de'$password = ConvertTo-SecureString...

Az-204 - Prep - How To - Creating VM Using Azure CLI - Bash

Hello Everyone, Please find below commands to create VM using azure cli `az`# login and set a subscriptionaz loginaz account set --subscription "Demo Account"# List all created RGsaz group list --output table# create a RGaz group create \ --name "psdemo-rg" \ --location "centralus"# Creating a Windows VMaz vm create \ --resource-group "1-718a377a-playground-sandbox" \ --name "psdemo-win-cli"...