Archive for 10月, 2006

海贼王的动画回忆内容总算完结了……

星期一, 10月 30th, 2006

"op"下一集就要转入正轨了^–^

又是漫漫征途……

op 

 

Firefox2.0正式版发布.

星期三, 10月 25th, 2006

庆祝一下.

前几天就用过RC3,感觉速度,内存占有率都有所改进,界面也漂亮不少微笑.

现在,一直用Opera9.0 + Firefox2.0 ,毕竟opera的速度可以说是无与伦比的,但我实在舍不得Firefox的那些插件.最后,碰到某些网页才偶尔用一下Maxthon.

Gseeker 上看到IE  team 送给Firefox工程师的蛋糕.

有人在blog里透露这件事时,写了这么一句:

"P.S.: No, it was not poisoned"(附注:不,它是没毒的)

  更绝的评论出现在Digg上面:

"even their cake probably has bugs in it"(甚至连他们的蛋糕里面都可能有bugs)
 

 

 

更改桌面文件夹的位置[zz]

星期四, 10月 5th, 2006

比如想把桌面文件夹放在D:USERNAMEDESKTOP下,进入C:Documents and Settings你的用户名下
将桌面文件夹改名为DESKTOP,然后剪切,到D:USERNAME下粘贴即可
对于收藏夹,也是一样的操作,你也可以不改名的
以上操作完成后,建议用户重新登陆一次
from http://blog.czn.com.cn/user1/108/archives/2006/813html

Google Reader换界面了:)

星期二, 10月 3rd, 2006

完全是一个新界面,比以前方便了许多,我喜欢:)
还能随鼠标滚动自动将文章标记为已读,真先进:)
可以考虑抛弃Sage了。

ubuntu安装中遇到的问题

星期一, 10月 2nd, 2006

前几天看到Berg装的ubuntu 6.06 LTS,中文显示在各方面做的都还不错,于是也装了一下,感觉还不错。
中文的问题一直是困扰很多人的一个问题,桌面化linux在这方面还有很远的路要走。
ubuntu 6.06 LTS的安装界面现在是图形界面,个人感觉完全没有必要(速度慢得要死:(),原来的图形界面就挺好。还有就是ubuntu 会自动挂载windows的分区,而且中文文件名的显示问题也得到了解决,这些做的还是很不错的。
下面说一下遇到的问题

Problem:屏幕分辨率.

图形界面的设置是无效的,这应该是个bug。
方法是修改/etc/X11/xorg.conf
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf_backup
sudo gedit /etc/X11/xorg.conf
默认是1280*1024,想要改为1024*768

Section “Device”
Identifier “Intel Corporation 82865G Integrated Graphics Device”
Driver “i810″
BusID “PCI:0:2:0″
EndSection

Section “Monitor”
Identifier “VE510b”
Option “DPMS”
EndSection

Section “Screen”
Identifier “Default Screen”
Device “Intel Corporation 82865G Integrated Graphics Device”
Monitor “VE510b”
DefaultDepth 24
SubSection “Display”
Depth 16
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 4
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 8
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 15
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 16
Modes “1024×768″ “800×600″ “640×480″
EndSubSection
SubSection “Display”
Depth 24
Modes “1280*1024”“1024×768″ “800×600″ “640×480″
EndSubSection
EndSection

可以看到Default Depth 24,而Depth 24 的 Modes第一个为 “1280*1024”,第二个才是1024*768,删掉第一个,然后,重启X环境就OK了:)。

Problem:中文输入法的问题。

只要装上scim-chinese,然后重启就OK了. 最后就是字体美化的问题了,装上文泉驿就不错了.

Problem: Live CD 修复grub

$sudo -s
!—–切换为超级用户
$mount /dev/hdax  /mnt/hdax
!—-hdx 为Linux root 分区
$chroot /mnt/hdax
$grub

grub>root (hd0,?)
!—-? Tab 一下找到Linux root 分区
grub>setup(hd0)