Table of Contents

Linux OS

Packages

sudo apt install \
 
  unrar \ # to Mint Archive Manager properly can extract rar files
  p7zip-rar \ # maybe is needed as previous (try it)

Tools

OneDrive

https://github.com/abraunegg/onedrive

Commands:

Permanent disable ACPI wakeup by USB

Source: Reddit

acpi-wakeup-disable.service
[Unit]
Description=something
 
[Service]
ExecStart=/bin/bash -c "echo EHC1 >> /proc/acpi/wakeup; echo XHC >> /proc/acpi/wakeup"
 
[Install]
WantedBy=multi-user.target

Prevent wrong Windows 10 time when using dual boot

Source: https://www.techsupportalert.com/content/tips-and-tricks-linux-mint-after-installation-mint-18-cinnamon-edition.htm#Set-Clock-Time

timedatectl set-local-rtc 1 --adjust-system-cloc

Reset extended screen to contain all window

xrandr --listmonitors
xrandr --output eDP-1 --off && xrandr --output eDP-1 --auto --left-of DP-1

Batch conversion of RAW images to JPG

sudo apt-get install dcraw netpbm
mkdir jpg ; for filename in *.NEF ; do echo "$filename" ; dcraw -c -w "$filename" | pnmtojpeg > "jpg/$filename.jpg" ; done

Apple DVD superdrive

source: https://apple.stackexchange.com/a/152468

sudo apt install sg3-utils
 
sg_raw /dev/sr0 ea 00 00 00 00 00 01