月份彙整: 2011 年 6 月

製作目錄裡面檔案索引(index.html)的小程式

<?php
if ($argc<=1)
 {
        echo " $argc gen_index.php dir_name Error!\n";
        exit;
 }

  $targetdir=$argv[1];
  echo "target=$targetdir \n";
  $sdp=opendir($targetdir);
  $fp=fopen($targetdir."/index.html","w");
  fwrite($fp,'<html><head><meta http-equiv="Content-Type" content="text/html; charset=big5">
<title>Directory List</title></head><body>’);
  while (false!==($file = readdir($sdp))) {
     if ($file != "." && $file != ".." && $file !=’index.html’) {
        $sd=$targetdir."/".$file;
        if (is_dir($sd))
        {
                system("php gen_index.php ${targetdir}/$file");
                fwrite($fp,iconv(‘utf-8′,’big5′,'<a href="’.$file.’/index.html">’.$file.'</a><br/>’."\n"));
        }
        else
                fwrite($fp,iconv(‘utf-8′,’big5′,'<a href="’.$file.’">’.$file.'</a><br/>’."\n"));
     }
  }
  fwrite($fp,'</body></html>’);
  fclose($fp);
  closedir($sdp);
?>

i7 上 CentOS 5.6的溫度偵測解法

標準的 CentOS 5.x 不能偵測i7  CPU 的溫度,使用以下的手法就可以搞定

yum install lm_sensors
cd /usr/sbin
rm -rf sensors-detect
wget http://dl.lm-sensors.org/lm-sensors/files/sensors-detect
chmod 755 sensors-detect
sensors-detect

全部接受 default

/usr/bin/sensors
就可以取得溫度了