computer:debian:kudell_auf_debian

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
computer:debian:kudell_auf_debian [2024/05/27 06:39] – [Adobe Reader] springcomputer:debian:kudell_auf_debian [2024/11/14 16:48] (current) spring
Line 15: Line 15:
     nvidia-opencl-icd imagemagick exiftool dcraw sqlitebrowser \     nvidia-opencl-icd imagemagick exiftool dcraw sqlitebrowser \
     smartmontools lshw inxi restic abcde lame easytag brasero \     smartmontools lshw inxi restic abcde lame easytag brasero \
-    remmina needrestart scribus net-tools mono-complete mc pv+    remmina needrestart scribus net-tools mono-complete mc pv 
 +    ntpsec ttf-mscorefonts-installer 
 +     
 +  sudo apt purge fonts-noto-color-emoji
  
 ==== user-account in sudoers ==== ==== user-account in sudoers ====
Line 36: Line 39:
   cd /resticrestore/hosts/kudell/latest   cd /resticrestore/hosts/kudell/latest
   tar cjf /tmp/kudellroot.tg2 root   tar cjf /tmp/kudellroot.tg2 root
-  tar cjf /tmp/kudelletc.tg2+  tar cjf /tmp/kudelletc.tg2 etc
   tar cjf /tmp/kudellspringmssh.tg2 home/springm/.ssh   tar cjf /tmp/kudellspringmssh.tg2 home/springm/.ssh
  
