Tag: virtualbox

在Windows中的SSH到stream浪者框?

我正在使用Vagrant在Windows中启动一个VirtualBox虚拟机。 在其他平台上,我可以 $ vagrant ssh 连接到虚拟机。 我如何连接到这个在Windows的stream浪汉框? 在Vagrant文​​档中build议使用PuTTy的方式也不起作用: http://docs-v1.vagrantup.com/v1/docs/getting-started/ssh.html

stream浪超时

有一些问题,让我的stream浪汉了,得到了箱子,运行vagrant init和经过vagrant up命令我得到这个消息。 Bringing machine 'default' up with 'virtualbox' provider… ==> default: Importing base box 'precise32'… ==> default: Matching MAC address for NAT networking… ==> default: Setting the name of the VM: virtm_default_1400193131859_61200 ==> default: Fixed port collision for 22 => 2222. Now on port 2201. ==> default: Clearing any previously set network interfaces… ==> […]

Vagrant / VirtualBox / Apache2奇怪的caching行为

我正在使用Vagrant以Apache2运行Ubuntu提供的VirtualBox。 networking服务器等,从我/ vagrant目录中提供静态文件。 这在大多数情况下运作良好。 但是,当我更改共享文件夹中的图像并重新加载网站时,图像的先前版本将被提供,但会被截断。 如果我先从我的共享文件夹中删除旧图片,则刷新网站,所以图片不显示,然后保存新文件并重新加载网站。 有人知道这个问题吗? 我没有什么特别的安装,只有Apache 2与mod_rewrite和PHP与Mongo,APC插件,MongoDB以及nodeJS与一堆脚本。

Vagrant错误:无法在Linux guest虚拟机中装入文件夹

我与Vagrant共享文件夹有一些问题,我的基本系统是Ubuntu 13.10桌面。 我不明白为什么我有这个错误是不是正确的configuration? 是NFS问题还是Virtualbox Guest Additions? 我曾尝试过不同的许多盒子,但同样的问题。 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: mount -t vboxsf -o uid=`id -u vagrant`,gid=`getent group vagrant | […]

从虚拟机虚拟机寻址本地主机

我有一个本地testing/开发服务器(当然是http),监听端口8000, 我在Linux上工作,所以testingIE6 / 7/8等页面我运行一个虚拟机使用虚拟框; 我还需要看看它是如何在Windows环境下的Firefox看起来(例如字体是不同的)。 在我的真机中,我只需使用URL http://localhost:8000打开网站,我如何从虚拟机处理本地主机? 现在我的解决方法是使用IP地址。 任何更好的想法?

在远程目录中无法find或无法访问stream浪者 – 不兼容的curl版本

我刚刚下载了stream浪汉,做了设置以及安装虚拟盒子。 我不能启动我的项目(stream浪汉)。 我有一个stream浪的档案等等。 我能做什么? $ vagrant up Bringing machine 'default' up with 'virtualbox' provider… ==> default: Box 'scotch/box' could not be found. Attempting to find and install … default: Box Provider: virtualbox default: Box Version: >= 0 The box 'scotch/box' could not be found or could not be accessed in the remote catalog. If this […]

stream浪者卡住连接超时重试

我的stream浪者昨天晚上工作得很好。 我刚打开个人电脑,撞上了vagrant up ,这就是我所得到的: ==> default: Clearing any previously set network interfaces… ==> default: Preparing network interfaces based on configuration… default: Adapter 1: nat default: Adapter 2: hostonly ==> default: Forwarding ports… default: 22 => 2222 (adapter 1) ==> default: Booting VM… ==> default: Waiting for machine to boot. This may take a few minutes… […]

引导加载程序不会跳转到内核代码

我正在写小操作系统 – 用于练习。 我开始使用bootloader。 我想创build一个运行在16位真实模式(现在)的小型命令系统。 我已经创build了bootloader来重置驱动器,然后在bootloader之后加载扇区。 问题是因为jmp函数没有实际发生。 我试图加载下一个扇区在0x7E00(我不完全确定如何使用es:bx指向地址,这可能是一个问题,我相信它的地址:偏移量),就在bootloader之后。 这是代码: ; ; SECTOR 0x0 ; ;dl is number of harddrive where is bootloader org 0x7C00 bits 16 ;reset hard drive xor ah,ah int 0x13 ;read sectors clc mov bx,0x7E00 mov es,bx xor bx,bx mov ah,0x02 ;function mov al,0x1 ;sectors to read mov ch,0x0 ;tracks mov cl,0x1 […]