Quellcode |
|
1 |
shutdown -rf now |
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Poedel« (24.10.2009, 08:36)
Zitat von »Poedel«
doof ist natürlich, dass man manchmal gar nicht weiß, dass jetzt der schwule Momente gekomme ist, man neubooten muß, um die Kernel Line zu editieren.
Goldrichtig, der Meinung bin ich auch...!"fsck" sollte schon ab und an seine Arbeit tun.
Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Poedel« (24.10.2009, 08:35)
Quellcode |
|
1 2 3 4 |
# Most modern fs's don't require a full fsck on boot, but for those that do # it may be advisable to skip this when running on battery. # WARNING: Do not turn this off if you have any JFS partitions. fsck_on_battery="YES" |
Quellcode |
|
1 2 3 4 5 6 7 8 |
# tune2fs -l /dev/sda1 [..] Mount count: 3 Maximum mount count: 30 Last checked: Mon Jan 4 08:23:03 2010 Check interval: 15552000 (6 months) Next check after: Sat Jul 3 09:23:03 2010 [] |
Quellcode |
|
1 2 3 4 |
if [ -e /fastboot ]; then ewarn "Skipping fsck due to /fastboot" return 0 fi |
Quellcode |
|
1 2 3 4 5 6 7 |
# fsck_shutdown causes fsck to trigger during shutdown as well as startup. # The end result of this is that if any periodic non-root filesystem checks are # scheduled, under normal circumstances the actual check will happen during # shutdown rather than at next boot. # This is useful when periodic filesystem checks are causing undesirable # delays at startup, but such delays at shutdown are acceptable. fsck_shutdown="NO" |
Quellcode |
|
1 |
touch /fastboot |
Quellcode |
|
1 |
shutdown -r now |