Skip to content

Instantly share code, notes, and snippets.

View Vizit0r's full-sized avatar

Aleksey Vizit0r

  • Ukraine
View GitHub Profile
@jimmckeeth
jimmckeeth / SetupUbuntu4Delphi22.sh
Last active June 16, 2024 09:33
This script automates the setup of Ubuntu 22.04 LTS for Delphi 11.3 Alexandria
#!/bin/bash
#
# Download and execute with the following:
# curl -L https://embt.co/SetupUbuntu4Delphi22 | bash
#
echo "Updating the local package directory"
sudo apt update
echo "Upgrading any outdated pacakges"
sudo apt full-upgrade -y
echo "Install new packages necessary for Delphi & FMXLinux"
#!/bin/bash
#
# Download and execute with the following:
# curl -L http://tinyurl.com/SetupLinuxRS12 | bash
#
echo "Updating the local package directory"
sudo apt update
echo "Upgrading any outdated packages"
sudo apt full-upgrade -y
echo "Install new packages necessary for Delphi & FMXLinux"