/* */

Chris  -  Linux + Disk / SSD

 
Riki und Rudi Chris Michi Doris 

EXT4 Partition userID faken

bindfs -u $user -g $group /mnt/sda1 /home/$user/sda1

NCurses Disk Usage

 

ncdu

 

 

Mehr Harddisk Durchsatz

Oder anders: Wie hau ich mir die Partition zam

z.b. write barrieres abdrehen

 mount -o remount,barrier=0 /home

oder wieder aufdrehen:

 mount -o remount,barrier=1 /home

 

oder cache grösser machen:

unix.stackexchange.com/questions/30286/can-i-configure-my-linux-system-for-more-aggressive-file-system-caching

commit interval raufdrehn

Link dazu:
forums.raspberrypi.com/viewtopic.php

Festplatte hin! Welche Dateien sind betroffen? | reallocatoed sectors -> broken files

mit smartctl sehen wir reqllocated sector count > 0

neue Festplatte einbaun

dd_rescue auf die neue Festplatte:

dd_rescue --logfile=sdb_copy.log --bbfile=badblock.txt -A /dev/sdb /dev/sdc

Anhand der badblock.txt wollen wir jetzt wissen welche Dateien betroffen sind:

while read line ; do
  echo ">>$line<<"
  inode=$(debugfs -D -R "icheck $line" /dev/sdb1 | tail -n 1 | cut -d ' ' -f 2)
  if [ $? != 0 ] ; then
    echo "getting inode failed"
    exit 1
  fi
  echo "inode: $inode"
  ret=$(debugfs -D -R "ncheck $inode" /dev/sdb1 | tail -n 1 | cut -d ' ' -f 2)
  split=( $ret )
  file=${split[1]}
  echo "file: $file"
  echo "$file" >> badfiles.txt
done < badblock.txt