Linux End Of Life Table Debian 9 2022-06 Debian 8 2020-06 Debian 7 2016-04 Debian 6 2014-05 Debian 5 2012-02 Debian 4 2010-02 Ubuntu LTS 18 2023-04 Ubuntu LTS 16 2021-04 Ubuntu LTS 14 2019-04 Ubuntu LTS 12 2017-04 Centos […]
Linux Host Container Security
Using the CIS Center for Internet Security script to verify is your linux host for your containers are configured correctly. This nice script checks for dozens of common best-practices around deploying Docker containers in production. It is a public avail […]
Raspberry Pi Access Point
Raspberry Pi Access Point How To OBJECTIVE: Raspberry Pi as an Access Point to route all DHCPD clients via (external server, outside my country) INTRO: I already have a server with SSH on port 443 ready for tunnel, and I […]
Gitea how to install
1) Pre-Requisite # Install Mariadb yum -y install mariadb mysql -u root -p CREATE DATABASE gitea; CREATE USER ‘gitea’@’localhost’; SET PASSWORD FOR ‘gitea’@’localhost’ = PASSWORD(‘NEW_gitea’); grant all privileges on gitea.* to ‘gitea’@’localhost’; # Install go wget “https://dl.google.com/go/go1.10.linux-amd64.tar.gz” mv go1.10.linux-amd64.tar.gz /usr/local/ […]
How to install gogs on centos7
# INSTALL GO and Gogs (github opensource server) on CENTOS 7 wget “https://dl.google.com/go/go1.10.linux-amd64.tar.gz” mv go1.10.linux-amd64.tar.gz /usr/local/ cd /usr/local/ tar -zxvf go1.10.linux-amd64.tar.gz ln -s /usr/local/go/bin/go /usr/local/bin/go ln -s /usr/local/go/bin/godoc /usr/local/bin/godoc ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt adduser -c “Gogs” git su – git […]
chroot mount bind
mkdir -v -p /sftp/root/${USER}/home chown root.root /sftp/root/${USER} mount –bind //${DIR} /sftp/root/${USER}/home useradd -g tomcat -s /sbin/nologin ${USER} sshd_config Match Group tomcat AllowTcpForwarding no ForceCommand internal-sftp -u 0002 -d home ChrootDirectory /sftp/root/%u All folder must have permission as 777, so I […]
ssh tunnel squid proxy setup
SSH is a very secure encrypted connection. Much much easier to setup then a VPN. its quite easy to setup, on the server side all we need is Open SSH and Squid on the client side Windows we can use […]