source: MondoRescue/branches/2.0.8/mondo/mondo/restore-scripts/mondo/ide-opt@ 576

Last change on this file since 576 was 576, checked in by bcornec, 18 years ago

2.08 synced with stable as of r575
VERSION files updated

  • Property svn:keywords set to Id
  • Property svn:unix-mode set to 755
File size: 1.0 KB
Line 
1#!/bin/sh
2
3#echo "Optimize access to IDE drives? (Type 'YES' or just press <enter>)"
4#echo "Warning - this can result in filesystem corruption."
5#read response
6#if [ "$response" = "YES" ] || [ "$response" = "yes" ] ; then
7 > /tmp/oid.log
8 echo -e -n "Optimizing IDE drive access..."
9
10 cdrom_lives_here=`cat /tmp/CDROM-LIVES-HERE`
11 if [ "$?" -ne "0" ] ; then
12 echo "I don't know where the CDROM lives. Optimization cancelled."
13 exit 1
14 fi
15
16 for dev in hda hdb hdc hdd hde hdf hdg hdh ; do
17 echo " " > /tmp/oid1.log
18 if [ "$cdrom_lives_here" = "$dev" ] ; then
19# -c 1
20 hdparm -u 1 -d 1 /dev/$dev &> /tmp/oid1.log
21 else
22# -X34 -X66
23 hdparm -u1 -d1 -c1 -m8 -W1 /dev/$dev &> /tmp/oid1.log
24 fi
25 cat /tmp/oid1.log >> /tmp/oid.log
26 done
27 echo "Done. See /tmp/oid.log for logs."
28#else
29# echo "Fair enough. I shan't optimize IDE access."
30#fi
31
32#echo "'ide-opt' has tried to optimize IDE access. If you saw lots of warnings,"
33#echo "optimization failed (not important, really); otherwise, it succeeded."
34
35exit 0
Note: See TracBrowser for help on using the repository browser.