Some resources:
https://hub.docker.com/r/jacobalberty/unifi/
Network 8.6.9
upgrade
docker stop unifi docker rm unifi
Some resources:
https://hub.docker.com/r/jacobalberty/unifi/
Network 8.6.9
upgrade
docker stop unifi docker rm unifi
Updates to /etc/config/network
should include the following:
# on the eth1 interface that is wired to ONT, we want to enable baby jumbo frame
# this will allow pppoe client to set MTU of 1500 matching ethernet MTU on lan interface
config device
option name 'eth1'
option mtu '1508'
I hereby claim:
To claim this, I am signing this object:
# Prerequisites: docker installed and operational. | |
# Get latest image for node software. | |
docker pull storjlabs/storagenode:latest | |
# Create reasonable place for node storage and identity | |
mkdir -p /srv/storj/identity | |
mkdir -p /srv/storj/storage | |
docker run --rm -e SETUP="true" \ |
# Generate initial login password for installation | |
tr -dc A-Za-z0-9 </dev/urandom | head -c 15 ; echo '' | |
# Clear known SSH key after (re-) installing OS on bare metal: | |
ssh-keygen -R 195.154.112.70 | |
# # Host 195.154.112.70 found: line 52 | |
# /c/Users/proko/.ssh/known_hosts updated. | |
# Original contents retained as /c/Users/proko/.ssh/known_hosts.old | |
# Try to SSH to new server using username and password from server properties. |
# Install Docker first | |
pacman -S docker | |
# Create subvolume for Docker images | |
cd /mnt/t20root | |
btrfs subvolume create svols/docker | |
# Create subvolume 'svols/docker' | |
btrfs subvolume list . | |
# ID 256 gen 1349 top level 5 path svols/root |
# btrfs subvolume create svols/media | |
# | |
[media] | |
comment = Music, Video and so on | |
path = /mnt/t20raid/media | |
public = yes | |
only guest = yes | |
writable = yes |
pacman -S samba | |
curl "https://git.samba.org/samba.git/?p=samba.git;a=blob_plain;f=examples/smb.conf.default;hb=HEAD" > /etc/samba/smb.conf | |
nano /etc/samba/smb.conf | |
# [global] | |
# log file = /var/log/samba/%m.log | |
systemctl enable smb |
cat /proc/sys/kernel/random/entropy_avail | |
# 496 | |
pacman -S rng-tools | |
systemctl start rngd | |
cat /proc/sys/kernel/random/entropy_avail | |
# 4035 | |
systemctl enable rngd |