virtualbox

Qt那些事0.0.27 之 QUdpSocket组播通讯

大城市里の小女人 提交于 2021-02-20 14:50:27
刚刚写的因为网断了就丢了,不想写了。 关于组播通信失败,大概率因为多网卡,通过 ipconfig 可以查看具体网卡情况。 C:\WINDOWS\system32>ipconfig 无线局域网适配器 WLAN: 连接特定的 DNS 后缀 . . . . . . . : 本地链接 IPv6 地址. . . . . . . . : fe80::--------78%18 IPv4 地址 . . . . . . . . . . . . : 192.168.3.165 子网掩码 . . . . . . . . . . . . : 255.255.255.0 默认网关. . . . . . . . . . . . . : 192.168.3.1 以太网适配器 本地连接* 12: 连接特定的 DNS 后缀 . . . . . . . : 本地链接 IPv6 地址. . . . . . . . : fe80::---------620%3 IPv4 地址 . . . . . . . . . . . . : 3.3.0.154 子网掩码 . . . . . . . . . . . . : 255.255.0.0 通过 wireshark 抓包发现,走组播的数据包是通过 3.3.0.154 接口发出。因此,查询相关知识,window系统,网络路由是自动选择,因此最后通过修改路由表解决此问题。 C:

“Corrupted MAC on input.” when git clone over SSH on VPN from VirtualBox/Ubuntu

