|
|
前段时间在各位朋友的推荐下买了一款 ThinkPad X61:
http://www.linuxsir.cn/bbs/thread323226.html
这款本本还不错, 我加了1G的内存,目前内存是1.5G,安装了 64 位的 Fedora8 和 Fedora7,用起来没啥问题。下面是针对 X61 在 Fedora8 和 Fedora7 的一些技巧:
1. 双屏显示:
X61 的显示器最大支持 1024x768, 我的外接显示器支持 1280x1024..
所以我用的是 1280x1024+1024x768 双屏。
我用的是 intel 驱动,没用 i180 驱动。intel 驱动虽然 Xinerama 有问题,但照样可以通过其他方式设置双屏:
- Section "ServerLayout"
- Identifier "Multihead layout"
- Screen 0 "Screen0" 0 0
- InputDevice "Keyboard0" "CoreKeyboard"
- EndSection
- Section "InputDevice"
- Identifier "Keyboard0"
- Driver "kbd"
- Option "XkbModel" "pc105"
- Option "XkbLayout" "us+inet"
- EndSection
- Section "Monitor"
- Identifier "Monitor0"
- Option "Above" "Monitor1"
- EndSection
- Section "Monitor"
- Identifier "Monitor1"
- HorizSync 30-83
- VertRefresh 55-75
- EndSection
- Section "Device"
- Identifier "Videocard0"
- Driver "intel"
- Option "monitor-VGA" "Monitor1"
- Option "monitor-LVDS" "Monitor0"
- EndSection
- Section "Screen"
- Identifier "Screen0"
- Device "Videocard0"
- Monitor "Monitor1"
- DefaultDepth 16
- SubSection "Display"
- Depth 16
- Modes "1280x1024" "1024x768" "800x600" "640x480"
- Virtual 2048 2048
- EndSubSection
- EndSection
复制代码
2. 编译优化
设置 /usr/lib/rpm/redhat/rpmrc 通过 -march=nocana 进行编译优化:
- # grep x86_64 /usr/lib/rpm/redhat/rpmrc
- optflags: x86_64 %{__global_cflags} -m64 -march=nocana
复制代码
然后对 firefox 等又大又慢的包进行重新编译。
注: nocana 是针对 64 位系统的,如果是 32 位则应该用 prescott。
感觉其他就没什么说的了, 网卡、声卡、无线、3D、U盘等设备 Fedora 直接支持,无需任何配置。
暂时就这些,欢迎其他 X61+Fedora 朋友补充。
我其他还没遇到什么问题,后台同时运行了数十套 php+mysql 系统
,运行 compiz 流畅,运行 ET (重返德军司令部) 速度还不错。mplayer, mplayer-plugin 效果还不错。gimp渲染速度也还可以。eclipse打开十多个项目后的速度勉强可用(当然没法与gvim比)。
目前就剩下一些系统优化的老问题需要慢慢解决:
eclipse 内存占用问题:
http://www.linuxsir.cn/bbs/thread323847.html
firefox 内存泄漏问题:
http://www.linuxsir.cn/bbs/thread321073.html |
|