Monday, February 5, 2024

Disable Can't keep up! Is the server overloaded?

 Just a reminder for myself.

I get the error in the Minecraft log and so far the only problem is the error message itself.

Plus that I keep forgetting where to shut it off.

In Paper MC, Bukkit, Spigot and perhaps others the log message can be silenced in bukkit.yml. Just change

 

warn-on-overload: true

to

warn-on-overload: false



Thursday, July 21, 2022

A room with a view, Owners share

The last line gave it away

 

The wanderer

Is

Mr Tharp



It's a small universe

Tuesday, March 15, 2022

Convert vcf to csv

 

I needed to copy my address book from Roundcube to outlook online office
Roundcube gave me a .vcf file and outlook refused to handle it.

The easiest way to convert for was for me to import the .vcf into Thunderbird:
Tools - Import > Address Books > vCard file

And then export it:
Tools - Export > Comma Separated

Sunday, September 19, 2021

NVIDIA 460 HDMI No audio sound sink Linux mint

I lost HDMI as audio output device when I updated to Linux Mint 20.2

Using Nvidia 460 from drivers interface plus this change below, gave me back the audio HDMI output option.


Add this

pcie_port_pm=offin /etc/default/grub

so it looked like this

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash pcie_port_pm=off"

and updated grub with

sudo update-grub

 The above was originally posted by summonholmes over at forums.linuxmint.com

 

My /etc/modules

already contained

nvidia
nvidia-drm
nvidia-modeset

Maybe relevant, maybe not.

 



Lutris wont remove uninstalled game

Did you uninstall something from Lutris but the icon is still there?

Not happy with just hiding the game?


Not to worry

        overseer12 over at forums.lutris.net have you covered.

 

Or if you feel adventurous you can paste:


sqlite3 ~/.local/share/lutris/pga.db "DELETE FROM games WHERE hidden=1;"


into a file named cleanlutris.sh & make it executable by: chmod +x cleanlutris.sh

and the run ./cleanlutris.sh to remove all hidden entries.

Don't forget to first hide the uninstalled game for this to work.





Tuesday, July 6, 2021

Webmin Bacula Module error solution


Failed to connect to the Bacula database : Failed to login to the database bacula : FATAL: Peer authentication failed for user "bacula". Maybe it is not set up, or the module configuration is incorrect


Change folowing line in pg_hba.conf
My pg_hba.conf was located at /etc/postgresql/version number/main


from

#    TYPE    DATABASE    USER    ADDRESS    METHOD
        local        all                    all                                peer

to

#    TYPE    DATABASE    USER    ADDRESS    METHOD
       local         all                    all                                md5

Wednesday, February 12, 2020

pve-firmware : Conflicts: firmware-linux-free but 3.4 is to be installed




pve-firmware : Conflicts: firmware-linux-free but 3.4 is to be installed

resolved by

apt remove linux-image-amd64 && apt upgrade

Blog Archive