diff --git a/Centos-MicroNas.sh b/Centos-MicroNas.sh
deleted file mode 100644
index 55dbf35..0000000
--- a/Centos-MicroNas.sh
+++ /dev/null
@@ -1,58 +0,0 @@
-#ProxmoxCT Note use privileged container with nesting enabled #
-
-#EPEL Repo
-rpm --rebuilddb
-dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
-rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-8
-
-#Webmin repo
-cat << 'EOF' >> /etc/yum.repos.d/webmin.repo
-[Webmin]
-name=Webmin
-#baseurl=https://download.webmin.com/download/yum
-mirrorlist=https://download.webmin.com/download/yum/mirrorlist
-enabled=1
-EOF
-rpm --import https://download.webmin.com/jcameron-key.asc
-
-#Install
-dnf --setopt=install_weak_deps=False --best --refresh -y install samba samba-common cronie nfs-utils webmin openssh-server nano nload htop avahi wsdd
-
-#Webin config
-service webmin stop
-systemctl start webmin
-sed -i -e '/port=/c\port=80' -e 's/ssl=/c\ssl=0/g' -e 's/ipv6=/c\ipv6=0/g' /etc/webmin/miniserv.conf
-echo "servers=Services & Tools" >> /etc/webmin/webmin.catnames
-cat << 'EOF' >> /etc/webmin/webmin.cats
-filter=cluster
-exports=servers
-filemin=servers
-useradmin=servers
-mailboxes=
-EOF
-
-#Samba config
-sed -i -e '/map to guest =/c\map to guest = never' /etc/samba/smb.conf
-
-#Avahi config
-cat << 'EOF' >> /etc/avahi/services/smb.service
-
-
-
- %h
-
- _smb._tcp
- 445
-
-
- _device-info._tcp
- 0
- model=RackMac
-
-
-EOF
-
-#Restart services
-service webmin stop
-systemctl enable --now smb nfs-server webmin avahi-daemon wsdd
-systemctl restart smb nfs-server webmin avahi-daemon wsdd
\ No newline at end of file
diff --git a/DBUG-output.sh b/DBUG-output.sh
deleted file mode 100644
index 43b9c2d..0000000
--- a/DBUG-output.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-# Set debug flag as desired
-DEBUG=1
-# DEBUG=0
-
-if [ "$DEBUG" -eq "1" ]; then
- OUT='/dev/tty'
-else
- OUT='/dev/null'
-fi
-
-# actual script use commands like this
-command > $OUT 2>&1
-
-# or like this if you need
-command 2> $OUT
\ No newline at end of file
diff --git a/Debian-MicroNas.sh b/Debian-MicroNas.sh
deleted file mode 100644
index bc41302..0000000
--- a/Debian-MicroNas.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#ProxmoxCT Note use privileged container with nesting enabled #
-
-#Prerequisite packages
-export DEBIAN_FRONTEND=noninteractive
-apt install --no-install-recommends wget gnupg2 apt-transport-https -y
-
-#Webin repo
-wget -qO - https://download.webmin.com/jcameron-key.asc | sudo apt-key add -
-echo "deb https://download.webmin.com/download/repository sarge contrib" > /etc/apt/sources.list.d/webmin.list
-
-#Wsdd(Web Service Discovery host daemon) repo
-wget -O - https://pkg.ltec.ch/public/conf/ltec-ag.gpg.key|apt-key add -
-echo "deb https://pkg.ltec.ch/public/ `lsb_release -cs` main" > /etc/apt/sources.list.d/wsdd.list
-
-#Install
-apt update
-debconf-set-selections <<<"samba-common samba-common/do_debconf boolean true"
-apt install --no-install-recommends samba samba-vfs-modules cron nfs-kernel-server webmin openssh-server nano nload htop avahi-daemon avahi-utils wsdd -y
-
-#Webmin config
-sed -i -e '/port=/c\port=80' -e 's/ssl=/c\ssl=0/g' -e 's/ipv6=/c\ipv6=0/g' /etc/webmin/miniserv.conf
-echo "servers=Services & Tools" >> /etc/webmin/webmin.catnames
-cat << 'EOF' >> /etc/webmin/webmin.cats
-filter=cluster
-exports=servers
-filemin=servers
-useradmin=servers
-mailboxes=
-EOF
-
-
-#Samba config
-sed -i -e '/map to guest =/c\map to guest = never' /etc/samba/smb.conf
-
-#Avahi config
-cat << 'EOF' >> /etc/avahi/services/smb.service
-
-
-
- %h
-
- _smb._tcp
- 445
-
-
- _device-info._tcp
- 0
- model=RackMac
-
-
-EOF
-
-#Restart services
-systemctl enable --now smbd nfs-kernel-server webmin avahi-daemon wsdd
-systemctl restart smbd nfs-kernel-server webmin avahi-daemon wsdd
\ No newline at end of file
diff --git a/ISO-Repack.md b/ISO-Repack.md
deleted file mode 100644
index 70d8dce..0000000
--- a/ISO-Repack.md
+++ /dev/null
@@ -1,35 +0,0 @@
-# Repack linux ISO
-
-Commands expect to be in a root shell
-
-## Install needed tools
-mkisofs xorriso isohybrid
-
-## Editing ISO image
-
-Create workspace
-`mkdir /tmp/custom_iso`
-Mount image and extract it since it is read only
-```
-mount -t iso9660 -o loop ~/original.iso /mnt/`
-tar cf - /mnt/. | (cd /tmp/custom_iso; tar xfp -)
-```
-You can now modify the files for editing the bootloader config for example!
-
-## Back into an iso
-
-### Legacy only
-Rebuild iso with mkisofs
-`mkisofs -o output.iso -b syslinux/isolinux.bin -c syslinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -J -R -V "Custom ISO" /tmp/custom_iso`
-Bless it with isohybrid
-`isohybrid output.iso`
-
-### EFI and Legacy
-Rebuild iso with mkisofs
-`mkisofs -o output.iso -b syslinux/isolinux.bin -J -R -l -c syslinux/boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -eltorito-alt-boot -e boot/grub/efi.img -no-emul-boot -graft-points -V "Custom ISO" /tmp/custom_iso`
-Bless it with isohybrid
-`isohybrid --uefi output.iso`
-
-### Sources
-https://gist.github.com/AkdM/2cd3766236582ed0263920d42c359e0f
-https://tuxfixer.com/mount-modify-edit-repack-create-uefi-iso-including-kickstart-file/
\ No newline at end of file
diff --git a/InfoAtLoginPromt.sh b/InfoAtLoginPromt.sh
deleted file mode 100644
index 1ed125a..0000000
--- a/InfoAtLoginPromt.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-#IP address on host promts (add to /etc/issue)
-: \4{}
-#IP address on motd (add to .bashrc)
-echo "IP: $(ip -o -4 addr list "" | awk '{print $4}' | cut -d/ -f1)"
\ No newline at end of file
diff --git a/Migrate-SecureBootKey.md b/Migrate-SecureBootKey.md
deleted file mode 100644
index 0d38b36..0000000
--- a/Migrate-SecureBootKey.md
+++ /dev/null
@@ -1,37 +0,0 @@
-# Migrate Secureboot key
-## Export Ubuntu
-Copy following files
-* Private Key: /var/lib/shim-signed/mok/MOK.priv
-* Public Key: /var/lib/shim-signed/mok/MOK.der
-
-## Export Fedora
-Copy following files
-* Symlink to Private Key: /etc/pki/akmods/private/private_key.priv
-* Symlink to Public Key: /etc/pki/akmods/certs/private_key.priv
-
-## Import Ubuntu
-Using source.priv and source.der files in current directory to import
-```
-cp source.priv /var/lib/shim-signed/mok/MOK.priv
-cp source.der /var/lib/shim-signed/mok/MOK.der
-```
-
-## Import Fedora
-Using source.priv and source.der files in current directory to import
-```
-dnf install akmods kmodtool
-
-KEYNAME="$(hostname)"-"$(od -vAn -N4 -tu4 < /dev/urandom | awk '{print $1}')"
-
-cp source.der /etc/pki/akmods/certs/${KEYNAME}.der
-cp source.priv /etc/pki/akmods/private/${KEYNAME}.priv
-
-chgrp akmods /etc/pki/akmods/certs/${KEYNAME}.*
-chgrp akmods /etc/pki/akmods/private/${KEYNAME}.*
-
-chmod g+r /etc/pki/akmods/certs/${KEYNAME}.*
-chmod g+r /etc/pki/akmods/private/${KEYNAME}.*
-
-ln -nsf /etc/pki/akmods/certs/${KEYNAME}.der /etc/pki/akmods/certs/public_key.der
-ln -nsf /etc/pki/akmods/private/${KEYNAME}.priv /etc/pki/akmods/private/private_key.priv
-```
\ No newline at end of file
diff --git a/Multicore Gzip.md b/Multicore Gzip.md
deleted file mode 100644
index 9ceb72f..0000000
--- a/Multicore Gzip.md
+++ /dev/null
@@ -1,13 +0,0 @@
-## Install
-```
-apt install pigz
-```
-## Compress
-```
-tar cf - [inputdir] | pigz -[compression level (0 = none, 1 = minimal, 9 = maximum)] -p[cores] > [output.tar.gz]
-```
-## Extract
-```
-unpigz < [input.tar.gz] | (cd [extract location] && tar xvf -)
-```
-
diff --git a/Mysql-alternate-Repo-Setup-DebUbu.sh b/Mysql-alternate-Repo-Setup-DebUbu.sh
deleted file mode 100644
index f41ced2..0000000
--- a/Mysql-alternate-Repo-Setup-DebUbu.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-Dist=$(grep -oP '(?<=^ID=).+' /etc/os-release | tr -d '"')
-DistVersion=$(grep -oP '(?<=^VERSION_CODENAME=).+' /etc/os-release | tr -d '"')
-
-wget -qO - http://repo.mysql.com/RPM-GPG-KEY-mysql | apt-key add -
-echo "deb http://repo.mysql.com/apt/"$Dist"/ "$DistVersion" mysql-8.0" >/etc/apt/sources.list.d/mysql.list
\ No newline at end of file
diff --git a/Nginx-Core_CMS-Config b/Nginx-Core_CMS-Config
deleted file mode 100644
index 938150a..0000000
--- a/Nginx-Core_CMS-Config
+++ /dev/null
@@ -1,60 +0,0 @@
-sed -i -e "0,/^#ConfHere/s/\(^#Conf.*\)/#ConfHere1 /" -e '/#ConfHere1/ r CMS_Config.txt' -e '/#ConfHere/c\' Base_Nginx_Config.txt
-
-
-######################################
-Base_Nginx_Config.txt Content example
-######################################
-
-#generated by certbot from here
-server {
- listen 443 ssl;
- listen [::]:443 ssl;
- server_name www.DOMAINname;
- return 301 http://DOMAINname$request_uri;
-}
-
-server {
- listen 443 ssl;
- listen [::]:443 ssl;
-
-
-#ConfHere
-
-}
-#generated by certbot to here
-
-
-server {
- listen 80;
- listen [::]:80;
- server_name www.DOMAINname;
- return 301 http://DOMAINname$request_uri;
-}
-
-server {
- listen 80;
- listen [::]:80;
-
-
-#ConfHere
-
-}
-
-###############################
-CMS_Config.txt Content example
-###############################
-
-
- gzip on;
- gzip_proxied any;
- gzip_types text/plain text/css text/xml text/javascript application/javascript application/x-javascript image/svg image/svg+xml application/xml image/x-icon;
- gzip_comp_level 2;
- gzip_disable "msie6";
- gzip_buffers 16 8k;
-
-
- location / {
- #try_files $uri $uri/ =404;
- try_files $uri $uri/ /index.php$is_args$args;
- #try_files $uri $uri/ $uri.html $uri.php$is_args$query_string;
- }
diff --git a/NginxArgToRev.md b/NginxArgToRev.md
deleted file mode 100644
index 40d583e..0000000
--- a/NginxArgToRev.md
+++ /dev/null
@@ -1,18 +0,0 @@
-#### Input: dom.ain/UrLocation/?set=123
-
-
-
-#### Nginx Conf
-
-###### Required when directing to domain
-```
-resolver 1.1.1.1 [::1]:5353 valid=30s;
-```
-
-
-```
-location /UrLocation {
- proxy_pass https://other.domain/json.htm?type=command&&switchcmd=Set%20Level&level=$arg_set;
-}
-```
-#### result: https://other.domain/json.htm?type=command&&switchcmd=Set%20Level&level=123
\ No newline at end of file
diff --git a/Options-AsVar_whiptail.sh b/Options-AsVar_whiptail.sh
deleted file mode 100644
index cec8745..0000000
--- a/Options-AsVar_whiptail.sh
+++ /dev/null
@@ -1,4 +0,0 @@
-args=("Option 1:" "Option 1 Desription" OFF)
-args+=("Option 2: " "Option 2 Desription" OFF)
-args+=("Option 3: " "Option 3 Desription" OFF)
-option=$(whiptail --nocancel --title "Title" --checklist "Features" 11 110 5 "${args[@]}" 3>&1 1>&2 2>&3)
diff --git a/Proxmox-ARM_CT.md b/Proxmox-ARM_CT.md
deleted file mode 100644
index 2922831..0000000
--- a/Proxmox-ARM_CT.md
+++ /dev/null
@@ -1,16 +0,0 @@
-Install `qemu-user-static` on the proxmox host
-Add an `armhf` or `arm64(aarch64)` image to the proxmox image store
-Use this image to create a container
-
-
-## Image links
-Always download `rootfs.tar.xz`
-(Distro releases current as of 20-10-2021)
-### armhf
-* Alpine https://uk.images.linuxcontainers.org/images/alpine/3.14/armhf/default/
-* Debian https://uk.images.linuxcontainers.org/images/debian/bullseye/armhf/default/
-* Ubuntu https://uk.images.linuxcontainers.org/images/ubuntu/focal/armhf/default/
-### arm64
-* Alpine https://uk.images.linuxcontainers.org/images/alpine/3.14/arm64/default/
-* Debian https://uk.images.linuxcontainers.org/images/debian/bullseye/arm64/default/
-* Ubuntu https://uk.images.linuxcontainers.org/images/ubuntu/focal/arm64/default/
\ No newline at end of file
diff --git a/Proxmox-SMTPMail.sh b/Proxmox-SMTPMail.sh
deleted file mode 100644
index e8aa1e3..0000000
--- a/Proxmox-SMTPMail.sh
+++ /dev/null
@@ -1,34 +0,0 @@
-#Proxmox Use SMTP to send mail
-#Vars
-MailFromName=$(hostname)
-MailFormAddress=noreply@domain.com
-MailFromServer=mail.provider.com
-MailFromServerPort=465
-MailFromPasswd=
-MailTo=administrator@domain.com
-
-#install dependencies
-apt install libsasl2-modules -y
-
-#Generating Configs
-echo "[$MailFromServer]:$MailFromServerPort $MailFormAddress:$MailFromPasswd" > /etc/postfix/sasl_passwd
-echo "/.+/ $MailFromName<$MailFormAddress>" > /etc/postfix/sender_canonical_maps
-echo "/From:.*/ REPLACE From: $MailFromName<$MailFormAddress>" > /etc/postfix/header_check
-sed -i '/relayhost/c\' /etc/postfix/main.cf
-cat << EOF >> /etc/postfix/main.cf
-#Custom PostfixSMTP config
-relayhost = [$MailFromServer]:$MailFromServerPort
-smtp_tls_wrappermode = yes
-smtp_tls_security_level = encrypt
-smtp_use_tls = yes
-smtp_sasl_auth_enable = yes
-smtp_sasl_security_options =
-smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
-smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
-sender_canonical_classes = envelope_sender, header_sender
-sender_canonical_maps = regexp:/etc/postfix/sender_canonical_maps
-smtp_header_checks = regexp:/etc/postfix/header_check
-EOF
-
-postmap /etc/postfix/sasl_passwd
-systemctl restart postfix
\ No newline at end of file
diff --git a/README.md b/README.md
index 5229d16..daefc54 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,4 @@
-# linux
+# Linux Snipits
+
+Migrated to [brammp/SnipitRepo](https://git.bprieshof.nl/brammp/SnipitRepo)/Linux
diff --git a/SSH.md b/SSH.md
deleted file mode 100644
index bd1c0ac..0000000
--- a/SSH.md
+++ /dev/null
@@ -1,42 +0,0 @@
-## SSH SOCSK (ProxyTunnel)
-#### Command
-`ssh -C -D @`
-
-* -C : enables compression
-* -D : specifies Socks proxyport
-
-### Firefox
-1. go to Edit -> Preferences -> Advanced -> Network -> Connection -> Settings...
-2. check "Manual proxy configuration"
-3. make sure "Use this proxy server for all protocols" is cleared
-4. clear "HTTP Proxy", "SSL Proxy", "FTP Proxy", and "Gopher Proxy" fields
-5. enter "127.0.0.1" for "SOCKS Host"
-6. enter "1080" (or whatever port you chose) for Port.
-
-## SSH Remote forward (makes local port apear on remote machine)
-
-#### Port to be internaly binded on remote machine
-
-`ssh -R :: @`
-
-#### Port to be binded to remote machine
-
-`ssh -g -R *::: @`
-
-* -R : Remote forward
-* -N : Do not execute a remote command
-* -g : forward to remote network
-
-### SSHD config (on remote where ports are forwarded to)
-* GatewayPorts no : only allows the remote system to connect
-* GatewayPorts yes: allows the remote network to connect to the forwarded port
-* GatewayPorts clientspecified : allows the remote network to connect to the forwarded port when -g switch is used
-
-
-## SSH Local forward (makes remote port apear on local machine)
-
-#### Remote port to be binded on local machine
-
-`ssh -L :: @`
-
-* -L : Local forward
\ No newline at end of file
diff --git a/VarModifiers.sh b/VarModifiers.sh
deleted file mode 100644
index 2fba4a1..0000000
--- a/VarModifiers.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-option="${option// /}" #Removes Spaces
-option="${option/:/ }" #First : to Space
-option="${option//:/ }" #All : to Space
-option="${option//:}" #Removes :
-option="${option,,}" #Removes LowerCase
-option="${option//'"'}" #Removes "
\ No newline at end of file
diff --git a/apt-Whiptail.sh b/apt-Whiptail.sh
deleted file mode 100644
index fd8ec4c..0000000
--- a/apt-Whiptail.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-PKGM="debconf-apt-progress -- apt" #enable progresbar
-PKGI="${PKGM} install -y" #Setting single install var
-PKGA="debconf-apt-progress -- add-apt-repository"
\ No newline at end of file
diff --git a/apt-cacher-ng.md b/apt-cacher-ng.md
deleted file mode 100644
index 0a98912..0000000
--- a/apt-cacher-ng.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# apt-cacher-ng
-Default port 3142
-## Deb(ubuntu/debian) repos work out of the box server sided
-### client
-`echo 'Acquire::http::Proxy "http://:";' > /etc/apt/apt.conf.d/01proxy`
-
-## For Centos are modifications needed
-### Server
-`curl https://www.centos.org/download/full-mirrorlist.csv | sed 's/^.*"http:/http:/' | sed 's/".*$//' | grep ^http >/etc/apt-cacher-ng/centos_mirrors`
-
-SSL Passthrough
-#### /etc/apt-cacher-ng/acng.conf
-```
-VfilePatternEx: ^/\?release=[0-9]+&arch=
-VfilePatternEx: ^(/\?release=[0-9]+&arch=.*|.*/RPM-GPG-KEY-.*|/metalink\?repo=epel\$
-VfilePatternEx = (^|.*/)repodata/.*\.(yaml|yml)(\.gz|\.bz2|\.lzma|\.xz)?$
-Remap-centos: file:centos_mirrors /centos
-
-#PassThroughPattern: .* # this would allow CONNECT to everything
-
-```
-
-### Client (installer)
-use http://mirror.centos.org/centos/8/BaseOS/x86_64/os/ as repo and set proxy to :
-
-### Client (DNF)
-make sure to set repos to use base url
-add folowing to /etc/dnf/dnf.conf
-```
-proxy=http://:
-```
\ No newline at end of file
diff --git a/apt-webmin.sh b/apt-webmin.sh
deleted file mode 100644
index 4eef7a2..0000000
--- a/apt-webmin.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-apt update
-apt-get install apt-transport-https gnupg2 -y
-
-wget http://www.webmin.com/jcameron-key.asc
-apt-key add jcameron-key.asc
-rm jcameron-key.asc
-
-echo "deb https://download.webmin.com/download/repository sarge contrib" > /etc/apt/sources.list.d/webmin.list
-apt-get update
-apt-get install webmin -y
\ No newline at end of file
diff --git a/autoupdate-gitea.md b/autoupdate-gitea.md
deleted file mode 100644
index 78c6af8..0000000
--- a/autoupdate-gitea.md
+++ /dev/null
@@ -1,52 +0,0 @@
-# gitea update tool
-Tool from `https://github.com/CMiksche/gitea-auto-update`
-or get local from `https://git.bprieshof.nl/Tools/gitea-auto-update`
-
-requires python 3.7+
-
-# Install tool
-## ubuntu 18.04
-```
-add-apt-repository ppa:deadsnakes/ppa
-apt install python3.7 python3-pip
-
-python3.8 -m pip install gitea-auto-update
-```
-##debian 10,ubuntu 20.04
-```
-apt install python3-pip -y
-pip3 install gitea-auto-update
-```
-
-# Configuring
-### all os's
-Add the following to `/etc/gitea/auto-update.ini`
-```
-[Gitea]
-site=http://localhost:3000/api/v1/version
-apiUrl=https://api.github.com/repos/go-gitea/gitea/releases/latest
-system=linux-amd64
-file=/usr/local/bin/gitea
-tmpDir=/tmp/
-buildFromSource=
-sourceDir=
-logFile=/var/log/gitupdate.log
-```
-
-
-
-## Cron job
-### ubuntu 18.04
-Add the following to `/etc/crontab`
-```
-0 5 * * 7 root /usr/bin/python3.8 /usr/local/bin/gitea-auto-update --settings=/etc/gitea/auto-update.ini
-```
-### debian 10,ubuntu 20.04
-Add the following to `/etc/crontab`
-```
-0 5 * * 7 root /usr/local/bin/gitea-auto-update --settings=/etc/gitea/auto-update.ini
-```
-# Run manual update`
-```
-gitea-auto-update --settings=/etc/gitea/auto-update.ini
-```
\ No newline at end of file
diff --git a/bash-script-Flag.sh b/bash-script-Flag.sh
deleted file mode 100644
index 6687a59..0000000
--- a/bash-script-Flag.sh
+++ /dev/null
@@ -1,17 +0,0 @@
-if [ "$1" != "-l" ]; then
- echo "Normal mode"
- IMODE=n
- fi
-
-if [ "$1" = "-l" ]; then
- echo "Legacy mode";
- IMODE=l
-fi
-
-
-
-if [ $IMODE = n ]; then
- echo "New Menu"
-elif [ $IMODE = l ]; then
- echo "Legacy Menu"
-fi
diff --git a/curl-Functions-authchecker.md b/curl-Functions-authchecker.md
deleted file mode 100644
index 1d8766e..0000000
--- a/curl-Functions-authchecker.md
+++ /dev/null
@@ -1,73 +0,0 @@
-# Authchecker functions for curl
-## curl keeps asking for password until correct, and downloads file
-
-```
-function getcurlsec {
-
-local curlurl="$1"
-local curluser="$2"
-local curloutput="$3"
-
-while true; do
- curl --fail --user "$curluser" "$curlurl" -o "$curloutput"
- local EC=$?
- if [ $EC -eq 0 ]; then
- break
- fi
-done
-
-}
-```
-
-Syntax: `getcurlsec