Line 48: Line 51:
  
 Damit sind die alten ssh-keys wieder intakt. Damit sind die alten ssh-keys wieder intakt.
 +
 +==== Nvidia-Suspend ====
 +Ohne diese Maßnahmen funktioniert OpenCL nach Suspend-Resume nicht mehr in darktable.
 +Von: https://askubuntu.com/questions/1228423/how-do-i-fix-cuda-breaking-after-suspend
 +
 +<file etc/modprobe.d/nvidia-power-management.conf>
 +options nvidia NVreg_PreserveVideoMemoryAllocations=1
 +options nvidia NVreg_TemporaryFilePath=/tmp
 +</file>
 +
 +anlegen und 
 +
 +  systemctl enable nvidia-suspend.service
 +ausführen.
 +
 +<file>
 +root@kudell:/home/springm# systemctl status nvidia-suspend.service
 +○ nvidia-suspend.service - NVIDIA system suspend actions
 +     Loaded: loaded (/lib/systemd/system/nvidia-suspend.service; enabled; prese>
 +     Active: inactive (dead)
 +
 +Mai 29 10:23:59 kudell systemd[1]: Starting nvidia-suspend.service - NVIDIA sys>
 +Mai 29 10:23:59 kudell suspend[4896]: nvidia-suspend.service
 +Mai 29 10:23:59 kudell logger[4896]: <13>May 29 10:23:59 suspend: nvidia-suspen>
 +Mai 29 10:24:00 kudell systemd[1]: nvidia-suspend.service: Deactivated successf>
 +Mai 29 10:24:00 kudell systemd[1]: Finished nvidia-suspend.service - NVIDIA sys>
 +</file>
 +
 +
  
 ==== Wake-on-Lan ==== ==== Wake-on-Lan ====
Line 97: Line 129:
 ==== Signal ==== ==== Signal ====
 Download und installieren entsprechend Anweisungen entsprechend https://signal.org/download/linux/ Download und installieren entsprechend Anweisungen entsprechend https://signal.org/download/linux/
-==== darktable ====+==== Darktable ==== 
 +siehe [[computer:debian:darktable|Darktable]] 
 +==== Raw-Previews ==== 
 +siehe [[computer:debian:raw-previews|Raw Previews in Debian/Ubuntu]]
  
-Paket von https://software.opensuse.org//download.html?project=graphics%3Adarktable%3Amaster&package=darktable herunterladen und mit ''dpkg -i'' installieren 
- 
-=== Nightly NICHT EMPFOHLEN, kein Lua === 
-AppImage von ''https://github.com/darktable-org/darktable/releases/tag/nightly'' herunterladen.  
-Starten mit  
-  ~/downloads/Darktable-4.7.0+227.g420bc453d7-x86_64.AppImage  --configdir "~/.config/darktable-master" --cachedir "~/.cache/darktable-master" 
- 
-=== raw-Previews === 
-siehe https://ocroquette.wordpress.com/2021/03/30/thumbnails-for-raw-images-in-gnome-nautilus/ 
- 
-<file bash /usr/local/bin/dcraw-thumbnailer> 
-#!/bin/bash 
-  
-# Usage: 
-#   dcraw-thumbnailer [size] [source] [destination] 
-  
-# Exit with error on any error 
-set -e 
-  
-size=$1 
-source=`echo "$2" | sed 's/file:\/\///'` 
-destination=$3 
-  
-# Conversion table from EXIF orientation code to degrees (Bash 4 and newer) 
-declare -A conv=( ["1"]="0" ["3"]="180" ["6"]="90" ["8"]="270" ) 
-  
-# Read orientation with exiftool 
-# Triple -s : output only the value 
-# -n        : output numerical value, do not convert to human readable form 
-rotation_code=`exiftool -Orientation -s -s -s -n "$source"` 
-rotation_deg="${conv[$rotation_code]}" 
-  
-# Extract the thumbnail (usually stored as JPEG) with dcraw, resize, rotate  and convert it. 
-# The target format will be inferred from the destination file name (usually PNG). 
-dcraw -c -e -w "$source" | convert -resize ${size}x${size} -rotate "${rotation_deg}" - "$destination" 
-</file> 
- 
-<file bash ~/.local/share/thumbnailers/dcraw.thumbnailer> 
-[Thumbnailer Entry] 
-TryExec=/usr/bin/dcraw-thumbnailer 
-Exec=/usr/bin/dcraw-thumbnailer %s %i %o 
-MimeType=image/x-sony-arw;image/x-canon-cr2;image/x-canon-crw;image/x-kodak-dcr;image/x-adobe-dng;image/x-epson-erf;image/x-kodak-k25;image/x-kodak-kdc;image/x-minolta-mrw;image/x-nikon-nef;image/x-olympus-orf;image/x-pentax-pef;image/x-fuji-raf;image/x-panasonic-raw;image/x-sony-sr2;image/x-sony-srf;image/x-sigma-x3f; 
-</file> 
- 
-Damit auch große Raws Thumbnails erhalten: 
-  gsettings set org.gnome.nautilus.preferences thumbnail-limit 500 
-  rm -rf ~/.cache/thumbnails/ 
 ===== atuin ===== ===== atuin =====
   bash <(curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh)   bash <(curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh)
Line 187: Line 175:
 ==== Adobe Reader ==== ==== Adobe Reader ====
 siehe [[computer:debian:Adobe Reader unter Linux]] siehe [[computer:debian:Adobe Reader unter Linux]]
 +
 +==== Restic Backup ====
 +siehe [[computer:ubuntu:restic-backup-docker-hermes]]
 ===== Einstellungen ===== ===== Einstellungen =====
 ==== Alt-Tab Verhalten ändern ==== ==== Alt-Tab Verhalten ändern ====
Line 204: Line 195:
 Wird nicht vom Standard-Debian unterstützt Wird nicht vom Standard-Debian unterstützt
 <file bash> <file bash>
-cd projekte+cd ~/projekte
 mkdir kyocera mkdir kyocera
 cd kyocera cd kyocera
 git clone https://github.com/Fe-Ti/rastertokpsl-re/ git clone https://github.com/Fe-Ti/rastertokpsl-re/
 cd rastertokpsl-re/ cd rastertokpsl-re/
-sudo apt install libcupsimage2-dev libcups2-dev+sudo apt install libcupsimage2-dev libcups2-dev cmake
 cmake -B_build -H. cmake -B_build -H.
 cmake --build _build/ cmake --build _build/
-./install.sh+sudo ./install.sh
 </file> </file>
  
-Drucker in CUPS einrichten als %%socket://192.168.2.3:9100%% und den Treiber aus dem Build-Verzeichnis (Kyocera FS-1060DNangeben.+Drucker in CUPS einrichten als %%socket://192.168.2.3:9100%% und den neu gebauten Treiber ''Kyocera FS-1060DN-KPDSL angeben.
  
 ===== Sound und Subwoofer ===== ===== Sound und Subwoofer =====
  • computer/debian/kudell_auf_debian.1716791998.txt.gz
  • Last modified: 2024/05/27 06:39
  • by spring