Bonjour à tous !
Suite a mes problémes de Wifi sous ubuntu sur une autre topic que certains ont put voir…j’ai donc installer la debian netinstall lenny presenté precedement ! Et merci à vous d’ailleur ! 
Bref apres ça, je voudrai accelerer un peut le systéme avec l’astuce present sur le wiki Debian pour le Aspire One, mais comme je ne suis pas fortiche en Anglais et ben je ne comprend pas tous.
Donc j’aurai voulu avoir un petit coup de pouce svp
Voici le lien
wiki.debian.org/DebianAcerOne
Voici l’astuce :
The SSD on the Aspire is somewhat slow (the author recorded a peak 28.8 MB/s read time with O_DIRECT and 7.0 MB/s write time). Consequently, you may want take extra measures to minimize disk I/O.
If you are using ext3 as your filesystem, you may want to add “noatime” and “nodiratime” to the options section of /etc/fstab. This will turn off timestamps on your files, but it will noticeably decrease the number of I/O ops.
Another trick is to mount /var/cache, /var/lock, /var/log, /var/run, /var/mail, /var/spool, /var/lock, /var/tmp, and /tmp on one or more ramdisks. Here are the steps to do this:
- Add this line to your /etc/fstab:
- Make directory /var/volatile
- Mount /var/volatile as a tmpfs volume (the command is “mount -t tmpfs none /var/volatile”)
- Move /var/cache/apt to /var/apt. This way, /var/apt will not take up RAM (because it can become large when installing software).
- Move the cache, lock, log, run, mail, spool, and lock directories to /var/volatile.
- Symlink those directories in /var/volatile to their counterparts in /var. Now any I/O ops to files in these directories will happen on the ramdisk mounted on /var/volatile transparently.
- Optional: Put this script in /etc/rcS.d/S36setup-volatile.sh:
[code]#!/bin/sh
error() {
echo $1; exit 1
}
echo "Setting up /var/volatile…"
mount -t tmpfs none /var/volatile || error "Could not mount /var/volatile!!!"
for i in cache local lock log mail run spool; do mkdir -p /var/volatile/$i
done
ln -s /var/apt /var/volatile/cache/apt
exit 0[/code]
- Enjoy a faster system!
En gros je bloque à l’etape 3, même s’il en quelques une apres que je pense être capable de faire, mais bon…
Merci pour votre aide ! 