安装不用说了,装好之后有几个地方需要配置一下:
1、vmware设置为桥接模式,debian同样也要设置ip地址和dns
vim /etc/network/interfaces #编辑网网卡配置文件
auto lo
auto eth0 #开机自动连接网络
iface lo inet loopback
#allow-hotplug eth0
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.20.79 #设置ip地址
netmask 255.255.255.0 #设置子网掩码
gateway192.168.20.57 #网关要设为物理主机的ip
vim /etc/resolv.conf #编辑配置文件
nameserver 8.8.8.8 #设置首选dns
nameserver 8.8.4.4 #设置备用dns
2、apt-get总提示插入光盘
修改/etc/apt/sources.list
用"#"注释掉有"cdrom"字样的那几行
3、debian7安装以后中文呈现麻将块一样的乱码,解决办法是在term中进行一下设置:
aptitude install locales
dpkg-reconfigure locales
#配置编码进入选择:(空格键是选择,不是ENTER,选择完了后再ENTER)
en_US.UTF8
zh_CN GB2312
zh_CN GBK GBK
zh_CN UTF-8 UTF-8
#vi /etc/default/locale
LANG=en_US.UTF-8
如果还有方块需要装字体:
apt-get install ttf-arphic-uming
apt-get install ttf-wqy-zenhei
(以上命令需要ROOT权限,装字体需联网,同时需要配置好软件源。)
4、解决debian在xshell中不显示彩色的问题
编辑.bashrc 文件 去掉红色标记前的#号,退出再登陆就在回熟悉的界面了!
vim /root/.bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
#export PS1='\h:\w\$ '
export PS1='\[\033[1;32;40m\]\u@\h:\w\$ \[\033[0m\]'
umask 022
# You may uncomment the following lines if you want `ls' to be colorized:
export LS_OPTIONS='--color=auto'
eval "`dircolors`"
alias ls='ls $LS_OPTIONS'
alias ll='ls $LS_OPTIONS -l'
alias l='ls $LS_OPTIONS -lA'
#
# Some more alias to avoid making mistakes:
# alias rm='rm -i'
# alias cp='cp -i'
# alias mv='mv -i'
添加一行:alias ll='ls -l'
5、vim设置
vim /etc/vim/vimrc
找到下面两行,分别将前面的;去掉让配置生效。
syntax on #这个主要是可以实现部分代码高亮
set background=dark #我们一般操作的时候都是通过ssh直接登录服务器,打开这个选项会让终端里的显示更加醒目。
同时在配置的最后添加一行
set nu #显示行号
6、解决vmware-tools时header问题
aptitude install linux-headers-`uname -r`
然后就可以使用xshell连接测试了。另外记得在xshell中设置下“终端类型”为linux。
阅读(2091) | 评论(0) | 转发(0) |