Effective total cost: $3–5/mo
Decide on an EC2 instance type:
- At AWS Console → EC2 → Instance Types, filter for ≥1 GB RAM and sort by price.
- t4g.micro is lowest.
| #!/bin/bash | |
| # Dirty script to build Unity under ArchLinux | |
| # Thanks for PKGBUILDs, chenxiaolong! | |
| # Valdos Sine <fat0troll at riseup dot net> 2012 | |
| # Pratik Sinha <pratik at humbug dot in> 2012 | |
| echo "Run it in directory which will be build root ;)" | |
| echo "Make sure you're have sudo without password or you will stuck in every package installation" | |
| echo "GO!" | |
| sudo pacman -Sy |
| Check out the newer version of this gist at: | |
| https://gist.github.com/thomaswitt/2f847199863a103dfcf004fec3c538d0 | |
| and the corresponding blog post: | |
| https://thomas-witt.com/auto-connect-your-ios-device-to-a-vpn-when-joining-an-unknown-wifi-d1df8100c4ba |
| version: "3.4" | |
| networks: | |
| example-com--postgres: ~ | |
| example-com--redis: ~ | |
| services: | |
| # PostgreSQL | |
| postgres: | |
| container_name: example-com--postgres |
Install a working (and compiled) version of virt-viewer. You may view the homebrew package's upstream source on GitHub.
brew tap jeffreywildman/homebrew-virt-manager
brew install virt-viewerOnce that's installed should be able make a call remote-viewer with a pve-spice.vv file downloaded from proxmox web interface
| 5663832,AliAsifPTI,277,IN | |
| 7071762,cdf,1319,ID | |
| 7316382,TheSuperFFreak,4455,ID | |
| 8056732,andresobreiro_,2531,ID | |
| 8671052,CPorgyUniverse,490837,ID | |
| 12883902,TaxWiser,111,TR | |
| 13140962,WildCuddler,30097,ID | |
| 14181996,kevincubschgo,953,ID | |
| 14231320,recentpoker,6088,RU | |
| 14331162,hekanaho,1296,TR |
This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.
Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.
| #!/usr/bin/bash | |
| DRIVE_ID[0]=/dev/disk/by-id/wwn-0x50014ee2ae42a608 # 2TB Disk model: WDC WD20EADS-00S | |
| DRIVE_ID[1]=/dev/disk/by-id/wwn-0x50014ee20a7836a8 # 4TB Disk model: WDC WD40EZRX-00S | |
| DRIVE_ID[2]=/dev/disk/by-id/wwn-0x5000c500b1841369 # 8TB Disk model: ST8000NM0055-1RM | |
| DRIVE_ID[3]=/dev/disk/by-id/wwn-0x5000c500b1844fe1 # 8TB Disk model: ST8000NM0055-1RM | |
| DRIVE_ID[4]=/dev/disk/by-id/wwn-0x5000c500b185901f # 8TB Disk model: ST8000NM0055-1RM | |
| for DRIVE_NUM in "${!DRIVE_ID[@]}"; do # init some variables | |
| DRIVE_STATE_OLD[$DRIVE_NUM]="" |