CPU: Intel 酷睿2双核 P8400
内存:1GB
主板: Intel GM45
显卡:Intel GMA X4500
无线:Intel 5100 AGN
光驱:无
方法:
可采用U盘、硬盘以及外置光驱安装。具体网上描述非常详细,不再累赘描述。
主要几个文件说明:
boot.img.gz来自于 hd-media/boot.img.gz,其他两个
vmlinuz和initrd.gz来自于iso文件的casper目录下(采用desktop安装,其他方式的话,也需要从hd-media/下载
)。
vmlinuz | vmlinuz是可引导的、压缩的内核。“vm”代表“Virtual Memory”。Linux 支持虚拟内存,不像老的操作系统比如DOS有640KB内存的限制。Linux能够使用硬盘空间作为虚拟内存,因此得名“vm”。vmlinuz是可执行的Linux内核 |
initrd.gz | initrd是“initial ramdisk”的简写。initrd一般被用来临时的引导硬件到实际内核vmlinuz能够接管并继续引导的状态 |
对于grub配置文件menu.lst添加如下代码(说明日后再议)
title Ubuntu Install #color magenta/blue black/magenta ro locale=zh_CN.UTF-8 xforcevesa vga=771 root (hd0,0) kernel /vmlinuz boot=casper iso-scan/filename=/ubuntu-8.04.3-desktop-i386.iso ro quiet splash initrd /initrd.gz boot
譬如国人用永中Office,而对于OpenOffice可以舍弃,对于没有蓝牙,可以删除bluez相关包。
在ubuntu8.04下存在一些花屏,而且无法播放视频的。
下载地址如下(国人的GFW太强了,可能打不开,请见下载附件):
http://melchiorre.wordpress.com/2008/07/31/driver-intel-240-deb-package/
其实你可以采用直接删除xserver-xorg-video-i810包,然后直接安装xserver-xorg-video-intel_2.4.0~melchiorre-5_i386.deb,最后重启搞定。
Section "Monitor" Identifier "HDMI-1" Option "Ignore" "True" EndSection Section "Monitor" Identifier "HDMI-2" Option "Ignore" "True" EndSection Section "Screen" Identifier "Default Screen" Monitor "Configured Monitor" Device "Configured Video Device" DefaultDepth 24 SubSection "Display" Modes "1280x800" "1024x768" Virtual 2432 864 EndSubSection EndSection Section "Device" Identifier "Configured Video Device" Driver "intel" Option "monitor-HDMI-1" "HDMI-1" Option "monitor-HDMI-2" "HDMI-2" EndSection
在ubuntu8.04.3下面已经可以正常使用了,对于以前版本的话搞起来有点麻烦。
sudo gedit /etc/default/acpi-support ENABLE_LAPTOP_MODE=false #修改为 ENABLE_LAPTOP_MODE=true
安装xserver-xorg-input-evdev包。
创建/etc/hal/fdi/policy/mouse-wheel.fdi文件,添加内容如下:
<match key="info.product" string="TPPS/2 IBM TrackPoint"> <merge key="input.x11_options.EmulateWheel" type="string">true</merge> <merge key="input.x11_options.EmulateWheelButton" type="string">2</merge> <merge key="input.x11_options.YAxisMapping" type="string">4 5</merge> <merge key="input.x11_options.XAxisMapping" type="string">6 7</merge> <merge key="input.x11_options.Emulate3Buttons" type="string">true</merge> <merge key="input.x11_options.EmulateWheelTimeout" type="string">200</merge> </match>
修改/etc/X11/xorg.conf,内容如下:
Section "InputDevice" Identifier "Configured Mouse" Driver "mouse" Option "CorePointer" Option "Device" "/dev/input/mice" Option "Protocol" "ExplorerPS/2" Option "Emulate3Buttons" "on" Option "Emulate3TimeOut" "50" Option "EmulateWheel" "on" Option "EmulateWheelTimeOut" "200" Option "EmulateWheelButton" "2" Option "YAxisMapping" "4 5" Option "XAxisMapping" "6 7" Option "ZAxisMapping" "4 5 EndSection
后续再添加
sudo gedit /etc/modprobe.d/aliases #修改 alias net-pf-10 ipv6 #为 alias net-pf-10 off //################################### sudo gedit /etc/hosts # The following lines are desirable for IPv6 capable hosts ::1 ip6-localhost ip6-loopback #fe00::0 ip6-localnet #ff00::0 ip6-mcastprefix #ff02::1 ip6-allnodes #ff02::2 ip6-allrouters #ff02::3 ip6-allhosts #################################### sudo vi /etc/modprobe.d/bad_list #添加内容: alias net-pf-10 off
删除不需要的Service。
另外添加mint软件包
## +++ Linux Mint 5 Elyssa (stable) +++ deb http://packages.linuxmint.com elyssa main upstream import ## +++ Canonical (stable) +++ deb http://archive.canonical.com/ubuntu hardy partner ## +++ Medibuntu (stable) +++ deb http://packages.medibuntu.org/ hardy free non-free
http://www.thinkwiki.org/wiki/How_to_configure_the_TrackPoint
http://www.thinkwiki.org/wiki/Installing_Ubuntu_8.04_&_8.10_on_an_X200