首先,咱們要知道,咱們使用html
vagrant init centos/7 vagrant up
會有下面的問題:git
Vagrant was unable to mount VirtualBox shared folders. This is usually because the filesystem "vboxsf" is not available. This filesystem is made available via the VirtualBox Guest Additions and kernel module. Please verify that these guest additions are properly installed in the guest. This is not a bug in Vagrant and is usually caused by a faulty Vagrant box. For context, the command attempted was: mount -t vboxsf -o uid=1000,gid=1000 home_vagrant_labs /home/vagrant/labs The error output from the command was: /sbin/mount.vboxsf: mounting failed with the error: No such device
由於沒有在 vagrant box
中安裝 VBoxGuestAdditions
( centos/7 base box
就沒裝,不怪大家)
虛擬機安裝VBoxAdditions加強功能,該功能有以下做用:github
如何安裝?shell
vagrant plugin install vagrant-vbguest vagrant reload --provision
這個插件的做用,就是自動給你的box
裝個 VBoxGuestAdditions
。全自動,很是好用。可是我就是不想安裝。。。
友情提示: 小白用戶,就用這個就行了centos
vagrant up
Devices
選擇最下面的 Insert Guest Additions CD image
(放心吧,通常都會失敗,怎麼從新安裝都沒用,我也不知道緣由,這是爲了讓你知道有這麼個方式)Box
要求Centos/7
, 使用Ubuntu
的小夥伴不要慌,官方對大家不要太偏愛(來點這個連接 -> Ubuntu)vagrant up
vagrant ssh
(別管掛載報錯)sudo yum update -y
(常規操做)sudo yum install -y dkms binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel
(這個 dkms
yum告訴我沒有,也是很氣,感興趣的小夥伴,找到緣由請在評論區討論一下)curl -O https://download.virtualbox.org/virtualbox/6.0.8/VBoxGuestAdditions_6.0.8.iso
(爲啥不用wget
,秉承儘可能少裝軟件的原則,爲啥,應爲你總不能每個box
都來一遍吧,你要有本身的 vagrant base box
)sudo mkdir /media/VBoxGuestAdditions
sudo mount -o loop,ro VBoxGuestAdditions_6.0.8.iso /media/VBoxGuestAdditions
sudo sh /media/VBoxGuestAdditions/VBoxLinuxAdditions.run --nox11
注意: 按理說,但這個地方應該就能夠安裝上了,可是,實際狀況就是報錯,再報錯。運維
sudo /sbin/rcvboxadd setup
exit
(退出登陸)vagrant reload --provision
(--provision
可加可不加,看本身狀況)vagrant ssh
sudo /sbin/rcvboxadd setup
注意: 說句實話,我也不搞運維,這一堆操做也搞得我頭疼,真心但願有個大神搞定這個:一次不能安裝好的問題!ssh
費了老大勁把它給弄好,實在不想再來一遍了!怎麼辦?咱們製做一下 base box
!
裝好以後呢,實驗一下是否能掛載上文件,而後登陸到 centos/7
,咱們繼續!curl
把以前搞得先幹掉oop
sudo umount /media/VBoxGuestAdditions sudo rmdir /media/VBoxGuestAdditions
搞定sshui
cd ~/.ssh/ rm -rf authorized_keys curl -O https://raw.githubusercontent.com/mitchellh/vagrant/master/keys/vagrant.pub mv vagrant.pub authorized_keys chmod 600 authorized_keys
history
(我把操做流程記在一個空文檔中,可是懶得起名字,不當心隨手就該刪了,寫教程的時候一臉懵逼,我想,在我製做的box
中有沒有history
,嘿嘿,還真有!)執行以下命令打包
# 查看你的box名稱 vboxmanage list vms vagrant package --base 列出來的名稱 --output 指定打包後的存放位置及名稱 # 舉個例子: vagrant package --base centos_7_swarm-manager_1562576409540_69924 --output /data/download/virtualbox/virtualbox_amor_centos_7_1902.01.box
打完包直接添加 vagrant box
vagrant box add --name xxxxx 你製做的基礎box # 舉個例子: vagrant box add --name amor/centos /data/download/virtualbox/virtualbox_amor_centos_7_1902.01.box
Vagrantfile
把 box
改爲你的 box
名稱vagrant up
base box
過上了幸福的生活)忽然你腦子一抽經,誤刪了你的 base box
,或者你和你大老婆(系統)鬧翻了,要幹掉它(重裝系統),可是你仍是想保留你的 base box
(裝系統都沒它煩人),怎麼辦?
vagrant boxx cloud
帳號base box
Ubuntu
的小夥伴,流程和這個差很少,可是官方更負責任點,文檔在上面。本身看!