User Tools

Site Tools


Sidebar

jak-na-to:linux

This is an old revision of the document!


Linux OS

Tools

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
  • Unordered List ItemPlace this file in /etc/systemd/system/
  • Then do sudo systemctl daemon-reload,
  • do sudo systemctl start acpi-wakeup-disable
  • and check on it with systemctl status acpi-wakeup-disable,
  • then enable it so it starts after boot with sudo systemctl enable acpi-wakeup-disable.

Prevent wrong Windows 10 time when using dual boot

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
jak-na-to/linux.1557767489.txt.gz · Last modified: 2019/05/13 19:11 by hansek