Filesystemcheck: Unterschied zwischen den Versionen

Aus Gemini-Wiki
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
 
Auf dieser Seite ist beschrieben, wie ein '''Filesystemcheck''' durchgeführt wird.
 
Auf dieser Seite ist beschrieben, wie ein '''Filesystemcheck''' durchgeführt wird.
 
==Ablauf bei älteren Images OE 1.5 ==
 
==Ablauf bei älteren Images OE 1.5 ==
*init 4
+
init 4
*umount /media/hdd
+
umount /media/hdd
*fsck.ext3 -p -f /dev/discs/disc0/part1
+
fsck.ext3 -p -f /dev/discs/disc0/part1
*mount /media/hdd
+
mount /media/hdd
*init 3
+
init 3
  
 
==Ablauf bei neueren Images ab OE 1.6 ==
 
==Ablauf bei neueren Images ab OE 1.6 ==
 
+
init 4
*init 4
+
umount /media/hdd
*umount /media/hdd
+
fsck.ext3 /dev/sda1
*fsck.ext3 /dev/sda1
+
mount /media/hdd
*mount /media/hdd
+
init 3
*init 3
 
  
 
==Quelle==
 
==Quelle==
 
*[https://i-have-a-dreambox.com/wbb2/thread.php?postid=935278 https://i-have-a-dreambox.com/wbb2/thread.php?postid=935278]
 
*[https://i-have-a-dreambox.com/wbb2/thread.php?postid=935278 https://i-have-a-dreambox.com/wbb2/thread.php?postid=935278]

Version vom 5. Oktober 2012, 20:24 Uhr

Auf dieser Seite ist beschrieben, wie ein Filesystemcheck durchgeführt wird.

Ablauf bei älteren Images OE 1.5

init 4
umount /media/hdd
fsck.ext3 -p -f /dev/discs/disc0/part1
mount /media/hdd
init 3

Ablauf bei neueren Images ab OE 1.6

init 4
umount /media/hdd
fsck.ext3 /dev/sda1
mount /media/hdd
init 3

Quelle