VMware Workstation Player Update Tips – 17.0.0 to 17.5.0 – unlock macOS VMs

VMware Workstation Player Update Tips – 17.0.0 to 17.5.0 – unlock macOS VMs

Coming soon post here…

===

Tips To Note:
Crucial point ONE is:

Resuming/continuing the update process[after the first restart prompt], of the hypervisor VMware App, is exactly the same steps as you start the update process before.
Crucial point TWO is:
Disable Anti-Virus temporarily – for me disable AVG Anti-Virus.
Ignoring Security Alerts, for running check.exe and unlock.exe patch unlocker files. After all is done, re-enable your Anti-Virus Software.
Result:
I can now browse and search the web, Google, and YouTube on a macOS VM in a Windows Host PC.
I could install Xcode and Apple Developer Tools. Or update Ventura OS to Sonoma OS – if the processor is 8-gen intel and up.

===

===

VMware Workstation Player Update Tips – 17.0.0 to 17.5.0

My Tech WP Blog – coming soon post/article for this video – check back here in a few days for the complete post: https://www.leonidassavvides.com/blog/2023/11/vmware-workstation-player-update-tips-17-0-0-to-17-5-0-unlock-macos-vms/
http://www.LeonidasSavvides.com/blog/
https://www.leonidassavvides.com/blog/2023/11/create-macos-sonoma-14-x-iso-without-a-mac-computer-and-free/

Unlocked VMware for MacOS VMs in Windows hosts or Linux hosts:
https://github.com/DrDonk/unlocker
https://github.com/DrDonk/unlocker/releases/tag/v4.2.7
https://github.com/DrDonk/unlocker/releases/download/v4.2.7/unlocker427.zip (used this zip in the demonstration here)

MacOS Sonoma 14.1 or Ventura 13.6 ISO image or VMware image (This is a third-party website)
https://filecr.com/windows/macos-sonoma-image-for-vmware/?id=844930904000
https://filecr.com/search/?query=macOS%20ventura%20iso
https://filecr.com/search/?query=macOS%20sonoma%20iso

=======================================

Donate/Make-A-Payment
https://www.paypal.me/lsepolis123
https://www.patreon.com/lsepolis123
https://www.buymeacoffee.com/lsepolis123
https://www.ko-fi.com/lsepolis123

Our Merchandise
http://odysseasphoto.gallery/html/our-merch.html

Social Media Networking
Facebook
https://www.facebook.com/leonidas.e.savvides
Twitter
https://twitter.com/lwdlse
Instagram
https://www.instagram.com/leonidassavvides/
YouTube Channel
https://www.youtube.com/channel/UC4HnFOYTvgoFAay9FKNTPYw

Affiliate Links-1
Int’l Prepaid/Cashback Cards
https://app.rewire.to/signup/?code=NR8H
https://revolut.com/referral/leonidpwlv!DEC1AR
https://wise.com/invite/ata/leonidass19

CY-EU
I love saving with sKash; it is instant, easy & effortless! I have been saving on my groceries, fuel, coffee & all my other daily purchases… Up to 10% every time!
Register to sKash & get a €10 Welcome vouchers to get a taste of saving.
You can thank me later!
https://skash.com/I6yy5

Affiliate Links-2
Envato – The world’s largest creative marketplace
Envato Placeit
https://1.envato.market/c/2617455/629767/10168
Envato Elements
https://1.envato.market/c/2617455/298927/4662
Envato Market
https://1.envato.market/c/2617455/275988/4415

Affiliate Links-3
Join Canva with my link and get rewards! If you ever need to create a graphic, poster, invitation, logo, presentation – or anything that looks good — give Canva a go.
https://www.canva.com/join/gyt-gmc-twm

Editing Software: Adobe Premiere Pro / Windows 11 Pro

===

Setup Laravel 10.x Homestead in Windows 10/11

Section – 1 [Install Software]

https://laravel.com/docs/10.x/homestead#installation-and-setup

vagrant_2.3.7_windows_amd64.msi – https://developer.hashicorp.com/vagrant/downloads

VirtualBox-6.1.46-158378-Win.exe – https://www.virtualbox.org/wiki/Download_Old_Builds_6_1

VirtualBox 6.1.46 (released July 18 2023) << This and Not the >> VirtualBox 7.0.10 platform packages – ​Windows hosts

According to: https://laravel.com/docs/10.x/homestead#installation-and-setup

Code Editor/IDE: PhpStorm-2023.1.4.exe or VSCodeSetup-x64-1.80.1.exe

Lastly install: Git-2.41.0.3-64-bit.exe – https://git-scm.com/downloads

Section – 2 [ENABLE VT-x in Hardware/BIOS/UEFI if disabled]

http://leonidassavvides.com/blog/2023/07/23/enable-vt-x-in-hp-z640-workstation/

Section – 3 [Installing Homestead]

https://laravel.com/docs/10.x/homestead#installing-homestead

Go To CLI Terminal in IDE/Editor or Windows Terminal or Git Bash Terminal and execute:

git clone https://github.com/laravel/homestead.git D:\htdocs_xampp\Homestead

where D:\htdocs_xampp\Homestead the Homestead directory, after entering this directory:

