Alpine Linux

1. 修改主机名

vi /etc/hostname

2. 允许Root 用户SSH登录的设置

修改 /etc/ssh/sshd_config
增加:
PermitRootLogin yes

3. 安装docker

http://www.jianshu.com/p/cce54e390bae

4. 修改时区

~/.bash_profile 中增加:
TZ='Asia/Shanghai'; export TZ

5. 修改默认网关

即时生效 :route add default gw 192.168.1.1
查看路由表:route

  • 修改DNS
    重启生效:vim /etc/resolv.conf
    --增加下面一行
    nameserver 202.96.134.133

6. 更换默认ash为bash

1)apk add bash bash-doc bash-completion
2 ) vi /etc/passwd 中root的shell为bash
3)reboot
4)echo $0 确认为bash

6. 添加启动执行脚本

1)rc-update add local
2 ) service local start
3)vi /etc/local.d/start_xxx.start
4)chmod +x start_xxx.start

xxx.start 启动执行脚本,字母顺序
xxx.stop 关机执行脚本,字母顺序

你可能感兴趣的:(Alpine Linux)