Do this first!
sudo apt-get update && sudo apt-get dist-upgrade
| <# | |
| .SYNOPSIS | |
| Download VMware Workstation Pro for Windows from Archive.org | |
| .DESCRIPTION | |
| This script downloads VMware Workstation installers directly from the archive.org VMware Workstation archive. | |
| It allows for interactive menu selection or direct version specification. | |
| .PARAMETER Version | |
| Specifies the version of VMware Workstation to download (e.g., "17.6.3"). | |
| .PARAMETER Help | |
| Displays the help information for the script and exits. |
| #!/bin/bash | |
| #This script will compile and install a static ffmpeg build with support for nvenc un ubuntu. | |
| #See the prefix path and compile options if edits are needed to suit your needs. | |
| #install required things from apt | |
| installLibs(){ | |
| echo "Installing prerequisites" | |
| sudo apt-get update | |
| sudo apt-get -y --force-yes install autoconf automake build-essential libass-dev libfreetype6-dev libgpac-dev \ |