相关软件
- 操作系统安装镜像,本次使用 debian-10.7.0-amd64-netinst.iso
- 虚拟机软件 VirtualBox, 本次使用 VirtualBox 6.1.16
- Vagrant,本次使用 Vagrant (2.2.14)
制作一个box 以debian为例
下载安装镜像
1
|
wget http://mirrors.163.com/debian-cd/10.7.0/amd64/iso-cd/debian-10.7.0-amd64-netinst.iso
|
VirtualBox 新建虚拟机
- 内存:2G
- 硬盘:1TB 动态分配
- 声音、USB: 禁用
- 网络: 网络地址转换(NAT)
- 端口转发 -> ssh 宿主机:127.0.0.1 222 => 虚拟机:(空) 22
如下图:
虚拟机安装 debian 10
- 默认分区
- 设置root密码为vagrant
- 安装常用工具
1
|
apt install sudo lsof net-tools vim wget curl axel systemd xfsprogs util-linux ssh openssh-server -y
|
虚拟机配置 debian 10
安装 openssh-server
1
2
3
4
5
6
7
8
|
# 安装
apt openssh-server -y
systemctl enable --now ssh.service
# 优化连接速度
sed -i 's/#UseDNS no/UseDNS no/g' /etc/ssh/sshd_config
sed -i 's/#GSSAPIAuthentication no/GSSAPIAuthentication no/g' /etc/ssh/sshd_config
sudo systemctl restart sshd
|
设置时区与时间同步
1
2
3
4
5
|
apt install openntpd ntpdate -y
systemctl enable --now openntpd.service
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
ntpdate ntp6.aliyun.com
|
创建用户 vagrant
1
2
3
4
5
6
|
# 创建用户
useradd -s /bin/bash -m vagrant
passwd vagrant
# 配置免密sudo
echo 'vagrant ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers.d/vagrant
|
安装 VirtualBox additions
加载 additions iso 镜像
1
2
3
4
5
6
|
# 挂载
mkdir -p /tmp/cdrom && mount /dev/cdrom /tmp/cdrom
# 安装
apt install gcc bzip2 make perl linux-headers-`uname -r`
cd /tmp/cdrom
sh ./VBoxLinuxAdditions.run
|
添加 vagrant’s public key
1
2
3
4
|
sudo su - vagrant
mkdir -m 0700 -p /home/vagrant/.ssh
curl https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub > /home/vagrant/.ssh/authorized_keys
chmod 0600 /home/vagrant/.ssh/authorized_keys
|
清理 debian 10
为了尽可能减小镜像的体积,我们进行一些清理。
1
2
3
4
5
6
7
8
|
apt-get autoclean #清理旧版本的软件缓存
apt-get clean #清理所有软件缓存
apt-get autoremove #删除系统不再使用的孤立软件
rm -rf /var/cache/apt/archives/*
rm -rf /tmp/*
rm -f /var/log/wtmp /var/log/btmp
history -c
shutdown -h now
|
将 虚拟机 打包为 vagrant box
创建一个目录,然后打开命令行,打包虚拟机成 vagrant box。
--base
的参数必须是安装的 debian 的虚拟机名称,本次是 debian10-base
。
1
|
vagrant package --output debian10-base.box --base debian10-base
|
用 vagrant 启动
将box添加为vagrant镜像
1
2
|
vagrant box add debian10-base debian10-base.box
vagrant box list
|
用 Vagrantfile 启动
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# 创建一个文件夹
mkdir -p /tmp/test-vm
# 创建 Vagrantfile
cat >/tmp/test-vm/Vagrantfile <<EOF
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vm.box = "debian10-base"
config.ssh.username = "vagrant"
config.vm.synced_folder ".", "/vagrant", disabled: true
#config.hostmanager.enabled = true
#config.hostmanager.manage_host = false
#config.hostmanager.manage_guest = true
#config.hostmanager.ignore_private_ip = false
config.vm.hostname = "vm-test-101"
config.vm.network "private_network", ip: "192.168.168.101"
config.vm.network "forwarded_port", guest: 22, host: 10122, protocol: "tcp", host_ip: "127.0.0.1"
config.vm.provider "virtualbox" do |vb|
vb.cpus = 2
vb.memory = "1024"
end
end
EOF
# 启动
cd /tmp/test-vm
vagrant up
# 测试
ssh vagrant@127.0.0.1 -p10122
|