This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
jak-na-to:linux [2019/01/19 11:06] hansek |
jak-na-to:linux [2020/03/22 10:54] (current) hansek |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Linux OS ====== | ====== Linux OS ====== | ||
+ | |||
+ | ===== Packages ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install \ | ||
+ | | ||
+ | unrar \ # to Mint Archive Manager properly can extract rar files | ||
+ | p7zip-rar \ # maybe is needed as previous (try it) | ||
+ | |||
+ | </ | ||
+ | |||
===== Tools ===== | ===== Tools ===== | ||
- | **screenshots with editor** - [[https:// | + | * **screenshots with editor |
- | **onedrive** - https:// | + | |
- | **facebook messenger** - https:// | + | |
+ | |||
+ | ===== OneDrive ===== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | Commands: | ||
+ | |||
+ | * https:// | ||
+ | * `systemctl --user start onedrive` | ||
+ | * logs `journalctl --user-unit onedrive -f` | ||
Line 28: | Line 49: | ||
* and check on it with **systemctl status 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**. | * then enable it so it starts after boot with **sudo systemctl enable acpi-wakeup-disable**. | ||
+ | |||
+ | |||
+ | ===== Prevent wrong Windows 10 time when using dual boot ===== | ||
+ | |||
+ | Source: https:// | ||
+ | |||
+ | <code bash> | ||
+ | timedatectl set-local-rtc 1 --adjust-system-cloc | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Reset extended screen to contain all window ===== | ||
+ | <code bash> | ||
+ | xrandr --listmonitors | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | xrandr --output eDP-1 --off && xrandr --output eDP-1 --auto --left-of DP-1 | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Batch conversion of RAW images to JPG ===== | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt-get install dcraw netpbm | ||
+ | </ | ||
+ | |||
+ | <code bash> | ||
+ | mkdir jpg ; for filename in *.NEF ; do echo " | ||
+ | </ | ||
+ | |||
+ | |||
+ | ===== Apple DVD superdrive ===== | ||
+ | |||
+ | source: https:// | ||
+ | |||
+ | <code bash> | ||
+ | sudo apt install sg3-utils | ||
+ | |||
+ | sg_raw /dev/sr0 ea 00 00 00 00 00 01 | ||
+ | </ | ||
+ |