Centos7安装xenserver tools
mount /dev/cdrom /mnt
[root@192 ~]# mount /dev/cdrom /mnt
mount: /dev/sr0 写保护,将以只读方式挂载
[root@192 ~]# cd /mnt
[root@192 mnt]# ll
总用量 62094
-r--r--r--. 1 root root 66 8月 24 16:03 AUTORUN.INF
-r--r--r--. 1 root root 31 8月 24 16:03 copyright.txt
-r--r--r--. 1 root root 50449456 8月 24 16:03 dotNetFx40_Full_x86_x64.exe
-r--r--r--. 1 root root 29717 8月 24 16:03 EULA
dr-xr-xr-x. 2 root root 4096 8月 24 16:03 Linux
-r--r--r--. 1 root root 5586944 8月 24 16:03 managementagentx64.msi
-r--r--r--. 1 root root 5554176 8月 24 16:03 managementagentx86.msi
-r--r--r--. 1 root root 1184 8月 24 16:03 README.txt
-r--r--r--. 1 root root 148808 8月 24 16:03 Setup.exe
-r--r--r--. 1 root root 1665495 8月 24 16:03 xenlegacy.exe
-r--r--r--. 1 root root 141497 8月 24 16:03 xluninstallerfix.exe
[root@192 mnt]# cd Linux/
[root@192 Linux]# ll
总用量 7181
-r-xr-xr-x. 1 root root 16746 8月 24 16:03 install.sh
-r--r--r--. 1 root root 146 3月 22 2018 versions.deb
-r--r--r--. 1 root root 242 3月 22 2018 versions.rpm
-r--r--r--. 1 root root 143 3月 22 2018 versions.tgz
-r-xr-xr-x. 1 root root 1492864 8月 24 16:03 xe-daemon
-r--r--r--. 1 root root 1163555 3月 22 2018 xe-guest-utilities_7.10.0-1_all.tgz
-r--r--r--. 1 root root 1161424 3月 22 2018 xe-guest-utilities_7.10.0-1_amd64.deb
-r--r--r--. 1 root root 1161422 3月 22 2018 xe-guest-utilities_7.10.0-1_i386.deb
-r--r--r--. 1 root root 652367 3月 22 2018 xe-guest-utilities-7.10.0-1.i386.rpm
-r--r--r--. 1 root root 652325 3月 22 2018 xe-guest-utilities-7.10.0-1.x86_64.rpm
-r--r--r--. 1 root root 516858 3月 22 2018 xe-guest-utilities-xenstore-7.10.0-1.i386.rpm
-r--r--r--. 1 root root 516818 3月 22 2018 xe-guest-utilities-xenstore-7.10.0-1.x86_64.rpm
-r-xr-xr-x. 1 root root 13525 8月 24 16:03 xe-linux-distribution
-r--r--r--. 1 root root 209 8月 24 16:03 xe-linux-distribution.service
-r--r--r--. 1 root root 114 8月 24 16:03 xen-vcpu-hotplug.rules
[root@192 Linux]# ./install.sh
Detected `CentOS Linux release 7.5.1804 (Core) ' (centos version 7).
The following changes will be made to this Virtual Machine:
* update arp_notify sysctl.
* packages to be installed/upgraded:
- xe-guest-utilities-7.10.0-1.x86_64.rpm
- xe-guest-utilities-xenstore-7.10.0-1.x86_64.rpm
Continue? [y/n] y
准备中... ################################# [100%]
正在升级/安装...
1:xe-guest-utilities-xenstore-7.10.################################# [ 50%]
2:xe-guest-utilities-7.10.0-1 ################################# [100%]
You should now reboot this Virtual Machine.
[root@192 Linux]#umount /mnt
Centos7安装xenserver tools的更多相关文章
- CentOS7安装VMware Tools
安装依赖包 [root@localhost ~]# yum -y install perl gcc gcc-c++ make cmake kernel kernel-headers kernel-de ...
- VMware下centos7安装VMware Tools
右键虚拟机设置,找到CD/DVD,选择使用ISO映像文件,在VMware安装目录下找到linux.iso. 挂载iso文件 > mount -t auto /dev/cdrom /mnt/c ...
- centos7 安装VMware Tools 遇到的一系列问题的解决方案
先部署源:http://www.cnblogs.com/jiu0821/p/8074463.html VMware Tools安装方法参考:http://www.cnblogs.com/jiu0821 ...
- centos7 安装 Spring Tools 4 for Eclipse
1.spring 官网下载 https://spring.io/tools 2.解压 tar -zxvf spring-tool-suite--.RELEASE-e4.11.0-linux.gtk.x ...
- centos7 安装VMware tools 出现The path "" is not a valid path to the 3.10.0-514.el7.x86_64 kernel headers
执行:yum install "kernel-devel-uname-r == $(uname -r)"
- CentOS7.1 安装VMware Tools
虚拟机——安装VMware Tools(Install VMware Tools),这时我们会在CentOS7系统桌面上发现VMware Tools的光盘图标. 双击这个图标,会发现VMwareToo ...
- XenServer Tools安装
右键Linux虚拟机,选择 Install XenServer Tools XenCenter 切换到 Console界面 执行如下命令安装: # mount /dev/xvdd /mnt # /mn ...
- CentOS7虚拟机安装VMware Tools
1.在VMware中点击安装VMware Tools 2.挂载光驱 mount /dev/cdrom /mnt 3.拷贝解压,注意是大小写敏感的,如果不知道文件名可以用ls查看. [root@loca ...
- Centos7 下安装VMware tools
1:先在虚拟机点击安装VMware Tools 2:然后挂载 mount /dev/cdrom /mnt 3:进入/mnt,可以看到有 4:拷贝VMwareTools到其他 ...
随机推荐
- Python记录10:模块
''' 1. 什么是模块 模块就一系列功能的集合体 模块有三种来源: 1. 内置的模块 2. 第三方的模块:pip install +模块名称 ...
- word之常用功能
0.word区域:标题栏.快速访问工具栏.功能区.功能按钮.导航窗口.编辑区.水平垂直滑动条.状态栏 1.更改office主题.文件---帐户---office主题.(传统白色.浅灰色.深灰色) 2. ...
- DX9 DirectX 索引缓存(IndexBuffer) 代码
// @time: 2012.3.22 // @author: jadeshu // des: 索引缓存 //包含头文件 #include <Windows.h> #include < ...
- 221. Maximal Square(动态规划)
Given a 2D binary matrix filled with 0's and 1's, find the largest square containing only 1's and re ...
- 使用CI遇到的问题报错:Call to undefined function base_url()
问题来源:在HTML文件中使用base_url()函数引入CSS文件时,发现报错:Call to undefined function base_url() 研究了一下才知道是因为没有加载url小助手 ...
- Access restriction: The type 'Unsafe' is not API
错误:Access restriction: The type 'Unsafe' is not API Eclipse中有一种叫做存取限制的机制,来防止你错误使用那些非共享的API.通常来说,Ecli ...
- 模块 import 与from
什么是模块:就是一系列功能的集合体 模块的来源 :1内置模块 2 第三方模块 3 自定义模块 模块的格式: 1 使用python编写的.py文件 2 已被编译为共享库或DLL的C或C++扩展 ...
- Docker Compose 介绍安装
Compose介绍 Compose是一个定义和管理多容器的工具,也是一种容器编排工具,前身是Pig,使用Python语言编写.使用Compose配置文件描述多个容器应用的架构,biubiu使用什么镜像 ...
- SQLServer 对已有数据表添加自增主键
最近在做老表的数据整理,发现有的表没有主键标识,.NET Core 无法一键生成模型,需要带有主键的表才可以,所以需要针对已有数据添加主键,这是我找到的两种方式. 1. 主键为int 或者bigint ...
- Linux Sphinx 安装与使用
一.什么是 Sphinx? Sphinx 是一个基于SQL的全文检索引擎,可以结合 MySQL,PostgreSQL 做全文搜索,它可以提供比数据库本身更专业的搜索功能,使得应用程序 更容易实现专业化 ...