Skip to content

Instantly share code, notes, and snippets.

View txhammer68's full-sized avatar
🏠
Working from home

txhammer68

🏠
Working from home
View GitHub Profile
@txhammer68
txhammer68 / linux.md
Last active March 6, 2025 23:20
Linux Tips

Linux Tips (Debian Based distros)

Some usefull tips i have collected over the years, use at own risk.

  • Regenerate initramfs kernel sudo update-initramfs -u -k all

  • Users & Groups

    • Add user to group
      sudo usermod -a -G cdrom userName
      sudo usermod -aG vboxsf $USER
@fay59
fay59 / icloud-album-download.sh
Last active March 10, 2025 13:39
Download entire iCloud shared albums
#!/bin/bash
# requires jq
# arg 1: iCloud web album URL
# arg 2: folder to download into (optional)
function curl_post_json {
curl -sH "Content-Type: application/json" -X POST -d "@-" "$@"
}