Proxmox Import Wizard Makes for Easy VMware VM Migrations (storagereview.com) 39
Lyle Smith reports via StorageReview.com: Proxmox has introduced a new import wizard for Proxmox Virtual Environment (VE), aiming to simplify the migration process for importing VMware ESXi VMs. This new feature comes at an important time in the industry, as it aims to ease the transition for these organizations looking to move away from VMware's vSphere due to high renewal costs.
The new import wizard is integrated into Proxmox VE's existing storage plugin system, allowing for direct integration into the platform's API and web-based user interface. It offers users the ability to import VMware ESXi VMs in their entirety, translating most of the original VM's configuration settings to Proxmox VE's configuration model (all while minimizing downtime). Currently, the import wizard is in a technical preview state, having been added during the Proxmox VE 8.2 development cycle. Although it is still under active development, early reports suggest the wizard is stable and holds considerable promise for future enhancements, including the planned addition of support for other import sources like OVF/OVA files. [...]
This tool represents Proxmox's commitment to providing accessible, open-source virtualization solutions. By leveraging the official ESXi API and implementing a user space filesystem with optimized read-ahead caching in Rust (a safe, fast, and modern programming language ideal for system-level tasks), Proxmox aims to ensure that this new feature can be integrated smoothly into its broader ecosystem.
The new import wizard is integrated into Proxmox VE's existing storage plugin system, allowing for direct integration into the platform's API and web-based user interface. It offers users the ability to import VMware ESXi VMs in their entirety, translating most of the original VM's configuration settings to Proxmox VE's configuration model (all while minimizing downtime). Currently, the import wizard is in a technical preview state, having been added during the Proxmox VE 8.2 development cycle. Although it is still under active development, early reports suggest the wizard is stable and holds considerable promise for future enhancements, including the planned addition of support for other import sources like OVF/OVA files. [...]
This tool represents Proxmox's commitment to providing accessible, open-source virtualization solutions. By leveraging the official ESXi API and implementing a user space filesystem with optimized read-ahead caching in Rust (a safe, fast, and modern programming language ideal for system-level tasks), Proxmox aims to ensure that this new feature can be integrated smoothly into its broader ecosystem.
Win win (Score:5, Insightful)
VMware users can more easily move off VMware while VMware can more easily shed a product line they no longer want to support.
Re: (Score:2)
Anything that helps facilitate dumping the jackals at Broadcom is welcome news. It will be interesting to see if the corporate exodus from VMWare is enough to ensure they never recoup their $69 billion investment.
Good riddance.
Re: (Score:2)
Re: (Score:3)
Re: (Score:2)
I have a hunch that VM wanted less to no longer support a product but rather get people to pay the extortion fee to continue using it.
In other words, I doubt that they're happy about people easily dumping their crap.
Re: (Score:2)
I have a hunch that VM wanted less to no longer support a product but rather get people to pay the extortion fee to continue using it.
Well, I'm sure that Tan would like nothing more than for every VMWare customer who's ever existed to write him a $10,000,000 check, daily. He said the quiet part out loud, and likely too early on in the process, that the goal was to keep the top 600ish customers and squeeze everyone else out.
In other words, I doubt that they're happy about people easily dumping their crap.
There's a subtle difference, I think: Tan is more likely to be unhappy about the fact that he doesn't get to pick which customers can easily dump their crap. In a world perfectly suited to Broadcom's wants, the VSphere
Re: (Score:3)
The problem with the Broadcom vision is that where are the top customers going to hire their personnel from? As it stands there is a large pool of lower tier people in small installs that make a large talent pool that I can hire from, and need minimal extra training.
If you turn VMWare into a mainframe type environment where the only way is to hire someone and then train them entirely in the platform, it is time to dump that platform.
There is also as you point out the Oracle/Amazon scenario that will play ou
Re: Win win (Score:2)
Itâ(TM)s 2024. Who buys on premise servers anymore? Itâ(TM)s all cloud these days and these big customers would looove to outsource to AWS and Azure their expensive infrastructure and fire their infrastructure guys to cut costs as we head into a recession.
Cut the nose to despise the face. Where I work we just decommissioned our last server. We are now 100% cloud.
VMware wonâ(TM)t have any customers left itâ(TM)s it isnâ(TM)t cheaper to stay in house and no proxmox is not something I
Re: (Score:2)
Don't price gouge customers, and there's no incentive to make easy tools to shitcan your product.
Happy customers don't get happy feet.
I have some experience with this kinda dumping (Score:3)
Of course, they are the
I migrated from VMWare to Proxmox (Score:5, Interesting)
When I attempted to migrate from VMWare ESXi to Proxmox a few years ago, it wasn't a very smooth experience. Promox has made a lot of progress since then. I now use it even for some production loads. The UI is still not as polished as VMWare. But for the price, I am not complaining. It is a workhorse and never crashes on me.
Re: (Score:2)
I still have a half-dozen VMs running on ESXi, but as they're personal and not business and the host is one of the old free editions, I'm in no rush.
Still, it's good to know Proxmox is now a potentially viable alternative. And having just looked, it's nice to see the backup solution is better than VMWare + Veeam... I can get rid of my last Windows system.
I can handle a rough UI, back in the day I administered a BlackBerry server and I swear that was deliberately designed to be as frustrating as possible.
Re: (Score:2)
Proxmox has come a long way since the last time I looked at it ~4 years ago. I recently installed it here at home to handle a VM workload that just wasn't working with other lighter-weight containerization, and it's been fantastic. It may not have every single supported feature that VMware products support, but it does what I need and a whole lot more including what looks to be fairly easy clustering for high availability, VM backup, in-cluster migrations and failover, etc.
I'd certainly be evaluating it i
Re: (Score:2)
Having used Proxmox HA/replication, I have to say it is very good, much better than just "OK" that I was expecting. Very reliable.
Buzzword bingo alert! (Score:4, Funny)
"By leveraging the official ESXi API and implementing a user space filesystem with optimized read-ahead caching in Rust"
Hey everyone, its written in Rust, must be awesome and cool! Get it now for kudos points!
Re: (Score:3)
"Filesystem code is one place it should already not be acceptable to contain anything in it that rust would complain about."
I imagine pointers are a thing in filesystem code for efficiency and practical reasons so I'm not sure what you're driving at. The lower your level of code the more you have to access raw memory whether you like it or not. If you're not comfortable doing it then leave to someone who is and stick with your "safe" language.
Re: (Score:3, Insightful)
"By leveraging the official ESXi API and implementing a user space filesystem with optimized read-ahead caching in Rust" Hey everyone, its written in Rust, must be awesome and cool! Get it now for kudos points!
lul, if your filesystem of choice has a hard dependency on a C compiler specifically to allow pointers into invalid areas of memory, you should ditch that FS immediately, burn it with fire, and never touch that thing again.
Filesystem code is one place it should already not be acceptable to contain anything in it that rust would complain about.
Ah yes, another example of Rust cultist. Newsflash: common dangerous bugs in filesystems are data loss and corruption (not memory access violation), and that fancy borrow checker of yours does exactly NOTHING to stop them. So yes, give me a nice, tried and tested, well aged, written in C filesystem over shit written by a cultist moron who thinks he can do no wrong because he's writing in Rust.
Re: (Score:2)
Re: (Score:2)
Re: (Score:3)
Proxmox is not really a vmware replacement no matter (snip) It's not a replacement for anyone outside of a small business.
Um, why contradict yourself?
Once upon a time, VMWare was not worthy of giant company workloads. It has since grown up. Perhaps Proxmox can grow up too?
Re: (Score:2)
Perhaps, but it is not today. At the moment it is still a type-2 hypervisor that is masquerading as a type-1.
Re: (Score:3)
Well, if you're that big a player, paying through the nose for the VMWare licensing fees shouldn't be a problem.
virt-to-v2v (Score:2)
Re: (Score:2)
Not that I have read the article in the finest slashdot tradition, but this I believe is a *live* migration tool. That is you suck in the VM from an ESXi host onto a Proxmox host *live* as though you were doing a vmotion on the VM, except now it ends up on a Proxmox host. XCP-ng has a similar feature. We purchased three years of support for our vSphere infrastructure last June so I have another two years to figure out what to do. Personally I am hoping for this to turn into another VRAM scenario and Broadco
VirtualBox (Score:2)
Whatever happened to VirtualBox? Oracle inherited it long ago from Sun Microsystems, but it is GPLed, so should be safe from the likes of Broadcom.
Why have I not heard it mentioned alongside Proxmox as an option for VMware refugees?
I know Proxmox is a Debian based hypervisor (modified Ubuntu with KVM), while VirtualBox is application layer, but they do the same job for a small user, don't they?
Re: (Score:2)
Re: (Score:2)
VirtualBox is really only good for single workloads. The power of vmware/proxmarx/kvm is really the resource sharing and ability to move loads between networked machines for better resource utilization. E.g. buy a larger server and have 8-10 "machines" running on it, instead of a single load. And if a machine in your enviroment becomes unhealthy, you can move those running loads elsewhere.
Re: (Score:2)
Whatever happened to VirtualBox? Oracle inherited it long ago from Sun Microsystems, but it is GPLed, so should be safe from the likes of Broadcom.
Why have I not heard it mentioned alongside Proxmox as an option for VMware refugees?
Couple of reasons...
1.) Virtualbox is, as stated, a type-2 hypervisor. It's an application that sits on top of another OS, while VMWare ESXi is an OS itself. This puts it in a largely different category, for reasons that will be clearer later on...but it's at least worth noting that in all of the years since Oracle bought Sun *and* forked Red Hat Linux, nobody, either at Oracle or in the community at large, has created a Type-1 hypervisor out of Virtualbox.
2.) One of VMWare's main selling points is its mana
Re: (Score:2)
Because Virtualbox is a type-2 hypervisor, it is dependent on its underlying OS for storage and networking
This is in many ways a benefit. It will support any hardware or storage that's supported by any os virtualbox itself runs on.
Re: (Score:2)
Proxmox is a type-2 hypervisor that masquerades as a type-1.
Re: (Score:2)
Neither proxmox nor esxi have official support for macos, both can support a hackintosh install...Not that it matters, because macos for x64 is going to stop being developed fairly soon.
Proxmox has an unofficial port to ARM (proxmox is a management layer, the underlying technology already supports arm and has for quite a while).
Xen (Score:2)
>"Proxmox Import Wizard Makes for Easy VMware VM Migrations"
XCP-NG/XO has had that for a long time:
https://xcp-ng.org/blog/2022/1... [xcp-ng.org]
https://xcp-ng.org/docs/migrat... [xcp-ng.org]
Biased Slashvertisement (Score:2)
Also, the unnecessary mentioning of how "ideal" Rust is. You were trying to bait me weren't you BeauHD? TFS should be considered flamebait for that comment alone.....