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

93 total results found

Moxa CN2510-16

Some projects I did with the Moxa CN2510 Terminal Server

authelia

Docker

The following page documents how I did setup a service in docker-compose to use authelia for authentication via traefik 2.0 environment I use the following entries for this setup in my /etc/environment file PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/us...

Audio

Verschiendene Audio Projekte

kubernetes

Docker

# Setup daemon. cat > /etc/docker/daemon.json <<EOF { "exec-opts": ["native.cgroupdriver=systemd"], "log-driver": "json-file", "log-opts": { "max-size": "100m" }, "storage-driver": "overlay2" } EOF mkdir -p /etc/systemd/syst...

Wohnung

docker-compose

Docker

This is a collection of handy docker-compose commands. Samba docker-compose exec samba chown -R 1002:1002 /mnt docker-compose exec samba find /mnt/ -type d -exec chmod 750 {} \; docker-compose exec samba find /mnt/ -type f -exec chmod 640 {} \; dock...

Fiber at home

iWay

Network

Recently we where connected by swl to the fiber network and I switched from upc, finally getting rid of the enforced router, finally the aera of synchonous connectivity started. SG300-10 The setup is refreshingly simple, I added an SFP modul (FLEXOPTIX S.B...

provider
iway
connection
fiber
switch
cisco
sfp
flexoptix
location
switzerland
router
opnsense

Solana

ansible

ubuntu

Install basic dependencies for ansible apt update && apt upgrade -y && apt autoremove -y && reboot apt update apt install software-properties-common -y apt-add-repository --yes --update ppa:ansible/ansible apt install python-argcom...

nvidia

Basic Setup

check hdd health

linux

check secor size lsblk -o NAME,PHY-SeC In my setup of SAS drives I have a block size of 512, my SATA drive setup has 4096 block size, with a block size of 512 I get the following error: # badblocks -svw -b 512 -c 65536 /dev/sda badblocks: Value too large...

migration

ZFS

These commands will migrate one zfs pool to another server using netcat zfs snapshot -r data@migrate_20200215 zfs list -t snapshot zfs send -R data@migrate_20200215 | nc -l 3333 On the remote server you can execute nc 10.7.10.71 3333 | zfs recv -Fd data...

installation

ZFS

apt install lsscsi hddtemp lm-sensors vim htop screen mpt-status smartmontools parted lsof hdparm zfsutils-linux -y Clean disks wipefs -a /dev/sdb RAIDZ1 zpool create data raidz1 sdb sdi sdq raidz1 sdc sdj sdr raidz1 sdd sdk sds raidz1 sde sdl sdt raidz1 sdf...

pool

ZFS

network

ubuntu basic configuration

The following method allows to change the name of interfaces in ubuntu. The network card below some how is not good recogized by default, one interface is named renameX by default. With this method I assign it the name enp1s0 by configuration. First I get all...

nameserver

ubuntu basic configuration

In my LAN I want to make use of the DNS of my OPNsense router, there for I change the setup of ubuntu to use if via the following configuration. systemctl stop systemd-resolved systemctl disable systemd-resolved vim /etc/resolv.conf search home n...

wipe hdd

ubuntu basic configuration

wipefs -a /dev/sda

replace

ZFS

blkid lsblk -r|awk 'NR==1{print $0" DEVICE-ID(S)"}NR>1{dev=$1;printf $0" ";system("find /dev/disk/by-id -lname \"*"dev"\" -printf \" %p\"");print "";}' udevadm info --query=all --name=/dev/sdd | grep SCSI_IDENT_SERIAL sdb 8:16 0 2.7T 0 disk /dev/disk/by-i...