TL;DR Set up your sole node Proxmox VE install as any other server - with DHCP assigned IP address. Useful when IPs are managed as static reservations or dynamic environments. No pesky scripting involved.
ORIGINAL POST DHCP setup of a single node
TL;DR Set up your sole node Proxmox VE install as any other server - with DHCP assigned IP address. Useful when IPs are managed as static reservations or dynamic environments. No pesky scripting involved.
ORIGINAL POST DHCP setup of a single node
TL;DR Do not set passwords on container users, get shell with native LXC tooling taking advantage of the host authentication. Reduce attack surfaces of exposed services.
ORIGINAL POST Container shell with no password
# Virtual memory settings. | |
# Kernel documentation: https://docs.kernel.org/admin-guide/sysctl/vm.html. | |
# Arch zram: https://wiki.archlinux.org/title/zram#Optimizing_swap_on_zram. | |
# Gaming tuning: https://pastebin.com/fwzW9whL. | |
# PopOS tuning: https://github.com/pop-os/default-settings/pull/163. | |
# MaxPerformanceWizard (MPW) https://gitlab.com/cscs/maxperfwiz/-/blob/master/maxperfwiz. | |
boot.kernel.sysctl = { | |
# Tunes how aggressively kernel evicts memory pages until a specific amount of free memory is left for your active working set | |
## Sweet spot for gaming is 125-200, near 200 makes kswapd swap too aggressive |
PS2 Bios Download for PCSX2 & AetherSX2 Emulators | For All Regions
PS2 Bios Download (OFFICIAL) for PCSX2 & AetherSX2 Emulators
--
scph5500.bin 26-Aug-2018 20:47 512.0K
scph5501.bin 26-Aug-2018 20:47 512.0K
#!/usr/bin/env bash | |
# import an MS SQL .bak backup file to an MS SQL database, then export all | |
# tables to csv. run this script as `import.sh <filename>`. It expects to be | |
# run in the same directory as the backup file. | |
# this is only tested on my mac (OS X Catalina). I tried to stick to posix, but | |
# It will probably require some tweaking for you. I hope it gives a general | |
# sense of what you need to do at the very least. |
module Jekyll | |
class CategoryIndex < Page | |
def initialize(site, base, dir, category) | |
@site = site | |
@base = base | |
@dir = dir | |
@name = 'index.html' | |
self.process(@name) | |
self.read_yaml(File.join(base, '_layouts'), 'category_index.html') |