求解如何安装虚拟机
Tofloor
poster avatar
dingpeng0111
deepin
2019-10-20 00:32
Author
小白一个,完全不懂Linux,想在安装一个虚拟机,不知道咋搞,求解.


Reply Favorite View the author
All Replies
avatar
走钢丝
deepin
2019-10-20 00:37
#1
系统环境是什么?
Reply View the author
avatar
dingpeng0111
deepin
2019-10-20 00:45
#2
https://bbs.deepin.org/post/183982
系统环境是什么?

刚买的的电脑,系统是Linux,完全不懂,哭了
Reply View the author
avatar
飘过的风
deepin
2019-10-20 00:51
#3
vmware那边下载个linux的包,后缀是  .bundle 的安装包(https://www.vmware.com/products/workstation-pro/workstation-pro-evaluation.html)然后上网查下 怎么安装.bundle的方法。貌似是   sudo chmod +x 包名           sudo ./包名
Reply View the author
avatar
走钢丝
deepin
2019-10-20 01:07
#4
https://bbs.deepin.org/post/183982
刚买的的电脑,系统是Linux,完全不懂,哭了

商店有 virtualbox 和 vmware,都可以用。。网上随便下个系统 ISO 即可安装。。
Reply View the author
avatar
小飞猪
deepin
2019-10-20 05:05
#5
本帖最后由 icooooo 于 2019-10-19 21:09 编辑

在Deepin商店中有virtualbox,现在的版本是6.0安装方法如下:一、首先同时按CTRL+ALT+T键,打开终端,执行如下命令更新源。

sudo apt-get update

二、使用如下命令安装virtualbox

sudo apt install virtualbox-6.0

三、使用如下命令安装扩展包

sudo apt install virtualbox-extension-pack

经过以上方法就可以安装virtualbox虚拟机,具体安装系统上百度搜一搜很容易找到。
Reply View the author
avatar
chinayang1985
deepin
2020-04-24 03:54
#6
https://bbs.deepin.org/post/183982
在Deepin商店中有virtualbox,现在的版本是6.0安装方法如下:一、首先同时按CTRL+ALT+T键,打开终端,执行 ...

chinayang@chinayang-PC:~$ sudo apt install virtualbox-extension-pack
正在读取软件包列表... 完成
正在分析软件包的依赖关系树      
正在读取状态信息... 完成      
E: 无法定位软件包 virtualbox-extension-pack
chinayang@chinayang-PC:~$ sudo apt install virtualbox-extension-pack
正在读取软件包列表... 完成
正在分析软件包的依赖关系树      
正在读取状态信息... 完成      
E: 无法定位软件包 virtualbox-extension-pack
Reply View the author
avatar
终南
deepin
2020-04-24 04:21
#7
虚拟机软件推荐VirtualBox,商店里可以直接下载,Windows系统的镜像文件推荐在https://msdn.itellyou.cn下载,剩下的就不多说了
Reply View the author
avatar
minchengan
deepin
2020-04-24 05:06
#8
在深度下面我是这样弄的,(KVM)

sudo apt-get install qemu qemu-kvm qemu-system bridge-utils virt-manager virt-viewer

启用桥接网络
   先备份一套原有配置:
sudo cp /etc/network/interfaces /etc/network/interfaces-bak

   对/etc/network/interfaces 配置文件进行更改:
sudo gedit /etc/network/interfaces
最后面加上:
# Enabing Bridge networking br0 interface
auto br0
iface br0 inet static
address 11.11.11.130
network 11.11.11.0
netmask 255.255.255.0
broadcast 11.11.11.255
gateway 11.11.11.1
dns-nameservers 11.11.11.1
bridge_ports eth0
bridge_stp off

   保存后退出,然后重启系统。

sudo reboot

启动KVM虚拟系统管理器

sudo virt-manager
Reply View the author