Questions tagged [virtualization]
The virtualization tag has no summary.
39 questions
0votes
3answers
255views
How is network virtualization useful?
I am trying to understand various virtualization techniques, and I am struggling to wrap my head around the concept of Network Virtualization. In case of the server virtualization, the objective is ...
0votes
2answers
178views
How does storage virtualization help?
I am trying to understand various types of virtualization techniques. The concept of Hardware virtualization/Virtual machine was simple enough. However, I am struggling to understand the concept of ...
0votes
2answers
139views
cloud storage vs storage virtualization?
I am trying to understand the concept of storage virtualization. Based on what I have read, storage virtualization appears to be synonymous with cloud storage. Based on my understanding, Amazon S3 is ...
-2votes
1answer
869views
bare-metal server vs cloud server vs on-prem server?
I am trying to understand the difference between bare-metal servers and cloud servers. I am referring to the following document,blog. I understand that Amazon EC2(which is all the rage) is an example ...
3votes
0answers
78views
Confused about how to test Python scripts that install and configure a development setup on OSX (VMware? Docker-OSX?)
In my company we hire engineers for various "disciplines"—iOS, Android, Web, Backend, Data, etc. Engineers follow an onboarding workbook to install what they need for their discipline. iOS ...
-1votes
2answers
132views
Are there any advantages to using dockerfile dependencies over virtual environment for Python apps?
I am currently working solo on a very small simple python microservice. I started building this app, mostly by habit, in a virtual environment. As I started to get closer to the point where deployment ...
0votes
0answers
257views
How to virtualize a DLL without creating an executable entry point?
In a project, I need to come up with a way to virtualize a third-party DLL with a known exported function prototype. I need to create something like this: My app <---> wrapper DLL <---> ...
4votes
4answers
2kviews
What is the difference between the terms 'Virtual' and 'Logical'?
What do people mean when they say 'Logical' in terms like Logical separation, Logical partition, Logical grouping etc. in software ? I know what 'Virtual' means, it means something that does not ...
-3votes
1answer
210views
Is there any reason I shouldn't use a LInux host for a Linux guest VM?
I'm a developer and my typical environment is to use is a Linux guest OS running inside VirtualBox on a Windows host. Most software companies don't allow developers to install Linux bare metal on ...
1vote
1answer
177views
Should I deploy redundant SQL database servers in a cloud environment?
As a System Architect I need to deploy a resillient database server in an isolated private cloud. The cloud is OpenStack with Ceph backend and the Database is SQL. Is a single database server VM with ...
8votes
1answer
267views
To show the difference between system VMs and JVMs
I am trying to draw diagrams that show the difference between system virtual machines and Java virtual machines. The first two images looks correct to me. But I don't know how to draw the third. ...
2votes
1answer
201views
Docker and GPU-based computations. Feasible? [closed]
Recently I ran against this question and this Nvidia-docker project, which is an Nvidia Docker implementation and it made me wondering where, why and how this scheme makes sense? I found out some ...
1vote
1answer
4kviews
What's the difference between block-level virtualization and file-level virtualization?
In cloud computing these two terms really confuses me, block-level virtualization and file-level virtualization . As of my knowledge, in file-level virtualization compute systems are not allocated ...
3votes
0answers
85views
One vagrant file (/var/www/VagrantFile) for multiple apps
I manage multiple apps in my dev: /var/www/ qa jt auth We have a QA vagrant which runs QA app in its own vagrant. My understanding was that each app would run its own VM but this would ...
4votes
2answers
929views
Is ART an installation process? Or an OS? Or a virtual Machine?
When attempting to understand Android Runtime, I came across the wikipedia page. The graphic shown there adds to my confusion. If .dex is getting converted entirely to ELF, why is ART needed anymore? ...