randombullet

joined 1 year ago
[–] [email protected] 3 points 11 months ago

Dust in lenses are a part of photography, it also doesn't impact image quality that much.

Dust on the back of the lens or on the sensor impacts image quality a lot!

https://kamerastore.com/en-us/blogs/posts/does-a-dirty-lens-affect-image-quality-fungus-scratches-haze-more

[–] [email protected] 4 points 1 year ago

I use a mikrotik RB5009 for my 2.5gb routing. It technically can hit 10gbps via routing.

Switching you can try https://mikrotik.com/product/crs305_1g_4s_in

[–] [email protected] 4 points 1 year ago (2 children)

Mikrotik RB5009 is my router.

Moving to OPNsense

[–] [email protected] 5 points 1 year ago

Play Stardew Valley with her

[–] [email protected] 1 points 1 year ago

USB inherently has latency issues and protocol overhead. Seems like you're restricted to hardware unfortunately.

[–] [email protected] 1 points 1 year ago (2 children)

See if seachest is compatible with your drives. I think it's only compatible with Exos.

Also are you running through USB?

[–] [email protected] 1 points 1 year ago (4 children)

What's your HDD model?

[–] [email protected] 2 points 1 year ago (6 children)

Try this in your SMB settings in OMV.

socket options = TCP_NODELAY SO_RCVBUF=65536
SO_SNDBUF=65536
read raw = yes
write raw = yes
max xmit = 65535
dead time = 15
min receivefile size = 16384
write cache size = 524288
getwd cache = yes
max connections = 65535
max open files = 65535
min protocol = smb3
max protocol = smb3
[–] [email protected] 2 points 1 year ago (8 children)

What software are you using

[–] [email protected] 1 points 1 year ago

I have a hot storage NAS that backups to a warm storage NAS.

I backup every week and scrub every month.

I have 2 x ZFS1 pools that contains 3 x 20TB disks each.

With ECC ram, scrubbing, and independent pools, it'll take a house fire to kill my local storage.

I also have a constant backing to Backblaze and yearly encrypted backup that I ship to a friend across the world.

[–] [email protected] 1 points 1 year ago

Running a lot of DoH and DoT within my devices and my network

[–] [email protected] 12 points 1 year ago (2 children)

This is the exact script I use to install tailscale on my VPN server

Installing Tailscale

 curl -fsSL https://tailscale.com/install.sh | sh 

Enable IP forwarding

 echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.conf 
 echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.conf 
 sudo sysctl -p /etc/sysctl.conf 

Advertise subenets and exit node

 tailscale up --advertise-exit-node --advertise-routes=192.168.0.0/24,192.168.2.0/28,192.168.5.0/24,192.168.10.0/24
view more: next ›