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 May 17, 2024 03:23
Linux Tips

Linux Tips (Debian Based distros)

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

  • Users & Groups

    • Add user to group
      sudo usermod -a -G cdrom userName
      sudo usermod -aG vboxsf $USER
  • Change root password
    sudo passwd root

@fay59
fay59 / icloud-album-download.sh
Last active June 4, 2024 20:48
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 "@-" "$@"
}