virtualbox

如何在不使用存储库的情况下将Docker映像从一台主机复制到另一台主机

自闭症网瘾萝莉.ら 提交于 2020-08-05 04:26:37
问题: How do I transfer a Docker image from one machine to another one without using a repository, no matter private or public? 如何在不使用存储库的情况下将Docker映像从一台计算机转移到另一台计算机,无论是私有的还是公共的? I am used to play and create my own image in VirtualBox, and when it is finished, I try to deploy to other machines to have real usage. 我习惯于在VirtualBox中播放和创建自己的映像,完成后,我尝试部署到其他计算机上以实际使用。 Since it is based on own based image (like Red Hat Linux), it cannot be recreated from a Dockerfile. 由于它基于自己的映像(例如Red Hat Linux),因此无法从Dockerfile重新创建。 Are there simple commands I can use? 我可以使用简单的命令吗? Or another solution? 还是其他解决方案? It

如何在 Ubuntu 20.04 上安装 Vagrant

試著忘記壹切 提交于 2020-08-04 20:25:34
本文最先发布在: https://www.itcoder.tech/posts/how-to-install-vagrant-on-ubuntu-20-04/ Vagrant 是一个命令行工具,用于构建和管理虚拟开发环境。 默认情况下,Vagrant 在 VirtualBox, Hyper-V, 和 Docker 之上准备环境。支持其他提供者,例如, Libvirt (KVM), VMware and AWS 可以通过 Vagrant 插件系统启用。 Vagrant 通常被开发者用来建立匹配生产环境的开发环境。 这篇文章描述如何在 Ubuntu 20.04 机器上安装 Vagrant。我们将会使用 VirtualBox,Vagrant 默认的提供者。 一、在 Ubuntu 上安装 Vagrant 我们将会在 VirtualBox 的基础上提供虚拟机。 如果 VirtualBox 没有安装在你系统上,你可以运行下面的命令安装它: sudo apt update sudo apt install virtualbox Vagrant 软件包,在 Ubuntu 源仓库中提供,并且不经常更新。我们将会从官方 Vagrant 网站下载并安装最新版的 Vagrant。 在写这篇文章的时候,Vagrant 最新版是 2.2.9。浏览 Vagrant 下载页面 ,看看有没有 Vagrant

华为模拟器ensp的AR路由器无法启动,一直#号

家住魔仙堡 提交于 2020-08-04 17:04:44
原文链接 一、背景 因为最近在学习 HCIP课程,需要使用ensp模拟器,但是用到AR系列路由器的时候,不是报错就是一直 # 号; 二、尝试过的解决方法 以下办法可能会解决你电脑上AR路由器无法启动的问题,可以尝试下; 以下办法可能会解决你电脑上AR路由器无法启动的问题,可以尝试下; 1、卸载所有ensp软件,重新安装。 按照老师的要求进行了完全的卸载,包括各种插件、依赖,重新安装后还是不行; 2、刷系统 因为也有可能是你系统里装了什么东西,导致了AR路由器无法启动(这个谁也说不好)。所谓刷了好几次系统进行测试,从windows10家庭版换到windows10专业版,再换到windows7都没有解决问题; 甚至,在windows10上还会出现蓝屏的现象!新电脑也不例外! 3、虚拟化 问过好多人,都说是虚拟化没开;好吧,只能上图证明了; 打开 任务管理器: 是的,每个电脑的虚拟化都是默认开启的,只要少数的才需要进入到BIOS固件中查看虚拟化;本人还特地进BIOS系统进行了一番确认。 4、virtualBox 网上很多说是删除 virtualBox 中的AR网卡或者AR虚拟机,重新创建;试过了,还是不行! 但是能解决40报错和41报错 三、解决方法 哈哈,当时解决之后就都明白了,当场个就写下了这篇文章,给其他AR路由器无法启动的同学参考; 1、启动AR路由器蓝屏 对

mac上利用minikube搭建kubernetes(k8s)环境

浪子不回头ぞ 提交于 2020-08-04 10:04:32
友情提示:对于初次接触k8s的同学,强烈建议先看看本文最后的参考文章。 环境: mac os(Mojave) 前提:先安装好kubectl (brew install kubectl) 、 docker desktop (建议最新版本) 步骤: 一、安装VirtualBox 下载地址: https://www.virtualbox.org/ (目前最新版本: 6.0) 一路next就好,要 注意 的是:安装过程中,可能会弹出一个系统安全相关的对话框,一定要允许,并在Security&Privacy这里,把VirtualBox勾上 否则,折腾到最后,会发现minikube虚拟机无法启动。 二、安装阿里云版的minikube 官方出品的minikube,默认连接的是google官方站点,由于众所周知的原因,天朝屁民无缘访问。所以必须用阿里版的minikube(感谢阿里) curl -Lo minikube http://kubernetes.oss-cn-hangzhou.aliyuncs.com/minikube/releases/v1.1.1/minikube-darwin-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ 执行这一串后,就把minikube安装好了。  三、创建minikube集群

