Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

168 total results found

Linux

Anything Linux.

HubSpot

Windows

Health

Anything that has to do with your body and mind.

Web Development

VPNs and Proxy

Languages

All languages for any OS. Python, Java, HTML, C, C+, C++, bash... anything

Odoo (Open ERP)

Torrents

Hardware

Anything hardware. Can be used with any OS.

General Linux Commands

Commands and General functions | In Terminal

Samba

File sharing, copying and sync

SSH | Secure Shell

RAID | MDADM

SSL

Apache

Server and Proxy server

Fail2ban

Homer | Web Dashboard

Jellyfin

Docker

Nextcloud

VS Code | Visual Studio Code

General Windows Commands

Eye Care

Home Assistant

Cockpit

Cockpit is a web-based graphical interface for servers, intended for everyone

Ubuntu

Proxychains

proxychains - a tool that forces any TCP connection made by any given application to follow through proxy like TOR or any other SOCKS4, SOCKS5 or HTTP(S) proxy. Supported auth-types: "user/pass" for SOCKS4/5, "basic" for HTTP.

Meta tags

Bittorrent

Troubleshooting Nextcloud

Nextcloud

General Linux Commands | In terminal

General Linux Commands

Check operating systemcat/etc/*rel* Check system info CPU cat /proc/cpuinfo Memory cat /proc/meminfo ports - Check for listening ports. netstat -tulpn Check users and passwords (PUID and)getent passwd change ownership of dir...

Time In Linux | setting time zones

General Linux Commands

Check your timezone on Linux by typing in timedatectl command. Output: $ timedatectl Local time: Wed 2019-10-16 22:26:23 UTC Universal time: Wed 2019-10-16 22:26:23 UTC RTC time: Wed 2019-1...

BASH | General commands

General Linux Commands

When running bash scripts, you can include other commands on the same line by using these at the end of each "line" command. bash: A; B    # Run A and then B, regardless of success of A A && B  # Run B if and only if A succeeded A || B  # Run B if and only ...

Nginx | General Commands

General Linux Commands

A few commands Nginx systemctl start nginxsystemctl stop nginxsystemctl restart nginxsystemctl status nginx     Troubleshooting Nginx sudo tail -f /var/log/nginx/error.log sudo tail -f /var/log/odoo/odoo.log Check connection curl -I http://<your-extern...

Docker | General Commands

General Linux Commands

Do you have docker? docker -v Install Docker: apt install docker Do you have docker-compose? docker-compose -v Docker in Linux Commands (From outside containers):docker imagesdocker ps -adocker psdocker Go into a Container Standard login: sudo docker ex...

Map Network drive

Samba

First, Need to make sure you have Samba and smbclient and, Cifs-utils. Install them. create a mount point (if you haven't already) sudo mkdir /directr/to/moun/to Mount the volume sudo mount -t cifs //[addressofshare]/[folderofshare] -o usernam=ofshare /[lo...

Secure a new computer | SSH

SSH | Secure Shell

Secure new computer by creating a new user for the server/computer, then removing rights from root This assumes that this is a new machine and that you are currently signed in as the root user. Add your new user. Lets pretend the user name we want to create ...

log in to remote machine | SSH

SSH | Secure Shell

Remote meaning, not the same computer you keyboard is directly connected to.  We are going to say that the user name for this machine is "serverman" From terminal ssh username @ address of your machine If it is a part of your local network it might looks som...

Linux command line: bash + utilities

General Linux Commands

A & Start a new process in the background alias Create an alias • apropos Search Help manual pages (man -k) apt Search for and install software packages (Debian/Ubuntu) apt-get Search for and install software p...

Creating RAID and mounting it

RAID | MDADM

Is [[Formatting - Drives]] needed? Do that first, then come back. See if mdadm is installed or notmdadm   If not, install it  apt install mdadm Check for all storage drives in systemlsblk Create the RAID with the drive you are going to usemdadm --create /d...

Extending RAID

RAID | MDADM

Prepare new disk                Need to partition? Do it now. I'll wait... Setup: The current RAID has 4 drives and we want to add a 5th drive. The current array is "md111" and we have already checked drives on the system lsblk to see which drive we will be a...

Troubleshooting RAID

RAID | MDADM

Setup: Our current RAID array with 5 drives in it is "md111". Its location is /dev/md111 Resize the blocksresize2fs -f /dev/md111 Stop Arraymdadm --stop /dev/md111 Auto scan for arraysmdadm --assemble --scan Once the new mdadm.conf was ready, execute "sudo...

SSL CertBot with Lets Encrypt

SSL

This runs in snap. You will need to install that first (if you don't have it already). See if you have snap    `snap`    or `snap -v`    Install a certificate bot REPO for "lets encrypt"    Go to: https://certbot.eff.org/lets-encrypt/ Make sure Certbot is no...

Apache 2 | Installing on local drive

Apache

Do you have it? Checksystemctl status apache2 Install Apache2apt install apache2 Check for listening portsnetstat-tulpn Install php 7.2 and Apache2 modapt install php (use this and/or change the below to the correct vertion for today and update all module...

Install on local drive

Fail2ban

Start with installing it. sudo apt install fail2ban Is it running?systemctl status fail2ban what is fail2ban doing right now?sudo fail2ban-client status Copy the config file in the OScd /etc/fail2bansudo cp jail.conf jail.conf.local   Fail to ban will not o...

Install on Docker

Homer | Web Dashboard

Pull the docker image https://hub.docker.com/r/b4bz/homer **Homer docker compose .yml**  https://github.com/bastienwirtz/homer version: "2" services:   jellyfin:     image: b4bz/homer:latest     container_name: homer     environment:       - PUID=1001 ...

Install Jellyfin on Dcoker

Jellyfin

**Jelly docker compose .yml**  version: "2" services: jellyfin: image: jellyfin/jellyfin container_name: jellyfin environment: - PUID=1001 - PGID=1001 - PST=America/Los Angeles volumes: - /mounted/local/st...

How to use Docker

Docker

Install Nextcloud on Docker

Nextcloud

Version 2 configuration works best on the latest Nextcloud v29.0.  As of this version, when it gives you the first admin login, create your new login and wait for a bit. You may need refresh or, leave and go back to the page. It may take a while but it SHOULD...

trusted domain - Troubleshooting Nextcloud

Nextcloud Troubleshooting Nextcloud

Troubleshooting - trusted domain    - go to: nextcloud/config and edit the config.php    - find: "trusted_domains" and add the domain you want to trust 'trusted_domains' =>   array (     0 => 'box.danicus.net',     1 => '192.168.1.1',    (put in yourown i...