Blogger Information
Blog 291
fans 0
comment 0
visits 352622
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
Alpine系统的基础操作
Original
2035 people have browsed it

镜像下载、域名解析、时间同步请点击 阿里巴巴开源镜像站

简介


alpine是一个轻量级的Linux发行版本,轻量级不仅体现在其占用空间的大小,还因为他没有图形化界面,只有命令行界面。

alpine特点:

  • 小巧:基于Musl libc和busybox,和busybox一样小巧,最小的Docker镜像只有5MB;

  • 安全:面向安全的轻量发行版;

  • 简单:提供APK包管理工具,软件的搜索、安装、删除、升级都非常方便。

  • 适合容器使用:由于小巧、功能完备,非常适合作为容器的基础镜像。

alpine镜像源

阿里云:https://mirrors.aliyun.com/alpine/

安装alpine

下载alpine.iso
alpine-standard-3.15.0-x86_64.iso
新建一台虚拟机,类型选Linux,版本选Linux 5.0 x86的64位,内存和磁盘根据自己真机的情况进行调整。

选择自定义安装,之后一路回车

首次登陆root 没有密码

没有ip

使用本地源更新仓库

网络配置

  1. vim /etc/network/interfaces
  2. auto lo
  3. auto eth0
  4. iface eth0 inet static
  5. address 192.168.129.100
  6. netmask 255.255.255.0
  7. geteway 192.168.129.2
  8. /etc/init.d/networking resrtart

SSH

Alpine配置ssh远程登录
注意:安装完成之后是不允许远程登录的,需要我们修改配置文件,修改完配置文件之后重启服务

修改ssh的配置文件

取消注释

修改为

开机自启

重启

设置root密码

查看IP远程登录

  1. apk add openssh-server
  2. //修改配置文件 /etc/ssh/sshd_config
  3. //如果要想使用root用户远程管理,需要修改参数为:
  4. 配置文件选项:#PermitRootLogin prohibit-password
  5. 修改为:PermitRootLogin yes
  6. 或是 sed -i "s/#PermitRootLogin.*/PermitRootLogin yes/g" /etc/ssh/sshd_config
  7. //将ssh服务配置为开机自动启动
  8. rc-update add sshd
  9. //立刻生效,可以执行命令:
  10. rc-service sshd restart 或是
  11. /etc/init.d/sshd restart

配置apk源

  1. [root@localhost ~]# cat apk
  2. #!/bin/bash
  3. #阿里源
  4. version=v3.15
  5. echo 'http://mirrors.aliyun.com/alpine/$version/main
  6. http://mirrors.aliyun.com/alpine/$version/community
  7. ' >/etc/apk/repositories
  8. apk update

————————————————

原文链接:https://blog.csdn.net/qq_48289488/article/details/121895320

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post