博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
How to install VMWare Tools for FreeBSD on ESXi...
阅读量:5743 次
发布时间:2019-06-18

本文共 1160 字,大约阅读时间需要 3 分钟。

hot3.png

Notes on installing VMWare Tools for FreeBSD on ESXi 4.1 
Quick explanation: FreeBSD is not officially supported platform hence why the OS is listed as 'other' when creating a new Virtual Machine. However, the tools are contained withing the ESXi distribution, and here are the steps to install them. 
1. Power on the virtual machine. 
2. Select "Connect/disconnect the CD/DVD devices of the virtual machine" -> "Connect to ISO image on a datastore" (Select disconnect if was previously connect to a different ISO) -> Select "vmimages" -> "vmtools" -> "freebsd.iso" 
3. Launch "Virtual Machine Console" or establish a SSH connection to client, and login as user "root". 
4. Mount the CD/DVD device: #mount /cdrom 
5. Extract the VMWare tools: #cd /tmp && tar xzvf /cdrom/vmware-freebsd-tools.tar.gz && rm vmware-freebsd-tools.tar.gz 
6. If the compat6x libraries were not previously installed, install them: #cd /usr/ports/misc/compat6x && make install distclean 
7. Run VMWare Tools installer: #cd /tmp/vmware-tools-distrib && ./vmware-install.pl 
8. Finally, #echo 'ifconfig_vxn0="DHCP"' >> /etc/rc.conf && /etc/netstart 

转载于:https://my.oschina.net/u/187928/blog/34539

你可能感兴趣的文章
设计模式 ( 十八 ):State状态模式 -- 行为型
查看>>
OracleLinux安装说明
查看>>
nova分析(7)—— nova-scheduler
查看>>
Entity Framework 实体框架的形成之旅--Code First模式中使用 Fluent API 配置(6)
查看>>
OpenMediaVault 搭建git,ssh无法连接问题
查看>>
java多线程之:Java中的ReentrantLock和synchronized两种锁定机制的对比 (转载)
查看>>
mysql性能优化学习笔记-参数介绍及优化建议
查看>>
【Web动画】SVG 实现复杂线条动画
查看>>
使用Wireshark捕捉USB通信数据
查看>>
iOS - KVC 键值编码
查看>>
《树莓派渗透测试实战》——1.1 购买树莓派
查看>>
Apache Storm 官方文档 —— FAQ
查看>>
iOS 高性能异构滚动视图构建方案 —— LazyScrollView
查看>>
Java 重载、重写、构造函数详解
查看>>
【Best Practice】基于阿里云数加·StreamCompute快速构建网站日志实时分析大屏
查看>>
【云栖大会】探索商业升级之路
查看>>
HybridDB实例新购指南
查看>>
C语言及程序设计提高例程-35 使用指针操作二维数组
查看>>
华大基因BGI Online的云计算实践
查看>>
深入理解自定义Annotation,实现ButterKnif小原理
查看>>