Comment on
*Permanently Deleted*
Employers some don't like you using non MicroSlop.
Comment on
*Permanently Deleted*
Employers some don't like you using non MicroSlop.
Comment on
Meta to Slash 8,000 Jobs This Week Amid $145B AI Push
Stop using FaceBook. Problem solved.
Comment on
With New Year's a couple days away what selfhoted party games do people have going?
Jackbox 11 steam deck. Maybe does not qualify.
Comment on
Microsoft wants Edge to automatically open by default every time you turn on your Windows 11 PC
Reply in thread
Firefox was born fron Netscape.
Remembered using it in college and it was good. Mostly now use Firefox.
Ironically edge is installed on our Arch box as the Boss needs it for work.
Comment on
Establishing an ideal home drive using raspberry pi 4 model B(xfce)with help of nextcloud
Pimylifeup.com
Helped me a bunch when starting read everything twice Emmet does like a good typo.
Syncthig is.now my goto for mobile.
Nfs or samba for home network.
Comment on
Samsung meeting transcripts show memory workers offered incredible 607% bonus worth $477,000, while logic chip staff get as little as 50%
Reply in thread
Trying to coverup abusive practices by exec's
Comment on
Syncthing 2.0 Launches With Major Database Overhaul
Reply in thread
Syncthing-fork is syncthing-android. View the app in fdroid then view sourcecode links you to catfriend1 github
Comment on
I reinstalled because I don't know what I'm doing.
Is everything working as expected now?
Out of curiosity what distro?
Comment on
*Permanently Deleted*
I like endeavour os. Needed an uptodate kernel and fancied a change after spending 15 years on mint which i love. Kde was new to me but grown to love it.
Arch ftw.
Comment on
No audio for videos but only for one user and with pipewire
Reply in thread
Session rings a bell for me this https://unix.stackexchange.com/questions/674496/how-to-reset-pipewire-settings#674499 worked
Comment on
Sometimes I forget how awesome Linux Gaming is
The one time i borked the graphics wss the arch firmware thing.
1 weekend away arrived back late sunday to show my daughter her new graphics tab did an update rebooted like aclown and voilla no display.
After that i got rid of arch (endeavour) then in stalled arch (cachy) and life has been good.
Stuff can break and firmwsre changes do it beautifully.
Read the docs
Comment on
100 posts - Boss Round
Touch too pixelated
Comment on
One distro for the next five years?
I run multiple servers all Debian desktop is Cachy becasue Endeavour broke.
Looking forward to cachy server.
But i think for servers a little more reservation is required.
Comment on
Seeking advice for selfhosting critical data
Memos is pretty usefull for me. App on fdroid momemos is superb. Syncthig takes care of google drive ish needs. Immich for photos.
Mealie keeps food interesting.
Have not done calendar or contacts yet.
Running a few on a low power pi5 using docker for the most backup pihole runs on baremetal.
1 16tb external and 2 5tb external. Not the best but i dig it.
I need a nuc.
Comment on
*Permanently Deleted*
2 pihole instances 1 pi5 1 pi4 Keepalived provides vrrp at a set address.
Instances kept in sync via orbital
1 goes down the other takes over.
Quite elegantly.
Comment on
Did a thing to my desktop recently.
Sam and Max damn. I suggest Sir / Maam adds a little translucency to Konsole.
Comment on
New PC incoming, should i stick to Mint?
Reply in thread
Long time mint user ungraded to amd 9900x and 9070 so needed a newer kernel.
Tried mainline but did not work.
Switched to endeavour os.
I do miss mint used it for years after ubuntu changed de.
A change once in a while is good.
Comment on
*Permanently Deleted*
Reply in thread
Yes it does. Windows always spiked temps linux not so much
Comment on
*Permanently Deleted*
Reply in thread
On the router.
My router is locked down so i assign the vrrp address to wach client (pain in the ass) but it works.
Pivpn takes care or wireguard too.
Comment on
*Permanently Deleted*
Reply in thread
Debian & ubuntu sudo apt install keepalived
sudo apt install libipset13
Configuration
Find your IP
ip a
edit your config
sudo nano /etc/keepalived/keepalived.conf
First node
vrrp_instance VI_1 {
state MASTER
interface ens18
virtual_router_id 55
priority 150
advert_int 1
unicast_src_ip 192.168.30.31
unicast_peer {
192.168.30.32
}
authentication {
auth_type PASS
auth_pass C3P9K9gc
}
virtual_ipaddress {
192.168.30.100/24
}
}
Second node
vrrp_instance VI_1 {
state BACKUP
interface ens18
virtual_router_id 55
priority 100
advert_int 1
unicast_src_ip 192.168.30.32
unicast_peer {
192.168.30.31
}
authentication {
auth_type PASS
auth_pass C3P9K9gc
}
virtual_ipaddress {
192.168.30.100/24
}
}
Start and enable the service
sudo systemctl enable --now keepalived.service
stopping the service
sudo systemctl stop keepalived.service
get the status
sudo systemctl status keepalived.service
Make sure to change ip and auth pass.
Enjoy