Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Download and execute with the following: | |
# curl -L https://embt.co/SetupRedHat4Delphi22sh | bash | |
# | |
echo "updating installed package" | |
sudo yum upgrade -y | |
echo "installing development tools" | |
sudo yum groupinstall 'Development Tools' -y | |
sudo yum install wget gtk3 mesa-libGL gtk3-devel -y |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |