
Le sort s'acharne contre Gratouye (up 80 quand même). Le Barracuda 7200.9 250 Gbytes ne veut plus monter la racine de Corto. Quelqu'un aurait le matériel pour récupérer les données ?

xrandr --output VGA1 --left-of LVDS1 --autopouf pouf celui ci s'allume. Nota: Kernel 2.6.31 a renommé VGA1 et LVDS1 les sorties autrefois nommées VGA et LVDS. Voici mon fichier /etc/X11/xorg.conf toujours configuré a la mano:
Section "Device"
Identifier "Intel GM45 Express"
Driver "intel"
Option "monitor-VGA1" "DELL 2007FP"
Option "monitor-LVDS1" "Lenovo X301 LCD"
EndSection
Section "Monitor"
Identifier "Lenovo X301 LCD"
EndSection
Section "Monitor"
Identifier "DELL 2007FP"
Option "Left Of" "Lenovo X301 LCD"
EndSection
Section "Monitor"
Identifier "HDMI-1"
Option "Ignore" "true"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel GM45 Express"
Monitor "Lenovo X301 LCD"
EndSection
sudo "echo /usr/lib/jvm/java-6-sun/jre/lib/i386/server > /etc/ld.so.conf.d/libjava.conf"
sudo ldconfig
sudo service network-manager restart.
mboxformat, and does not support maildir.
// filterlists.js
//
// In every <ol> of the document, hides list items that don't match the criteria
// in the remaining lines, highlight the matches
//
// To use, add
// <input onkeyup = "filter(this.value)" /> in the document's body
// <script type="text/javascript" src="filterlists.js"></script> in the document's head
// span.highlighted {background-color: #00FFFF} in the document's css
//
// Copyleft GPL v3, Minh Ha-Duong, CIRED, 2008.
function filter(criteria) {
categories = document.getElementsByTagName("ol")
for (j=0; j<categories.length; j++) {
filterList(criteria, categories[j])
}
}
function filterList(searchString, textContainerNode) {
var tempinnerHTML = textContainerNode.innerHTML
// Unlight all
var regex = new RegExp('<span class="highlighted">([^>]*)?</span>',"ig")
tempinnerHTML = tempinnerHTML.replace(regex,'$1')
// Highlight matching spans
regex = new RegExp(">([^<]*)?("+searchString+")([^>]*)?<","ig")
textContainerNode.innerHTML = tempinnerHTML.replace(regex,'>$1<span class="highlighted">$2</span>$3<');
// Hide nonmatching list items
regexp = new RegExp(searchString,"i")
var allitems = textContainerNode.getElementsByTagName("li")
for (i=0 ; i<allitems.length; i++) {
rawtext = allitems[i].innerHTML.replace(/<[^>]*>/g,"").replace(/\(Abstract\)/,"")
allitems[i].style.display = (rawtext.match(regexp) ? 'block' : 'none')
}
}