Page 1 of 1

FREE Win & Linux on Mac

Posted: Sat Feb 22, 2025 2:18 pm
by Piero
I'm about to do it (I want to test with Sequoia, so I still need to do "lots of things" before upgrading………)
Anyway I wanted to share:

https://github.com/TuringSoftware/Cryst ... ses/latest

https://dev.to/tchisom17/installing-lin ... -on-mac-ed

https://profile.broadcom.com/web/registration

https://support.broadcom.com/group/ecx/ ... are+Fusion
 

PS:

Posted: Sat Feb 22, 2025 2:51 pm
by Piero

FREE Win & Linux on Mac

Posted: Mon Feb 24, 2025 11:05 am
by Piero
Image

Still not Sequoia :)

USEFUL INFO FROM THE NET:

Posted: Mon Feb 24, 2025 12:59 pm
by Piero
Install vm tools on Linux:

Code: Select all

sudo apt update && sudo apt -y install open-vm-tools
(For Windows, do it via VMware's "Virtual Machine" menu)

Fix Linux audio:

Code: Select all

systemctl --user stop pipewire.socket
systemctl --user stop pipewire.service
systemctl --user disable pipewire.socket
systemctl --user disable pipewire.service
systemctl --user mask pipewire
systemctl --user mask pipewire.socket
sudo apt install pulseaudio
systemctl --user unmask pulseaudio
systemctl --user unmask pulseaudio.socket
systemctl --user start pulseaudio.service
systemctl --user enable pulseaudio.service
Check if pulseaudio is running:

Code: Select all

pactl info
Always activate pulseaudio at startup:
Search and open "Startup Applications"
Add Startup Program:

Code: Select all

systemctl --user start pulseaudio.service