[Précédent (date)] [Suivant (date)] [Précédent (sujet)] [Suivant (sujet)] [Index par date] [Index par sujet]
Re: Vitesse HD normale ou... ?
- To:
- Subject: Re: Vitesse HD normale ou... ?
- From: R.Ouellette <>
- Date: Mon, 8 Jan 2001 21:28:47 -0500 (EST)
-
In-reply-to: <[email protected]>
Le lien suivant
http://www.mandrakeuser.org/hardware/hide2.html
explique comment optimiser un disque ATA66.
Ainsi mon fichier /etc/rc.d/rc.local commence comme suit :
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
[ -f /etc/sysconfig/system ] && source /etc/sysconfig/system
[ -z "$SECURITY" ] && SECURITY=0
if [ -f /var/lock/TMP_1ST ];then
if [ -f /etc/init.d/mandrake_firstime ];then
/bin/sh /etc/init.d/mandrake_firstime
fi
fi
# Optimizing disk I/O
hdparm -c3d1 /dev/hda
if [ -f /etc/mandrake-release ]; then
R=$(cat /etc/mandrake-release)
et bla-bla-bla
La ligne hdparm sert à l'optimisation. L'idéal est de faire les
test proposés dans le lien chez MandrakeUser avant d'écrire n'importe
quoi dans rc.local.
Bonne chance!