肥兔 发布的文章

首先使用who命令,看谁在线
root@KVM1:~# who
root pts/0 2015-12-30 14:22 (183.24.*.*)
root pts/1 2015-12-30 14:20 (183.24.*.*)

使用pkill命令对指定的终端进行断开
root@KVM1:~# pkill -9 -t pts/0

再次使用who列出当前登陆的用户
root@KVM1:~# who
root pts/1 2015-12-30 14:20 (183.24.*.*)

首先使用如下命令,查看当前系统使用的内核版本,,避免不必要的麻烦以防删错内核
root@debian8:~# uname -a

列出所有安装的内核
root@debian8:~# dpkg --get-selections|grep linux
linux-headers-2.6.32-32 install
linux-headers-2.6.32-32-generic install
linux-headers-generic install
linux-image-2.6.32-21-generic install

使用apt-get的卸载参数来删除旧内核
root@debian8:~# apt-get remove linux-image-2.6.32-21-generic

删除内核后,执行 update-grub 来更新grub启动菜单。

清除软件包配置
dpkg --purge `dpkg --get-selections | grep deinstall | cut -f1`;