SSH 连接Ubuntu反应慢
- SSH服务默认启用了DNS反向解析的功能
- 在
/etc/ssh/sshd_config
文件中修改或加入UseDNS=no
和GSSAPIAuthentication no
两行 - 重启sshd
sudo service sshd restart
删除旧内核
uname -a
#使用这个命令可以查看当前系统使用的内核。
dpkg --get-selections|grep linux
#列出当前内核,带image的则是已经安装的内核。可以用类似以下命令卸载:
sudo apt-get remove linux-image-2.6.24-11-generic
#其中 linux-image-2.6.24-11-generic 为版本号,输全 。
在最新的ubuntu (15.10以上)版本中,执行sudo apt-get autoremove
也可以直接卸载旧内核
如何升级 Ubuntu 版本, 比如从 Ubuntu 15.10 升级到 Ubuntu 16.04
终端执行如下命令:
sudo do-release-upgrade -d
如果命令do-release-upgrade不存在,则安装 update-manager-core :
sudo apt-get install update-manager-core
Ubuntu中安装和卸载Gnome、KDE、XFACE桌面环境
- 安装XFACE:
sudo apt-get install xubuntu-desktop
- 安装KDE:
sudo apt-get install kubuntu-desktop
- 安装Gnome:
sudo apt-get install ubuntu-desktop
Ubuntu卸载桌面环境(应备份重要文件)
- 卸载gnome:
sudo apt-get --purge remove liborbit2
- 卸载kde:
sudo apt-get --purge remove kdelibs4c2a libarts1c2a
- 卸载xface:
sudo apt-get --purge remove xfce4
给用户添加sudo权限
- root权限编辑/etc/sudoers文件
添加一行 xxx ALL=(ALL) ALL
或者添加 xxx ALL=(ALL) NOPASSWD: ALL
, 使用不用输密码
配置静态IP后无法解析域名
编辑 /etc/network/interfaces
文件, 添加配置:
dns-nameservers 114.114.114.114 114.114.115.115
update-apt-xapi占用资源过高
- 后台任务,会定期把cpu和磁盘IO打满
- 解决方法,直接卸载掉
apt-get autoremove --purge apt-xapian-index
升级Ubuntu版本,比如从15.04升级到16.04
先备份!
sudo apt-get update
sudo apt-get install update-manager-core
sudo do-release-upgrade
Ubuntu 无法重启、关机
此问题发生于Ubuntu 16.04 LTS版本,由内核bug导致。
解决办法是,把内核升级到最新版本。截止本文,Ubuntu 16.04 源中的最新版本是4.10.0-22
sudo apt-get install linux-image-4.10.0-22-lowlatency
sudo apt-get install linux-headers-4.10.0-22-lowlatency
最新版本内核查找方法如下:
sudo apt-cache search linux-image