Create fm-ubuntu.sh

This commit is contained in:
Michael
2025-06-11 12:22:06 +01:00
committed by GitHub
parent 87189f4ed7
commit 9b0129654d

31
fm-ubuntu.sh Normal file
View File

@@ -0,0 +1,31 @@
# Update Ubuntu, run this multiple times until there are no more updates
apt update && apt upgrade
# Check & confirm Ubunto version
lsb_release -a
# Install needed packages
apt install wget
apt install unzip
apt install at
# Install FileMaker Server
cd ~/
mkdir fminstaller
cd fminstaller
# Download and unzip
wget https://downloads.claris.com/esd/fms_21.1.5.500_Ubuntu22_amd64.zip
unzip fms_21.1.5.500_Ubuntu22_amd64.zip
# Identify installation filename
ls filemaker*.deb
# Start installation
sudo apt install ./fms_*.deb
# Follow prompts during installation for license, type and admin credentials
# Check & confirm FileMaker Server & Nginx are running
ps -A | grep fm
ps -A | grep nginx