匆匆过客 提交于 2021-02-19 08:57:10
问题 Here is the error after I do a git clone in my Virtualbox which is using Ubuntu 16.04. Corrupted MAC on input. (33872/116798), 2.67 MiB | 5.30 MiB/s ssh_dispatch_run_fatal: Connection to 10.x.x.x port 2xxxx: message authentication code incorrect fatal: The remote end hung up unexpectedly fatal: early EOFs: 30% (35040/116798), 2.67 MiB | 5.30 MiB/s fatal: index-pack failed Couple of things to note: Running through VPN (Company use) Virtualbox Network settings:(Allows me to get to any company

How to deal with apps that force screen orientation in android-x86 on VirtualBox?

最后都变了- 提交于 2021-02-17 19:41:19
问题 If you've used an Android device, you're aware that there are some apps that force the display to portrait and ignore the device's orientation sensor. On a real device, this is not a problem, as you can physically rotate the device in your hands to use the app. However, I am trying to use such an app on android-x86 in Oracle's VirtualBox on a Linux Mint PC, and cannot physically rotate my monitor. I have tried the f9-f12 keys that send a rotation event to the app, but since the orientation is

Vagrant 填坑

a 夏天 提交于 2021-02-16 13:09:19
Virtualbox Guest Additions Version不匹配问题的解决 # 方法1 # 运行vboxguest-5.1.8 setup -- 未测试 # 方法2 # 重新编译vboxguest -- 未测试 # 方法3 # 使用Centos GUI界面,运行vboxguest -- 未测试 # 方法4 安装插件,命令如下(外国人写的插件 专门解决不匹配问题) $ vagrant plugin install vagrant-vbguest 资源清单 # CentOS 官方资源 https://cloud.centos.org/centos/7/vagrant/x86_64/images/ 基础命令 # vagrant常用命令 $ vagrant init # 初始化 $ vagrant up # 启动虚拟机 $ vagrant halt # 关闭虚拟机 $ vagrant reload # 重启虚拟机 $ vagrant ssh # ssh至虚拟机 $ vagrant suspend # 挂起虚拟机 $ vagrant resume # 唤醒虚拟机 $ vagrant status # 查看虚拟机运行状态 $ vagrant destroy # 销毁当前虚拟机 # box管理命令 $ vagrant box list # 查看本地box列表 $ vagrant box

docker部署-windows环境

拜拜、爱过 提交于 2021-02-14 16:25:31
docker部署-windows环境 1. docker windows 1.1. 安装 win7或者win8需要利用docker toolbox来安装,其是一个docker工具集,win10自带Docker安装包。 下载安装文件 通过aliyun镜像下载(推荐): http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/ 通过官网下载:https://www.docker.com/get-started 下载完成:DockerToolbox-1.10.0.exe 安装:略 安装完成: 1.1.1. docker toolbox docker toolbox 是一个工具集,它主要包含以下一些内容: Docker CLI 客户端,用来运行docker引擎创建镜像和容器 Docker Machine. 可以让你在windows的命令行中运行docker引擎命令 Docker Compose. 用来运行docker-compose命令 Kitematic. 这是Docker的GUI版本 Docker QuickStart shell. 这是一个已经配置好Docker的命令行环境 Oracle VM Virtualbox. 虚拟机 1.2. 运行 因为Docker守候进程依赖于linux内核

linux 设置网络ip

梦想与她 提交于 2021-02-13 20:43:59
环境:VMware 、CentOS release 6.5 网络设置为NAT /etc/sysconfig/network-scripts/ifcfg-eth0 配置文件如下 DEVICE="eth0" BOOTPROTO="static" HWADDR="00:0C:29:BD:D5:33" IPV6INIT="yes" NM_CONTROLLED="yes" ONBOOT="yes" TYPE="Ethernet" UUID="6994fe7a-1963-4c51-885e-7e20b52437ff" BOOTPROTO=static IPV6INIT=no USERCTL=no IPADDR=192.168.200.130 NETMASK=255.255.255.0 GATEWAY=192.168.200.255 DNS1=8.8.8.8 DNS2=8.8.4.4 1.如果ip不一致,可能的原因是BOOTPROTO="dhcp" 2.如果重启网卡有问题,可能是HWADDR没有配置对,要和ifconfig显示的信息一致 3.还有就是,ifcfg-eth0可能配置的是eth1,重点是看这个属性是什么DEVICE="eth0"。不要被迷惑的 ps: linux桌面这里也可以修改网络设置 ------------------------------------------------

Linux 桥接网络不自动分配IP的问题

偶尔善良 提交于 2021-02-13 20:31:36
之前遇到过好多次,知道什么原因就是忘了命令怎么敲,还要去搜索,写一遍加强下记忆,并总结下。 情况一 :网卡冲突问题 1 , 网卡问题 有安装过oracle VM VirtualBox 的,会和VMwareWorstation 网卡冲突,导致网卡流量导流到Box的网卡上,保留一个(我是将盒子卸载了,并且卸载了相关的网卡) 2 ,Vm网络编辑器 在打开的网络编辑器页面看到虚拟机使用的桥接模式网卡不在列表中,右下角更改设置, 更改设置之后,VMware 重新加载设置,就能看到对应的桥接模式网卡,默认为自动模式 点击桥接模式,然后在下面可以看到它的设置选项,然后点击自动,这个时候可以看到前两天安装的VirtualBox桥接网卡(没有卸载盒子网卡的情况下),以及主机自己的实际物理网卡。 这是自动模式将所有虚拟机的流量都导入到Virtualbox的桥接网卡上面去了。这个时候我们点击实际的物理网卡名称。 然后它的模式就变成了实际的网卡名称,如下面图中所示。点击确定按钮保存配置。 然后我们回到虚拟机上,重新启动network这个服务,命令是: systemctl restart network 重启完成后,可以看到获得了正确的IP地址,然后ping一下百度的网卡,可以看到有回复,到这里,网络就恢复正常了,可以判断是Virtualbox的桥接网卡的问题。 情况二: 配置文件问题 由于在安装Linux

什么是裸金属服务器?

纵然是瞬间 提交于 2021-02-12 06:46:45
昨天关于云计算的文章里面,我提到一个名词,叫做“裸金属服务器”。 不知道为什么,很多读者对这个东东产生了浓厚的兴趣,纷纷在后台私信问我相关的情况。 本着消灭所有知识死角的精神,今天我们就来了解一下,到底什么是裸金属服务器。 乍一看裸金属服务器这个名字,确实是让人感到困惑——服务器难道不都是金属的么?难道有木质或者塑料的? 这个“ 裸 ”字,莫非是指服务器连外壳都没有? 其实,裸金属服务器(Bare Metal Server)之所以有这么个奇怪的名字,主要是为了和虚拟化服务器划清界限。 我在昨天的文章说过,云计算的一大特点,就是从买到租,用户向云服务提供商租用计算资源。而这些租用的计算资源, 大部分 都不是物理资源,而是虚拟资源。 没错,这个“ 大部分 ”,就是意味着有特例。而 裸 金属服务器 ,就是其中一个典型特例。 裸金属服务器,也属于云计算产品 为什么在全面云化的大背景下,还要“ 开倒车 ”,提供物理服务器呢? 原因当然是因为虚拟化也有搞不定的地方。 虚拟化并不是完美无缺的。它有两个无法回避的缺陷。 首先第一点,是性能损失。 虽然虚拟化云化吹得天花乱坠,但是,毕竟引入了“第三者”,操作系统和应用程序在调用硬件资源的时候,没有直接掌控来得那么得心应手。 虚拟化 对于一些性能要求高的业务(例如高性能运算),虚拟化会带来性能延迟。如果发生密集的I/O(输入/输出)操作

unknown filesystem type 'vboxsf' after vagrant up

倖福魔咒の 提交于 2021-02-07 19:16:19
问题 i want to setup environment using vagrant but display error after vagrant up. here is my spec im using : - OS X Yosemite Version 10.10.5 - VirtualBox vesion 5.2.6 - Vagrant 2.0.1 and this is my Vagrant file Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "private_network", ip: "192.168.33.99" config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755'] end but went i run 'vagrant

unknown filesystem type 'vboxsf' after vagrant up

不羁岁月 提交于 2021-02-07 19:08:12
问题 i want to setup environment using vagrant but display error after vagrant up. here is my spec im using : - OS X Yosemite Version 10.10.5 - VirtualBox vesion 5.2.6 - Vagrant 2.0.1 and this is my Vagrant file Vagrant.configure("2") do |config| config.vm.box = "centos/7" config.vm.network "private_network", ip: "192.168.33.99" config.vm.synced_folder "./", "/vagrant", type:"virtualbox", :owner => 'apache', :group => 'apache', mount_option: ['dmode=777', 'fmode=755'] end but went i run 'vagrant