Total Pageviews

Friday, 17 January 2020

OpenVZ平台上,Alpine Linux一键安装脚本

Alpine Linux脚本应该出来好几个月了,一直没仔细研究,想着对我来说应该用处不大,但是昨晚128M内存的小鸡挂着ss突然就挂掉了,再也无法启动,后台查看到内存爆满,初步怀疑是ss连接数过大,导致了内存不足,直接小鸡就挂了,就想起这个Alpine Linux脚本。
昨天试了一下,这个系统的确不错,其他的先不谈,仅仅开机占用7MB内存就值得一试,并且系统自带了netstat,ifconfig,wget这写脚本需要用到的组件,加上现在Docker官方的镜像底包都推荐使用Alpine来制作,官方推荐的docker.io/alpine:3.7只有4.15M,所以我现在把脚本搬运过来,整理一下写个文章,不然下次写Alpine一键脚本的时候,会不清楚如何安装Alpine。
废话不多,直接上一键脚本(OpenVZ平台,版本不限):
wget https://gist.github.com/trimsj/c1fefd650b5f49ceb8f3efc1b6a1404d/raw/8c2439d5d583dd40d5af3e570949b9f0974357ba/alpine.sh && bash alpine.sh
如果在安装过程中有错误提示,忽略即可,大多都是删除文件的是否提示文件不存在而已。安装完成会自动退出终端,我们使用原来的默认密码登陆即可。
如果服务器不停的修改/etc/inittab并添加一堆重新生成的getty,可运行命令:
apk add e2fsprogs-extra
chattr +i /etc/inittab
安装后,查看内存占用:
free -m
安装后优化操作:
1.如果发现更新或者安装程序非常慢,可以考虑更新apk源:
echo "https://mirror.tuna.tsinghua.edu.cn/alpine/v3.8/main/" > /etc/apk/repositories  //清华大学源
echo "https://mirrors.ustc.edu.cn/alpine/v3.8/main/" > /etc/apk/repositories  //中科大源
2.Alpine常用命令:
apk update //更新最新镜像源列表
apk search //查找所以可用软件包
apk search -v //查找所以可用软件包及其描述内容
apk search -v 'acf*' //通过软件包名称查找软件包
apk search -v -d 'docker' //通过描述文件查找特定的软件包
apk add openssh //安装一个软件
apk add openssh openntp vim //安装多个软件
apk add --no-cache mysql-client //不使用本地镜像源缓存,相当于先执行update,再执行add
apk info //列出所有已安装的软件包
apk info -a zlib //显示完整的软件包信息
apk info --who-owns /sbin/lbu //显示指定文件属于的包
apk upgrade //升级所有软件
apk upgrade openssh //升级指定软件
apk upgrade openssh openntp vim //升级多个软件
apk add --upgrade busybox //指定升级部分软件包
apk del openssh //删除一个软件
3.Alpine服务管理:
alpine没有使用fedora的systemctl来进行服务管理,使用的是RC系列命令:
rc-update     //主要用于不同运行级增加或者删除服务
rc-status       //主要用于运行级的状态管理
rc-service     //主用于管理服务的状态
rc-status -a  //列出系统所有服务
(https://gist.github.com/trimsj/c1fefd650b5f49ceb8f3efc1b6a1404d)
-------------

Converts your OpenVZ VPS to Alpine Linux


For some reasons, I still have to manage a handful of OpenVZ VPS. But I don't like the popular OSes that most providers offer, because they could be messy, heavy and outdated. I used to use vps2arch, which wipes out the original OS, and installs Arch Linux. But now that Arch Linux no longer supports the old VZ kernels, Alpine Linux seems to be a sensible choice.
So I made a script to install the latest Alpine Linux on OpenVZ VPS.
NOTE: The script will wipe all your data in the VPS! It only supports OpenVZ, because there usually are better ways to install your favourite OS on KVM. IPv6 is not supported, and should be manually configured. Vanilla Alpine Linux uses about 8MB RAM and 36MB disk, and it is systemd-free.
I tested it on vanilla 64-bit CentOS 7, Debian 8, and Ubuntu 16.04 images on an NAT OpenVZ VPS provided by @Cam (thanks!). It may or may not work on your OpenVZ however, so be prepared to reinstall OS and improvise.