As the displayconfig-gtk is not included since 8.10, it’s not that easy to change the display resolution for my Toshiba Portege R100 with Trident Cyberblade XP4.
As the touchpad of Portege R100 does not support EdgeScroll(Horiz & Vert) by default.
I would like to write how i solved the touchpad problem in case i forget.
- backup /etc/X11/xorg.conf
- check xorg.conf in inputdevice section, SHMconfig set TRUE
- restart x
- in terminal, synclient -m 1000
- get the X, Y of left right top and bottom.
- edit xorg.conf, add VertEdgeScroll & HorizEdgeScroll option to inputdevice section, and set to 1
- add LeftEdge RightEdge TopEdge BottomEdge in inputdevice section and set with the 4 number got in setp 5.
- done. restart X
This following xorg.conf works fine.
The following Xorg.conf updated on 29th May 2009, with display and touchpad support.
Read more…
系统_OS portege, Ubuntu
wubi是个很不错的软件,昨天用它装了Ubunt 8.04,但是却有些问题。
由于笔记本比较老,Toshiba Porgege R100,显卡是Trident Cyberblade XP4,ubuntu默认没有正确识别它。于是到网上搜了很多相关文章看。大部分文章都写道了这个BUG,而且也列出了一系列解决方案。不过最终还是没能解决。
先描述一下问题症状
问题1:默认最高分辨率800*600,而且只能显示在屏幕中间,周围有大约2寸的黑边。看起来又恼火,又窝火……
解决:打开终端,运行sudo displayconfig-gtk,选择正确的显卡[Trident-CyberBlade(generic)];再选择显示器[LCD Panel 1024*768]。然后按Ctrl+Alt+BackSpace重启xwindow即可。
问题2:调整显示器亮度会造成显示屏错位。
解决:这个暂时没彻底解决掉,不过在出现画屏的时候,先Ctrl+Alt+F1切换到tty1,再Ctrl+Alt+F7即可解决。
另外,ubuntu下电池方案还暂时不能定制,明天找找;上网Drcom验证没搞,暂时用代理。
附西南财经大学Ubuntu源source.list:
Read more…
系统_OS portege, Ubuntu
- 在地址栏输入“about:config”, 将打开一个参数命令行的详细列表。
- 在下面的列表中,找到“network.http.pipelining”, 然后双击“network.http.pipelining”将其值改成“true”。
- 找到“network.http.pipelining.maxrequests”并把它的值改的高一些,如改成30,意思就是每次发送30个请求。
- 在Firefox任何一个地方点右键,选择“新建”—“整数”在弹出的对话框中,输入“nglayout.initialpaint.delay”并将其值改为“0”,表示当浏览器收到网站回复的信息后能够快速的反应。
最后,完全关闭FireFox后退出,再重新打开FireFox,将有不一样的速度体验,会有3-4倍的速度提升。
系统_OS firefox
导入一个体积较大的SQL,通常由于PHP限制而导致超时而无法导入。
编辑:
./phpmyadmin/config.inc.php
查找变量:
$cfg['UploadDir']
在网站下建一个FTP能访问到的目录,将位置赋予变量“$cfg['UploadDir']”,然后通过FTP将dump文件传上去,刷新导入页,即可选择。
一点注意:
文件名必须含有“.sql”几个字符。
建议保存为.sql文件,解压缩文件通常占用内存太多。
附注:不适用于Shell的虚拟主机,因为你无法编辑./phpmyadmin/config.inc.php
系统_OS mysql, 应用