Windows在我的老式笔记本上的速度慢得让人不能忍受,又舍不得换掉我的笔记本,还好,Linux对硬件要求不高,所以把Windows干掉,换成Linux。
费了我好几个小时,将Ubuntu 9.10从网上拖了下来。
我更喜欢使用Grub安装linux
root (hd0,x)
kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-9.10-desktop-i386.iso
initrd /initrd.lz
boot
就进入Ubuntu的安装图形界面了
在图形界面下,需要sudo umount -l /isodevice后才能加载分区的信息并对分区进行操作,要不然,分区列表中都是空白。
安装过程就是一路next。
安装完了,重启,竟然不能认识我的显卡,不能调整分辨率到1024x768。
/etc/X11目录下竟然没有xorg.conf,没关系,这个手工搞定!!
运行命令: gtf 1024 768 60
# 1024x768 @ 60.00 Hz (GTF) hsync: 47.70 kHz; pclk: 64.11 MHz
Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
在/etc/X11下创建xorg.conf,输入如下内容:
1 Section "Monitor"
2 Identifier "Monitor0"
3 VendorName "Monitor Vendor"
4 ModelName "LCD Panel 1024x768"
5 HorizSync 31.5-90.0
6 VertRefresh 60.0-60.0
7 Modeline "1024x768_60.00" 64.11 1024 1080 1184 1344 768 769 772 795 -HSync +Vsync
8 EndSection
9
10 Section "Screen"
11 Identifier "Default Screen"
12 Monitor "Monitor0"
13 Device "Configured Video Device"
14 DefaultDepth 24
15 SubSection "Display"
16 Viewport 0 0
17 Depth 24
18 Modes "1024x768"
19 #Virtual 1024 768
20 EndSubSection
21 EndSection
22
23 Section "Device"
24 Identifier "Configured Video Device"
25 EndSection
重启OK,Ubuntu 9.10安装完毕