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

debian linux初安装日记

发布时间:2008-08-15 00:03:55来源:红联作者:Inmaxen
安装完后的系统很小,只要110m左右

可以根据自己的情况从网络上下载我们需要的软件包

配置网卡ip和网关

配置文件是/etc/network/interfaces

修改为
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address 193.168.20.199
netmask 255.255.255.0
gateway 193.168.20.2

执行/etc/init.d/networking restart即可

修改/etc/apt/sources.lst加入
deb http://http.us.debian.org/debian unstable main contrib
esc+ : + wq 保存退出

执行
apt-get update

发现不能解析域名,而我的resolv.conf里已经添加了dns服务器,判断为没有安装解析工具因此手工添加http.us.debian.org的ip地址到/etc/hosts文件里
128.101.80.131 http.us.debian.org
保存执行
apt-get update成功

执行
apt-get dist-upgrade
来更新发行版
重启系统
在线升级成功


apt-cache search nslookup得知解析dns服务的软件是host用下面的命令安装
apt-get install host
ok

apt-cache search 2.6.9
列出2.6.9的相关的包,选择一个适合自己系统的包下载安装
apt-install kernel-image-2.6.9-1-686
安装完以后需要修改/etc/lilo.conf加入initrd的路径,否则无法加载系统
例如:
image=/vmlinuz
initrd=/boot/initrd.img-2.6.9-1-686
label=linux
read-only
保存执行
lilo -v
reboot
用新内核加载系统
成功

安装x环境和kde
apt-get install x-window-system kde-i18n-zhcn kde-core ttf-arphic-gbsn000lp

apt-get install rcconf
装好之后执行
rcconf即可配置

apt-get install locales
之后选择支持的locales为zh_CN zh_CN.GB18030,zh_CN.GBK,zh_CN.UTF-8
系统会自动生成需要的locales

最小系统不带less安装less即可
apt-get install less
之后再使用man就可以上下翻页了

清除缓存cache中的多余文件命令:
apt-get clean
文章评论

共有 0 条评论