Differences

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

Link to this comparison view

tips [2008/11/01 21:20]
tips [2008/11/01 21:20] (current)
Line 1: Line 1:
 +====== Tips ======
 +Unstructured braindump
 +
 +===== Samba & symlinks =====
 +
 +If CIFS does not follow symlinks correctly:
 +
 +  echo 0 > /​proc/​fs/​cifs/​LinuxExtensionsEnabled
 +
 +
 +===== Image backup & restore =====
 +Backup:
 +  dd bs=1M if=/dev/sda | gzip -c | split -b 2000m - /​mnt/​backup/​backup.img.gz.
 +Restore:
 +  cat /​mnt/​backup/​backup.img.gz.* | gzip -dc | dd bs=1M of=/dev/sda
 +
  
Copyright © 2024 Christof Chen