Tag - servers

13 posts tagged with "servers" (See all tags)

PPlex Setup

2020-07-1312 Min Read — InLinux

This post will be mostly documentation for myself, but I also want to share with the world my setup for my personal media server. Preparation The inventory for this project is as follows: 1x Bare Metal Server in Frankfurt 1x VPS in Ukraine My goal is…

DDocker + Localhost MySQL

2019-12-081 Min Read — InLinux

I was having the hardest time getting applications in docker containers to connect to the instance of mysql runnning on the host. I finally found a great solution, so I figured I'd post it here for myself and so that others may find it as well…

SStandard Notes Selfhosted Installation

2019-12-063 Min Read — InLinux

What? Standard Notes is an opensource web-based notes application. Installation There are a few officially support install methods, including Docker, "Baremetal" and on Heroku. I'm going to continue on with the "Baremetal" variant here. I'd tried the…

BBash Intro

2018-03-238 Min Read — InLinux

Easy Shell is a collection of useful boilerplate linux commands for the daily life of every linux user! All credit goes to lucasviola on GitHub! Welcome This is a basics guide intended to help newcomers and experienced Linux users alike get more…

iiptables

2018-03-202 Min Read — InLinux

Run the following. It'll insert the rule at the top of your iptables and will allow all traffic unless subsequently handled by another rule. You can also flush your entire iptables setup with the following: If you flush it, you might want to run…

BBash Aliases

2018-03-111 Min Read — InLinux

Ever needed a seed to generate random passwords or keys? Here's an easy way to generate a few different variations of random characters directly in bash! # bash generate random 32 character alphanumeric string (upper and lowercase) # bash generate…

LLynis - Linux Server Auditing

2018-03-042 Min Read — InLinux

So you’ve got your system up and running the way you like it, but your wondering what else can I do to harden my server? Lynis to the rescue! Lynis is an open-source auditing tool that will run through a ton a of vulnerability checks and general best…

vvsftpd Setup

2018-02-284 Min Read — InLinux

So an FTP server is often one of the first things people want to setup on a new server. I recently setup two, one on my Raspberry Pi for making a 2TB USB Drive available in my home, and another somewhat more secure one on my VPS to transfer files…

BBash Operators

2018-02-256 Min Read — InLinux

These are called shell operators and yes, there are more of them. I will give a brief overview of the most common among the two major classes, control operators and redirection operators. A. Control operators These are tokens that perform control…

TTripwire

2018-02-241 Min Read — InLinux

Here’s a great little program to keep an eye on your system files to make sure no one inappropriate is changing them! I like to have this run in cron once a week and send me a report. When your first changing your system / installing things, a lot of…

BBash Pipes

2018-02-221 Min Read — InLinux

This table will hopefully help me keep the pipe madness in check. Am I overwriting or appending? Am I including StdErr? Etc.. visible in terminal visible in file existing file Syntax StdOut StdErr StdOut StdErr --- --- --- --- --- --- > no yes yes…

LLogwatch

2018-02-211 Min Read — InLinux

Logwatch is a pretty simple, but essential application in my server management arsenal. You can install it from the ubuntu repos directly, so this will do: After it is installed it will automatically set itself to run daily via your cron.daily folder…

FFirst 5 things to do with a new Ubuntu Server

2018-02-174 Min Read — InLinux

Here’s where one lands directly after the installation of a fresh Ubuntu image. In this case Ubuntu 16.04. SSH into your machine with your favorite client [Win 32/64: putty] So the first thing I like to do is create a new user for myself and add him…