标签:erro std 虚拟机 ros network 不同 aws tty soft
?????是一款用来构建虚拟开发环境的工具,它底层支持VirtualBox、VMware甚至AWS作为虚拟机系统。
Vagrant能做什么?
避免重复搭建开发环境。新员工加入,不用浪费时间搭建开发环境,快速加入开发,减少时间成本的浪费;
多个相互隔离开发环境。可以在不用box里跑不同的语言,或者编译安装同一语言不同版本,搭建多个相互隔离的开发环境,卸载清除时也很快捷轻松。
安装 和 配置?
官方文档:https://www.vagrantup.com/docs/
#提前下载好的box文件,~/box/precise64.box,我们给这个box命名为ubuntu12.04
vagrant box add ubuntu12.04 ~/box/precise64.box
#box文件也可以是远程地址 base 为默认名称
#vagrant box add base http://files.vagrantup.com/lucid64.box
#打开目录
#cd ~/vagrant/work
#初始化
vagrant init
#如果你添加的box名称不是base,那么需要在初始化的时候指定名称,例如
vagrant init ubuntu12.04
vagrant up
vagrant ssh
vagrant reload
vagrant package
vagrant -h
? 开发目录下有一个文件Vagrantfile,里面包含有大量的配置信息,主要包括三个方面的配置,虚拟机的配置、SSH配置、Vagrant的一些基础配置。
? 打开看一下,注释很全,所以不用担心不会配置了,下面主要备忘几个常用配置:
config.vm.box = "ubuntu12.04"
config.vm.hostname = "for_work"
#config.vm.network "private_network", ip: "192.168.33.10"
config.vm.network "public_network"
config.vm.synced_folder "../data", "/vagrant_data"
config.vm.network "forwarded_port", guest: 80, host: 8080
config.vm.provider "virtualbox" do |vb|
#Display the VirtualBox GUI when booting the machine
vb.gui = true
#Customize the amount of memory on the VM:
vb.memory = "1024"
vb.cpus = 2
vb.name = "my_vm"
end
??使用 Apache/Nginx 时会出现诸如图片修改后但页面刷新仍然是旧文件的情况,是由于静态文件缓存造成的。需要对虚拟机里的 Apache/Nginx 配置文件进行修改:
# Apache 配置添加:
EnableSendfile off
# Nginx 配置添加:
sendfile off;
How to make Vagrant performance not suck ?
Vagrant NFS configration
具体配置操作,参考原文 和 vagrant文档。
nfs权限问题
config.vm.synced_folder ‘.‘, ‘/vagrant‘, :nfs =>{
:linux__nfs_options => ["no_root_squash"],
:map_uid => 0,
:map_gid => 0
}
域名解析慢的问题
config.vm.provider :virtualbox do |vb|
#vb.gui = true
vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
报错:
Failed to mount folders in Linux guest. This is usually because the "vboxsf" file system is not available. Please verify that the guest additions are properly installed in the guest and can work properly. The command attempted was:
尝试:
//sudo apt-get install virtualbox-guest-dkms
sudo apt-get install virtualbox-guest-utils
报错:
default: stdin: is not a tty
vi /root/.profile
#把 mesg n 替换成 tty -s && mesg n
报错:
redis Can‘t open the log file
redis 无法加载.rdb
redis 无法载入.rdb
解决办法:
把 redis:redis 用户组设置更改为 vagrant:vagrant.
Permissions error trying to dump Redis to a Vagrant shared folder
转自:http://rmingwang.com/vagrant-commands-and-config.html
标签:erro std 虚拟机 ros network 不同 aws tty soft
原文地址:http://www.cnblogs.com/luyucheng/p/5988075.html