1. virtual box 进行安装
1.1 alpine 官网下载最新稳定版镜像
1.2 使用 vbox 进行安装。光盘加载下载的 iso,网络添加多一块网卡,用作后面与宿主机网络通信,如下图:
2. 登录使用
启动后,直接输入 root 即可以 root 用户登录,无须密码。
2.1 设置 root 密码为 root
echo 'root:root' |chpasswd
3. 设置网络:
vi /etc/network/interfaces
为 eth0 和 eth1 网卡设置如下:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
hostname localhost
auto eth1
iface eth1 inet static
address 192.168.56.200
netmask 255.255.255.0
gateway 192.168.56.1
设置完成后,
service networking start/stop/restart
4. 安装 sshd 服务
apk add --no-cache openssh
配置 sshd 服务:
sed -i "s/#PermitRootLogin.*/PermitRootLogin yes/g" /etc/ssh/sshd_config
重启 sshd 服务
service sshd restart
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于