This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
linux:linux_hacks [2014/11/23 01:29] igorkagan created |
linux:linux_hacks [2022/01/19 17:53] (current) igorkagan |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== Linux hacks ====== | ====== Linux hacks ====== | ||
- | Merge 2 PDFs together from Nautilus | + | ===== Merge 2 PDFs together from Nautilus ===== |
+ | |||
+ | |||
http://gnome-look.org/content/show.php/?content=83871 | http://gnome-look.org/content/show.php/?content=83871 | ||
+ | requires pdftk https://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/ | ||
<code bash> | <code bash> | ||
Line 29: | Line 32: | ||
fi | fi | ||
IFS=$ifs | IFS=$ifs | ||
+ | </code> | ||
+ | |||
+ | ===== Mount dag server ===== | ||
+ | |||
+ | <code> | ||
+ | sudo mount -t cifs -o username=<username>,password=<password>,domain=DPZ //storage2/DPZ/KognitiveNeurowissenschaften/DAG /mnt/<local> | ||
+ | Install "cifs-utils" (sudo apt install cifs-utils) | ||
</code> | </code> | ||