去掉默认的源从DVD安装
nano /etc/apt/sources.list
注释掉 #deb cdrom:[Debian GNU/Linux 8.3.0 _Jessie_ - Official i386 DVD Binary-1 20160123-18:03]/ jessie contrib main

apt-get install -y vim
apt-get install ibus ibus-sunpinyin -y
设置input method 中选ibus,语言哪里添加sunpinyin,添加成功后,可以用鼠标或者快捷键切换。

关闭apache2服务
/etc/init.d/apache2 stop

切换到字符界面
systemctl set-default multi-user.target
切换到图形界面
systemctl set-default graphical.target

开机启动服务
systemctl enable apache2.service

停止开机启动服务
systemctl disable apache2.service

查询服务状态
systemctl status apache2.service

列出所有已经加载的units的状态
systemctl -a

直接查看某项服务的配置文件,以sshd.serice为例
systemctl cat sshd.service

选择默认的文本编辑器(debian默认的文本编辑器是nano)
update-alternatives --config editor

配置网卡和DNS
/etc/network/interfaces
iface eth0 inet static   #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.21.166
netmask 255.255.255.0
gateway 192.168.21.2

/etc/resolv.conf
nameserver 114.114.114.114
nameserver 8.8.8.8

重启网卡
service networking restart