虫虫首页|资源下载|资源专辑|精品软件
登录|注册

VMware

VMware总部位于美国加州帕洛阿尔托(PaloAlto)[1-2],是全球云基础架构和移动商务解决方案厂商,提供基于VMware的解决方案,企业通过数据中心改造和公有云整合业务,借助企业安全转型维系客户信任[3],实现任意云端和设备上运行、管理、连接及保护任意应用。2018财年全年收入79.2亿美元[4]。
  • Turbo C 3.0 + UCOS2 + UCGUI PC学习版本

    Turbo C 3.0 + UCOS2 + UCGUI PC学习版本, 在csword网友的基础上改正了一个BGI的小问题,并 加入了IDE环境:Turbo C++ 3.0 带路径直接解压到到D:\根目录就能用, 解压后,请运行d:\myworks\tc\tc.exe 而后打开项目选择d:\myworks\tc\bin\ucgui\ucgui.prj 而后按Ctrl+F9下运行即可。 注意运行后在WinXP全屏下会没有响应, 建议在VMware下或纯DOS环境运行。

    标签: Turbo UCOS2 UCGUI 3.0

    上传时间: 2014-01-24

    上传用户:shanml

  • 虚拟机使用指南

    虚拟机使用指南,详细介绍了VMware的使用,实现一机多系统,并且可以实现单机组网试验!

    标签: 虚拟机 使用指南

    上传时间: 2015-09-18

    上传用户:Zxcvbnm

  • VirtualBox-OSE-1.3.8,开源项目

    VirtualBox-OSE-1.3.8,开源项目,比VMware还快的虚拟机,丝毫不逊色于它。GNU GPL V2。可以迅速还原到莫个系统状态。可以在里面学习病毒技术,操作系统等。(文件其实是.tar.bz2的,gz重压费力又不太省空间)。

    标签: VirtualBox-OSE 开源 项目

    上传时间: 2015-09-19

    上传用户:1583060504

  • 很详细的自己的文档

    很详细的自己的文档,介绍如何在VMware和redhat9下,安装qtopia2.1.1。每一步都很详细,都有抓屏图像供参考,一定帮你成功

    标签: 文档

    上传时间: 2014-11-26

    上传用户:jyycc

  • 视频教程

    视频教程,不用多说了,一看就会了 开发环境搭建XP+VMware+Redhat9.0安装教程

    标签: 视频教程

    上传时间: 2013-12-10

    上传用户:牛布牛

  • 本人做的从虚拟机的硬盘直接启动vxworks

    本人做的从虚拟机的硬盘直接启动vxworks,直接用VMware打开,启动时先用手动启动,回车用p命令查看参数,然后修改主机参数。后面就不用再说了...

    标签: vxworks 虚拟机 硬盘

    上传时间: 2017-04-07

    上传用户:dianxin61

  • This is a simple operating system source code in assembly langauge, you should compile the files in

    This is a simple operating system source code in assembly langauge, you should compile the files in the rar with MASM, and put them in one image (kernel follows loader) and test it with VMware.

    标签: operating assembly langauge compile

    上传时间: 2013-12-17

    上传用户:源弋弋

  • VxWorks pc-net网卡驱动

    用于在VMware虚拟机上搭建VxWorks开发环境的AMD网卡驱动的替换。

    标签: VxWorks VMware AMD pc-net

    上传时间: 2015-03-29

    上传用户:缱绻abc

  • redis命令

    Redis是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value数据库,并提供多种语言的API。从2010年3月15日起,Redis的开发工作由VMware主持。从2013年5月开始,Redis的开发由Pivotal赞助。

    标签: redis

    上传时间: 2015-04-28

    上传用户:wcl623861487

  • linux

    简单命令使用grep等的使用 [zorro@isch ~]$ history     1  ifconfig     2  su     3  exit     4  ls     5  cd Desktop/     6  ls     7  tar zxcf VMwareTools-8.4.5-324285.tar.gz      8  tar zxvf VMwareTools-8.4.5-324285.tar.gz      9  cd  VMware-tools-distrib/    10  ls    11  ./VMware-install.pl     12  su    13  ls    14  cd ..    15  ls    16  rm VMwareTools-8.4.5-324285.tar.gz     17  rm -r VMware-tools-distrib    18  ls    19  make    20  ls    21  cd redis/    22  quit    23  ls    24  ca redis/    25  cd redis/    26  cd redis-2.8.17    27  make    28  cd redis-2.8.17    29  ls    30  cd redis-2.8.17    31  cd str    32  cd src    33  ls    34  ./redis-cli    35  ls    36  cd redis-2.8.17 tar.gz    37  make    38  cd src    39  ./redis-server .. /redis.conf    40  ./redis-cli    41  ./redis-server ../redis.conf    42  vi test1.sh    43  ./test1.sh    44  vi test.sh    45  ./test.sh    46  ls    47  chmod 777 test.sh    48  ./test.sh    49  vi express    50  $ grep –n ‘the’ express    51  clear    52  grep -n 'the' express    53  vi express    54  grep -n 'the' express    55  grep -vn 'the'express    56  grep -vn 'the' express    57  grep -in 'the' express    58  vi test2.c    59  grep -l 'the' *.c     60  grep -n 't[ae]st' express    61  grep -n 'oo' express    62  grep -n '[^g]oo' express    63  grep -n '[a^z]oo' express    64  grep -n '[0^9]' express    65  grep -n '^the' express    66  vi express    67  sed -e 'd' express    68  sed -e '1d' express    69  sed -e '1~7d' express    70  sed -e '$d' express     71  sed -e '1,/^$/d' express     72  ls    73  cd    74  pwd    75  history [zorro@isch ~]$ 

    标签: 简单命令使用

    上传时间: 2016-05-24

    上传用户:12345678gan