红联Linux门户
Linux帮助
当前位置: 红联Linux门户 > Debian

Debian Etch+xfce4桌面硬盘安装流程

发布时间:2007-11-30 00:13:42来源:红联作者:Conversion
一、准备足够的硬盘空间
同u,略

二、下载光盘镜像
首先从下载netinst的iso(163M),下面是cn99源里的,一般国内用这个比较快。http://debian.cn99.com/debian-cd/etch/debian-40r1-i386-netinst.iso

三、下载并准备引导文件
硬盘安装所需的文件:
http://debian.cn99.com/debian/dists/etch/main/installer-i386/current/images/hd-media/initrd.gz
http://debian.cn99.com/debian/dists/etch/main/installer-i386/current/images/hd-media/vmlinuz

四、安装Debian基本系统
因为在以后需要网络安装xfce,所以在安装基本时最好就配置好网络,否则可以在安装完基本系统后手工添加:
修改/etc/network/interface如:
# The primary network interface
allow-hotplug eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.255.255
gateway 192.168.0.10
修改/etc/resolv.conf如:
nameserver 188.188.188.188

五、修改源
用root身份加入系统
修改/etc/apt/sources.list,可以参考我的我的:
deb http://debian.cn99.com/debian/ stable main contrib non-free
deb http://debian.cn99.com/debian/ etch-proposed-updates main contrib non-free
deb http://debian.cn99.com/debian-security/ stable/updates main contrib non-free
打算用更新的软件的,可以添加testing,如果有志于当小白的,可以添加unstable、experimental等源。
不过考虑到稳定性、硬件驱动等问题,最好先只用stable源,等装完后换用其它源。
好了之后别忘了apt-get update

六、安装xfce4(其它桌面如Gnome类似)
①安装硬件检测系统apt-get install discover mdetect read-edid
②安装x.org为了避免被装上一大堆无用的显卡驱动,我是这样装的(nvidia显卡):
apt-get install xserver-xorg-video-nv xfonts-base
apt-get install x-window-system-core
③安装gdm,顺便把中文字体,和hicolor的theme也装上
apt-get install gdm ttf-arphic-uming ttf-arphic-ukai hicolor-icon-theme
④装xfce4
apt-get install xfce4
⑤烦了,把声卡驱动和其它一大堆小东西一起装上
apt-get install alsa-base alsa-utils menu dbus dbus-1-utils hal pmount xfce4-terminal xfmedia eject synaptic iceweasel xarchiver gtk2-engines tango-icon-theme

七、配置显卡、声卡
嘿嘿,还是装上这个驱动吧──
apt-get install nvidia-glx
然后,
dpkg-reconfigure xserver-xorg
alsaconf

八、其它配置
①为了使普通用户能在图形界面下关机,可编辑/etc/sudouser
添加%users ALL = NOPASSWD:/usr/sbin/xfsm-shutdown-helper
其中%users可修改为“%自己所在的用户组”,或用户名
②为了自动挂载win下分区,可编辑/etc/fstab,添加
/dev/hda8 /media/hda8 vfat defaults,utf8,umask=007,gid=46 0 0
或(ntfs分区)
/dev/hda9 /media/hda11 ntfs defaults,nls=utf8,umask=007,gid=46 0 0
③用dpkg-reconfigure locales可生成locale和选择默认locale
其它如输入法的配置就不多说了。

总而言之,我感觉Debian比ubuntu自由程度更高些,有一定ubuntu使用基础的新手不妨一试。另外如果希望一次就安装好桌面环境的,可以到官方服务器上下载gnome(cd1字样的,相当于ubuntu)、kde(相当于Kubuntu)、xfce(相当于xubuntu)的CD来安装。
文章评论

共有 0 条评论