Can't install Kubernetes on Vagrant

爷,独闯天下 提交于 2020-08-02 07:31:14
问题 Use this guide to install Kubernetes on Vagrant cluster: https://kubernetes.io/docs/getting-started-guides/kubeadm/ At (2/4) Initializing your master , there came some errors: [root@localhost ~]# kubeadm init [kubeadm] WARNING: kubeadm is in beta, please do not use it for production clusters. [init] Using Kubernetes version: v1.6.4 [init] Using Authorization mode: RBAC [preflight] Running pre-flight checks [preflight] Some fatal errors occurred: /proc/sys/net/bridge/bridge-nf-call-iptables

Can't install Kubernetes on Vagrant

雨燕双飞 提交于 2020-08-02 07:29:32
问题 Use this guide to install Kubernetes on Vagrant cluster: https://kubernetes.io/docs/getting-started-guides/kubeadm/ At (2/4) Initializing your master , there came some errors: [root@localhost ~]# kubeadm init [kubeadm] WARNING: kubeadm is in beta, please do not use it for production clusters. [init] Using Kubernetes version: v1.6.4 [init] Using Authorization mode: RBAC [preflight] Running pre-flight checks [preflight] Some fatal errors occurred: /proc/sys/net/bridge/bridge-nf-call-iptables

Virtual Box VT-x is not available (VERR_VMX_NO_VMX).. Hyper V and core isolation is disabled

纵饮孤独 提交于 2020-08-01 16:02:10
问题 I'm running windows 10 enterprise trying to launch a VM in Virtualbox and it fails with the error. "VMMR0_DO_NEM_INIT_VM failed: VERR_NEM_MISSING_KERNEL_API_2 (VERR_NEM_MISSING_KERNEL_API_2). VT-x is not available (VERR_VMX_NO_VMX)." I have HyperV disabled in windows features and core isolation turned off I've checked the registry as well and core isolation / memory itegrity is off there. I've also made sure that in group policy settings that virtualization based security is disabled. My BIOS

Increase Disk Space on Docker Toolbox

房东的猫 提交于 2020-07-31 07:57:48
问题 I'm trying to start some very large Containers on Docker Toolbox (about 18 GB in total). Unfortunately, I always get the error that there is not enough disk space. I have a 1TB HDD and there are more than 200 GB free. How can I increase the disk space for docker toolbox? 回答1: OK, I finally found the solution: Open Docker Quickstart Terminal, remove the virtual docker-machine and add a new one: $ docker-machine rm default $ docker-machine create -d virtualbox --virtualbox-disk-size "100000"

Increase Disk Space on Docker Toolbox

老子叫甜甜 提交于 2020-07-31 07:57:11
问题 I'm trying to start some very large Containers on Docker Toolbox (about 18 GB in total). Unfortunately, I always get the error that there is not enough disk space. I have a 1TB HDD and there are more than 200 GB free. How can I increase the disk space for docker toolbox? 回答1: OK, I finally found the solution: Open Docker Quickstart Terminal, remove the virtual docker-machine and add a new one: $ docker-machine rm default $ docker-machine create -d virtualbox --virtualbox-disk-size "100000"

如何在 Ubuntu 20.04 上安装 VirtualBox

孤街浪徒 提交于 2020-07-28 10:12:00
本文最先发布在: https://www.itcoder.tech/posts/how-to-install-virtualbox-on-ubuntu-20-04/ VirtualBox 是一个开源的,跨平台的虚拟化软件,它允许你同时运行多个虚拟机。通常,VirtualBox 被桌面用户用来做测试和开发环境。 在这个指南中,我们将会向你展示如何在 Ubuntu 20.04 上安装 VirtualBox: 从标准的 Ubuntu 软件源 从 Oracle 软件源 VirtualBox 软件包在 Ubuntu multiverse 软件源可用,但是可能不是最新的版本。 Oracle 软件源一直都包含最新发布的版本。 一、从 Ubuntu 软件源中安装 VirtualBox 从 Ubuntu 软件源中安装 VirtualBox 非常的简单直接。 以 root 或者其他有 sudo 权限的用户身份运行下面的命令,更新软件包索引,并且安装 VirtualBox 和 扩展增强包: sudo apt update sudo apt install virtualbox virtualbox-ext-pack 就这些! 你已经成功地在你的 Ubuntu 机器上安装好了 VirtualBox,你可以开始使用它了。 二、从 Oracle 软件源中安装 VirtualBox 在写这篇文章的时候,