Update Bash script docs

This commit is contained in:
Johan 2023-03-07 15:08:38 +01:00
parent 7618b71cb4
commit 9818973e60
4 changed files with 10 additions and 14 deletions

View File

@ -1,12 +0,0 @@
# Bash scripts
### Installera Apache & uCMS prerequisites on Ubuntu
<pre><code>sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/master/BashScripts/install-apache.sh)"
cd /var/www/cms/www
git clone https://git.myspace.nu/MySpace/uCMS-3.git .
chmod -R ugo+rwx ./</code></pre>
### Installera Active Directory Domain Controller on Ubuntu
<pre><code>sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/master/BashScripts/install-ubuntu-dc.sh)"</code></pre>

View File

@ -6,6 +6,12 @@
sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/master/BashScripts/install-apache.sh)"
```
### Optionally install uCMS
<pre><code>cd /var/www/cms/www
git clone https://git.myspace.nu/MySpace/uCMS-3.git .
chmod -R ugo+rwx ./</code></pre>
## Install MySQL
```bash
@ -27,7 +33,7 @@ sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/mast
## Install Samba Active Directory Domain Controller
```bash
sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/master/BashScripts/install-dc.sh)"
sudo su -c "bash <(wget -qO- https://git.myspace.nu/MySpace/Docs/raw/branch/master/BashScripts/install-ubuntu-dc.sh)"
```
## Install VM Tweaks

View File

@ -11,6 +11,8 @@ rmmod floppy > /dev/null 2>&1 && (
echo "blacklist floppy" | tee /etc/modprobe.d/blacklist-floppy.conf
dpkg-reconfigure initramfs-tools
)
# Disable Cloud-init
if [ ! -f "/etc/cloud/cloud-init.disabled" ]; then
echo "Disabling cloud-init"
touch /etc/cloud/cloud-init.disabled

View File

@ -6,4 +6,4 @@
## [Node.JS](Node.JS.md)
## [Bash Scripts](BashScript.md)
## [Bash Scripts](https://git.myspace.nu/MySpace/Docs/src/branch/master/BashScripts)