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
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common | |
clear | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo apt-key fingerprint 0EBFCD88 | |
lscpu | |
sudo add-apt-repository "deb [arch=arm64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
clear | |
apt-cache policy docker-ce | |
sudo apt-get -y install docker-ce |
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 | |
# Update system packages | |
echo "Updating system packages..." | |
sudo apt update | |
# Install curl if not installed | |
echo "Installing curl..." | |
sudo apt install curl |
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
Sure, here's a bash script that will install the ImageMagick library and the imagick extension for PHP 7.4 by default, with an option for the user to choose PHP 8.3. This script will handle the installation through PECL and ensure the correct permissions are set for the library. | |
```bash | |
#!/bin/bash | |
# Function to install imagick for a specified PHP version | |
install_imagick() { | |
PHP_VERSION=$1 | |
PHP_BIN="/usr/local/lsws/lsphp${PHP_VERSION}/bin" | |
PHP_INI="/usr/local/lsws/lsphp${PHP_VERSION}/etc/php.ini" |
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 | |
# Define directories for Nginx configuration | |
AVAILABLE_DIR="/etc/nginx/sites-available" | |
ENABLED_DIR="/etc/nginx/sites-enabled" | |
# Check if the directories exist | |
if [ ! -d "$AVAILABLE_DIR" ] || [ ! -d "$ENABLED_DIR" ]; then | |
echo "Error: Nginx configuration directories not found." | |
exit 1 |
OlderNewer