2009年3月12日 星期四

安裝的錯誤訊息

裝fedora 7的時候出現這個錯誤訊息
kernel panic - not syncing : IO - APIC + timer doesn't worl! Boot with apic = debug and send a report. Then try booting with the 'noapic' option.

可以參考這篇文章
http://phorum.study-area.org/index.php/topic,47669.html


簡單說可能就是電腦太新硬體抓不到吧 XDD

2009年3月11日 星期三

奇怪的madwifi

在fedora 7裝madwifi
有時會叫 ath0 有時又會叫wlan0

後來一直交叉測試

發現剛裝完fedora 7的時候
馬上裝madwifi (不要更新 也是就不要yum update)
確定會叫ath0

如果裝完後先跑更新 (ex: yum update)
此時裝madwifi 重開機 就會辨認為wlan0


真奇怪 囧

掛載磁區

http://docs.hgiga.com/Discuz4/viewthread.php?tid=226

這個網址介紹的不錯 XD

ex:
mount -t vfat /dev/sda2 /wufish

[root @test /root]# mount -t iso9660 /dev/cdrom /mnt/cdrom
[root @test /root]# mount -t vfat /dev/fd0 /mnt/floppy
[root @test /root]# mount -t ext2 /dev/fd0 /mnt/floppy
[root @test /root]# mount -t ext2 /dev/hdc6 /home
[root @test /root]# mount -o remount,rw /

2009年3月7日 星期六

make bzImage - error

make[3]: *** No rule to make target `/usr/src/linux-2.6.19.2/include/linux/netfilter/xt_CONNMARK.h', needed by `/usr/src/linux-2.6.19.2/usr/include/linux/netfilter/xt_CONNMARK.h'. Stop.

上次遇到這個問題 找了很久才發現是有缺檔案xt_CONNMARK.h
後來找到原因是啥了

因為我把tar檔存在vfat的磁區上 然後在那邊解壓縮
解壓縮完再移到 /usr/src/ 裡

可是linux裡面大小寫是視為不同檔案
vfat好像就會自動覆蓋的樣子

xt_CONNMARK.h 和 xt_connmark.h
在vfat無法同時存在


簡單說就是乖乖把檔案存到ext3下
然後在那邊解壓縮
不要像我一樣在vfat的磁區下解壓縮

應該就不會遇到這個問題了

找不到滑鼠指標

剛灌完的時候如果看不到滑鼠的指標

編輯 /etc/X11/xorg.conf

在裝置那邊加入option那行

Section "Device"
  Identifier "Videocard0"
  Driver  "nv"
  Option  "HWcursor" "false"
EndSection


登出再登入就可以看到了