ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. virtual machine
    Log in to post
    • All categories
    • OksanaO

      Can’t Access a BitLocker-Encrypted Azure VM?

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind azure virtual machine bitlocker powershell azure key vault
      1
      0 Votes
      1 Posts
      290 Views
      No one has replied
    • OksanaO

      StarWind Success Story: Deploy a high availability cluster with StarWind VSAN

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind starwind virtual san vsan high availability virtual machine infrastructure
      1
      0 Votes
      1 Posts
      177 Views
      No one has replied
    • OksanaO

      Stop Copying Data You Don’t Need To

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind virtual machine snapshot database
      1
      0 Votes
      1 Posts
      227 Views
      No one has replied
    • OksanaO

      Installing Debian 12 on Proxmox VE 8.3

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind proxmox proxmox ve debian virtual machine
      1
      0 Votes
      1 Posts
      176 Views
      No one has replied
    • OksanaO

      Unlock Cost Savings with Memory Tiering

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind vmware vmware vsphere 8 virtual machine tco
      1
      0 Votes
      1 Posts
      152 Views
      No one has replied
    • OksanaO

      Rescue Your Data: How to Extract Data from a Failed VM

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind vmdk vmdk files vmware virtual machine
      1
      0 Votes
      1 Posts
      523 Views
      No one has replied
    • OksanaO

      Discover How VMware's Latest Update Simplifies Snapshot Management

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind vmware vsphere 8 vmware vsphere 8 virtual machine
      1
      0 Votes
      1 Posts
      284 Views
      No one has replied
    • OksanaO

      Discover the Latest Advancements in VM Migration with StarWind V2V Converter

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind starwind v2v converter hyper-v vmware oracle virtualbox ovirt virtual machine
      1
      0 Votes
      1 Posts
      409 Views
      No one has replied
    • OksanaO

      StarWind Success Story: Build a hyperconverged IT infrastructure with StarWind

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind starwind virtual san vsan virtual machine hyperconverged infrastructure
      1
      0 Votes
      1 Posts
      549 Views
      No one has replied
    • OksanaO

      Exploring Virtual Machine Storage Types

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind virtual machine virtualization smb3 nfs iscsi nvme-of storage
      1
      0 Votes
      1 Posts
      420 Views
      No one has replied
    • OksanaO

      Convert VMware VM to KVM

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind starwind v2v converter kvm vsphere virtual machine
      1
      1 Votes
      1 Posts
      322 Views
      No one has replied
    • OksanaO

      A Sure-Fire Way to Backup ZFS Partitions With Veeam

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind veeam linux backup zfs virtualization virtual machine
      1
      0 Votes
      1 Posts
      371 Views
      No one has replied
    • OksanaO

      Using Azure Site Recovery for Replication to Another Region

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind microsoft azure azure data virtual machine
      1
      1 Votes
      1 Posts
      229 Views
      No one has replied
    • OksanaO

      Clustered Apps Migration for Azure Shared Disks

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind microsoft azure azure azure shared disks vm virtual machine
      1
      1 Votes
      1 Posts
      278 Views
      No one has replied
    • OksanaO

      Distribute VMware Content Across vSphere with GuestStore

      Watching Ignoring Scheduled Pinned Locked Moved Starwind starwind vmware vmware tools virtual machine vsphere
      1
      1 Votes
      1 Posts
      369 Views
      No one has replied
    • JaredBuschJ

      Yet another way Azure sucks

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion azure virtual machine
      23
      3 Votes
      23 Posts
      3k Views
      stacksofplatesS

      @flaxking said in Yet another way Azure sucks:

      @stacksofplates said in Yet another way Azure sucks:

      @IRJ said in Yet another way Azure sucks:

      @JaredBusch said in Yet another way Azure sucks:

      When you want to delete a virtual machine, you have to clean up all the its manually.

      There is not even an option to remove everything at once.

      This is by design, because all your resources are separate. Companies that leverage Azure/AWS are not using the console to deploy resources for this very reason. Using infrastructure as code is the only way to go. Both Azure and AWS offer their own IaC at no cost, but you can use terraform as an open source before neutral deployment method as well.

      Azure VMs and AWS EC2 are not VPS as you know. AWS does offer VPS style servers called lightsail. It's more affordable than EC2 and you would be able to delete with one click like youre used to doing. Of course you don't get all the other features like advanced networking, storage, etc.

      We've been looking at Pulumi lately for IaC. I'm kind of over DLCs to write things and then having to wait for that DLC to support control flows. Just let the language your used to using do the work.

      Coming from a company that only uses ARM templates, Bicep was the most exciting thing I saw at Ignite.

      The scariest thing was using AR and Teams to remotely assist with surgeries. Teams didn't even work properly for that whole presentation.

      Yeah I'm even kind of over things like Terraform.

      With Pulumi you can do things like this:

      import pulumi import pulumi_aws as aws def make_ec2(name: str): size = 't2.micro' ami = aws.get_ami(most_recent="true", owners=["137112412989"], filters=[{"name":name,"values":["amzn-ami-hvm-*"]}]) group = aws.ec2.SecurityGroup('webserver-secgrp', description='Enable HTTP access', ingress=[ { 'protocol': 'tcp', 'from_port': 22, 'to_port': 22, 'cidr_blocks': ['0.0.0.0/0'] } ]) server = aws.ec2.Instance(name, instance_type=size, vpc_security_group_ids=[group.id], # reference security group from above ami=ami.id) pulumi.export('publicIp', server.public_ip) pulumi.export('publicHostName', server.public_dns) vms = ["test","myvm","things"] for x in vms: make_ec2(x)

      You don't need to wait 6 years for the DSL to support for loops or if statements. And you can build in whatever scaffolding you want around it. Want to test your infrastructure? Include the same stuff in a testing suite. It's just much nicer overall.

    • FATeknollogeeF

      Proxmox: relocation project? eazy, peezy

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion proxmox fedora32 windows old virtual machine proxmox 6.2
      2
      3 Votes
      2 Posts
      517 Views
      scottalanmillerS

      That's awesome.

    • CCWTechC

      Associate existing drive with new Proxmox VM

      Watching Ignoring Scheduled Pinned Locked Moved IT Discussion proxmox virtual machine
      7
      0 Votes
      7 Posts
      618 Views
      scottalanmillerS

      @Pete-S said in Associate existing drive with new Proxmox VM:

      You have that info in the thread below from the other day:
      https://mangolassi.it/topic/21751/import-a-qcow2-into-proxmox

      Basically you need to put it in the right place and it has to have the right name (depending on config file, what filesystem, VM ID)

      So the problem that I've seen from this is that it causes PM to get confused and not be able to display the storage data. Everything works, it just can't tell you where files are or delete unused space or whatever.

    • OksanaO

      Deploying Azure Active Directory Domain Services (AADDS)

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure active directory virtual machine
      1
      1 Votes
      1 Posts
      360 Views
      No one has replied
    • OksanaO

      Protect Azure VMs with Just in time VM access

      Watching Ignoring Scheduled Pinned Locked Moved Starwind azure virtual machine
      1
      1 Votes
      1 Posts
      225 Views
      No one has replied
    • 1
    • 2
    • 3
    • 1 / 3