UPDATE
- 昨天看aliyun已经支持Debian 8 Jessie的镜像,不用自己升级……
- 自己升级的系统可以生成快照,但是快照无法回滚,服务器会一直显示“启动中”,无法使用
阿里云提供可安装的OS实在是太有限了,而且更新也非常慢,像Debian 8是15年发布的,到今天已过去了一年,还没有提供安装,很多国外的VPS连Ubuntu 16都已提供尝鲜,更别说Debian 8了。不过,也没关系,我们可以自己手动升级,仅需简单几步:
升级:
1、替换 apt 源配置,将“wheezy”替换为“jessie”
sed -i 's/wheezy/jessie/' /etc/apt/sources.list
2、升级 apt list 索引
apt-get update
3、升级软件包
apt-get upgrade
4、升级系统
apt-get dist-upgrade
5、升级完成!重启后,验证结果:
cat /etc/issue
显示
Debian GNU/Linux 8
再看看uname
uname -a
显示
Linux Machine-id 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08) x86_64 GNU/Linux
善后:
1、清理缓存
apt-get clean
2、清理无用文件
apt-get autoremove
3、老的内核也不需要了,删除
查询已安装的内核
dpkg --list|grep linux-image
删除老的
apt-get remove linux-image-3.2.0-4-amd64
显示
Reading package lists... Done Building dependency tree Reading state information... Done The following packages will be REMOVED: linux-image-3.2.0-4-amd64 0 upgraded, 0 newly installed, 1 to remove and 1 not upgraded. After this operation, 106 MB disk space will be freed.
哈哈,可以节省106MB
记录:
在安装Debian 7的时候,阿里云对系统配置作了一些优化,可以继续使用,在 /etc/sysctl.conf 最后加入
vm.swappiness = 0 net.ipv4.neigh.default.gc_stale_time=120 net.ipv4.conf.all.rp_filter=0 net.ipv4.conf.default.rp_filter=0 net.ipv4.conf.default.arp_announce = 2 net.ipv4.conf.all.arp_announce=2 net.ipv4.tcp_max_tw_buckets = 5000 net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_max_syn_backlog = 1024 net.ipv4.tcp_synack_retries = 2 net.ipv6.conf.all.disable_ipv6 = 1 net.ipv6.conf.default.disable_ipv6 = 1 net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv4.conf.lo.arp_announce=2
暂无评论