d:
cd d:\htdocs_xampp\Homestead

Next, execute the bash init.bat command from the Homestead directory to create the Homestead.yaml configuration file. The Homestead.yaml file is where you will configure all of the settings for your Homestead installation. This file will be placed in the Homestead directory: if there is a problem with the

init.bat 

use

./init.bat

Section – 4 [Configuring Homestead]

Follow the instructions at:

https://laravel.com/docs/10.x/homestead#configuring-homestead

For configuring the file: Homestead.yaml

Section – 5 [Launching The Vagrant Box]

After all, the steps above, it is time to:

Launching The Vagrant Box

You must have in mind the 4 most used CLI commands FROM CLI/Terminal at d:\htdocs_xampp\Homestead\:

vagrant up # if error on this - please Section 6 below
vagrant status
vagrant suspend
vagrant ssh

Section – 6 [Configuring SSH Keys]

In case the first attempt of running:

vagrant up

you getting

Please give the command to generate ssh keys in Windows:

ssh-keygen -t rsa -C "username@email.com"

This will create the:

C:\Users\lwdls\.ssh\id_rsa.pub
C:\Users\lwdls\.ssh\id_rsa

Then you have to go to Homestead.yaml and edit the SSH Keys with the correct Keys you have just created:

authorize: C:\Users\lwdls.ssh\id_rsa.pub
keys:
     - C:\Users\lwdls.ssh\id_rsa

Then you return to Section – 5 and give the command: vagrant up

The first time you have to await some time to download the Vagrant VM – Ubuntu Server from the repositories…

After the VM OK is launched go to: http://homestead.test/phpinfo.php to see the webpage of phpinfo():

phpinfo.php

<?php
phpinfo();
?>

if any problem put the phpinfo.php

in

public/phpinfo.php

to stop the VM – shutdown the PC – give

vagrant suspend

To add additional sites:

Adding Additional Sites

https://laravel.com/docs/10.x/homestead#adding-additional-sites

To create a Laravel Site – start with download Laravel files with the:

https://laravel.com/docs/10.x/installation#your-first-laravel-project

At Terminal d:\htdocs_xampp\

composer create-project laravel/laravel example-laravel-app

Composer can be installed from:

https://getcomposer.org/download/

Also, the composer comes preinstalled in Homestead/Vagrant/VM

And, a second way is:

After:

vagrant up 

Give:

vagrant ssh

and from Terminal at /home/vagrant/ give the command:

 composer create-project laravel/laravel example-laravel-app

Any way you choose, be sure to edit the Homestead.yaml and every new website added to run:

vagrant reload --provision

And lastly

To run a new URL locally modify the host file at:

On macOS and Linux, this file is located at /etc/hosts. On Windows, it is located at C:\Windows\System32\drivers\etc\hosts:

192.168.56.56 homestead.test
192.168.56.56 another1.test
192.168.56.56 another2.test

Again, according to

Homestead.yaml

After, download the Laravel 10.x bootstrap code base, view the Laravel homepage accordingly by going to http://another1.test.

Happy Laravel Web Development & Coding…!

The advantage of getting hardware & software from the same manufacturer

Like Apple Mac Computer & macOS or Microsoft PC & Microsoft Windows OS…

Note – This is a condensed version of https://leonidassavvides.com/blog/2023/06/28/the-advantage-of-getting-hardware-os-software-from-the-same-manufacturer/

In today’s world, technology has become an integral part of our lives. From smartphones to laptops, we rely on technology to perform our daily tasks. When it comes to purchasing a computer, there are two options available: buying hardware and software from the same manufacturer or buying them from diverse sources. While both options have their advantages, there are several benefits to getting hardware and software from the same manufacturer.

One of the most significant advantages of getting hardware and software from the same manufacturer is compatibility. When you purchase a computer from a manufacturer, you can be sure that the hardware and software are designed to work seamlessly together. This means that you won’t have to worry about compatibility issues or spend time troubleshooting problems. For example, Apple’s Mac computers and MacOS are designed to work together, providing a smooth and seamless user experience.

Another advantage of getting hardware and software from the same manufacturer is support. When you purchase a computer from a manufacturer, you can expect to receive support for both the hardware and software. This means that if you encounter any issues, you can contact the manufacturer’s support team for assistance. This can save you time and money, as you won’t have to hire a third-party technician to fix any problems.

Getting hardware and software from the same manufacturer can also provide better security. Manufacturers often release updates and patches to fix security vulnerabilities in their software. When you purchase hardware and software from the same manufacturer, you can be sure that you will receive these updates in a timely manner. This can help protect your computer from malware and other security threats.

Finally, getting hardware and software from the same manufacturer can provide a better user experience. Manufacturers often design their hardware and software to work together seamlessly, providing a user-friendly interface and intuitive controls. This can make it easier for you to perform your daily tasks and increase your productivity.

In conclusion, there are several advantages to getting hardware and software from the same manufacturer. From compatibility to support to security and user experience, purchasing a computer from a manufacturer can provide a seamless and hassle-free experience. Whether you choose Apple’s Mac computers/MacOS or Microsoft’s PC/Windows OS, getting hardware and software from the same manufacturer can provide a significant advantage.

FURTHER READING: