Created
June 25, 2020 10:40
-
-
Save rakibulinux/28ae8e98313a8d17eceb57f2a42ad69b to your computer and use it in GitHub Desktop.
How to Install Alfresco CMS on Ubuntu 18.04 LTS
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/sh | |
sudo add-apt-repository ppa:opencpn/opencpn -y | |
sudo apt-get update -y | |
sudo apt-get install libfontconfig1 libsm6 libice6 libxrender1 libxt6 libcups2 opencpn libcairo2 ttf-mscorefonts-installer -y | |
#Install Alfresco Community Edition | |
wget https://download.alfresco.com/release/community/201707-build-00028/alfresco-community-installer-201707-linux-x64.bin | |
sudo chmod 755 alfresco-community-installer-201707-linux-x64.bin | |
sudo ./alfresco-community-installer-201707-linux-x64.bin | |
You will be redirected to the GUI installation screen just click on Forward button: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment