-
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
- Add user to group
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 "@-" "$@" | |
} |