ssh-keygen -l -f /path/to/id_rsa
ssh-keygen -l -E md5 -f /path/to/id_rsa
git reset --hard HEAD~1 |
poetry export --without-hashes --format=requirements.txt > requirements.txt |
#!/bin/sh | |
# Remove the performance overlay, it meddles with some tasks | |
unset LD_PRELOAD | |
## Shadow kwin_wayland_wrapper so that we can pass args to kwin wrapper | |
## whilst being launched by plasma-session | |
mkdir $XDG_RUNTIME_DIR/nested_plasma -p | |
cat <<EOF > $XDG_RUNTIME_DIR/nested_plasma/kwin_wayland_wrapper | |
#!/bin/sh |
Account address | Show boosts | |
---|---|---|
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true | |
[email protected] | true |
The default Fail2ban installation comes with two configuration files, /etc/fail2ban/jail.conf and /etc/fail2ban/jail.d/defaults-debian.conf. It is not recommended to modify these files as they may be overwritten when the package is updated.
Fail2ban reads the configuration files in the following order. Each .local file overrides the settings from the .conf file:
Execute the following command to update a server
sudo apt update && sudo apt upgrade
Now, install the unattended upgrade on your Ubuntu system through the following command:
sudo apt install unattended-upgrades apt-listchanges bsd-mailx
After that, turn on the unattended security updates by running the following command:
https://www.digitalocean.com/community/tutorials/how-to-upgrade-to-ubuntu-22-04-jammy-jellyfish
Execute the following command to update a server
sudo apt update && sudo apt upgrade && sudo apt dist-upgrade
Run release upgrade to either stable or development release
version: "3" | |
services: | |
valheim: | |
image: mbround18/valheim:latest | |
ports: | |
- "2456:2456/udp" | |
- "2457:2457" | |
- "2458:2458/udp" | |
environment: | |
PORT: 2456 |