VirtualBox最早是德国一家软件公司InnoTek所开发的虚拟系统软件,后来被Sun收购,改名为Sun VirtualBox,在Sun被Oracle收购后现改名为Oracle VirtualBox。因为他是开源的,不同于VM,而且功能强大,可以在Linux/Mac和Windows主机中运行,并支持在其中安装Win
VirtualBox最早是德国一家软件公司InnoTek所开发的虚拟系统软件,后来被Sun收购,改名为Sun VirtualBox,在Sun被Oracle收购后现改名为Oracle VirtualBox。因为他是开源的,不同于VM,而且功能强大,可以在Linux/Mac和Windows主机中运行,并支持在其中安装Windows(NT 4.0、2000、XP、Server 2003、Vista)、DOS/Windows 3.x、Linux (2.4 和 2.6)、OpenBSD 等系列的客户操作系统。假如你曾经有用过虚拟机软件的经历的话,相信使用VirtualBox不在话下。即便你是一个新手,也没有关系。VirtualBox 提供了详细的文档,可以助你在短期内入门。
Changes in VirtualBox 3.2.12 (2010-11-30):
* VMM: fixed rare host crash when running 64-bit guests on 32-bit hosts (bug #7577)
* VMM: fixed host reboots under rare circumstances due to NMIs triggered by active performance counters (Linux hosts in non-VT-x/AMD-V mode only; bug #4529)
* VMM: fixed out of memory guru meditation for large memory guests (bug #7586)
* VMM: fixed a guru meditation related to large pages
* VMM: use new VT-x feature to keep the guest from hogging the CPU
* Snapshots: implemented deleting the last remaining snapshot while the VM is running
* GUI: perform the checks for exceeding the size limit of the host file system and for broken asynchronous I/O on older Linux kernels with ext4 / xfs file systems not only when starting the VM from scratch but also when starting from a saved state
* NAT: fixed memory leak (3.2.0 regression; bugs #6918, #7353)
* Networking: fixed VM reset handling in e1000
* VRDP: fixed rare crash in multimonitor configuration
* Display: fixed occasional guest resize crash
* Mouse: don't send relative mouse events together with absolute mouse events (3.2.10 regression; bug #7571)
* Keyboard: fixes for the USB keyboard emulation; fixes for Koran keyboards
* Serial: don't hang if the host device would block during open (bugs #5756, #5380)
* Serial: fixed modem status lines (Linux hosts only; bug #812)
* Graphics: Horizontal resolutions are no longer restricted to a multiple of 8 pixels (bug #2047; requires Guest Additions update).
* USB: fixed a crash with older Linux kernels and non-ASCII characters in device strings (Linux hosts only; bug #6983, #7158, #7733; version 3.2.8 contained an incomplete fix)
* USB: fixed a crash under rare circumstances (bug #7409; Windows hosts only)
* iSCSI: respond to NOP-In requests from the target immediately to avoid being disconnected if the guest is idle
* 3D support: fixed a crash under certain circumstances (bug #7659)
* 3D support: fixed crashes for GLUT based apps (bug #6848)
* 3D support: added missing GLX 1.3 functionality (bugs #7652, #7195)
* 2D Video acceleration: fixed potential deadlock when saving the VM state (bug #4124)
* Windows hosts: another fix for BSODs under certain circumstances in VBoxNetFlt.sys (bug #7601)
* Solaris hosts: fixed host USB DVD drive detection
* Mac OS X hosts: fixed swapped keys for certain ISO keyboard types (bug #2996)
* Linux hosts: added link state handling for TAP devices needed for proper operation with bridged networking on kernels 2.6.36 and above (bug #7649)
* Linux hosts/guests: Linux 2.6.37 fixes
* Linux Additions: properly compile the vboxvideo module if DKMS is not installed (bug #7572)
* Linux Additions: fixed a memory leak when accessing non-existing files on a Shared Folders (bug #7705)
* Windows Additions: skip none-mapped user accounts when enumerating user accounts for VM information
下载:VirtualBox
http://cnbeta.com/articles/128571.htm

MySQL在数据库和编程中的地位非常重要,它是一个开源的关系型数据库管理系统,广泛应用于各种应用场景。1)MySQL提供高效的数据存储、组织和检索功能,支持Web、移动和企业级系统。2)它使用客户端-服务器架构,支持多种存储引擎和索引优化。3)基本用法包括创建表和插入数据,高级用法涉及多表JOIN和复杂查询。4)常见问题如SQL语法错误和性能问题可以通过EXPLAIN命令和慢查询日志调试。5)性能优化方法包括合理使用索引、优化查询和使用缓存,最佳实践包括使用事务和PreparedStatemen

MySQL适合小型和大型企业。1)小型企业可使用MySQL进行基本数据管理,如存储客户信息。2)大型企业可利用MySQL处理海量数据和复杂业务逻辑,优化查询性能和事务处理。

InnoDB通过Next-KeyLocking机制有效防止幻读。1)Next-KeyLocking结合行锁和间隙锁,锁定记录及其间隙,防止新记录插入。2)在实际应用中,通过优化查询和调整隔离级别,可以减少锁竞争,提高并发性能。

MySQL不是一门编程语言,但其查询语言SQL具备编程语言的特性:1.SQL支持条件判断、循环和变量操作;2.通过存储过程、触发器和函数,用户可以在数据库中执行复杂逻辑操作。

MySQL是一种开源的关系型数据库管理系统,主要用于快速、可靠地存储和检索数据。其工作原理包括客户端请求、查询解析、执行查询和返回结果。使用示例包括创建表、插入和查询数据,以及高级功能如JOIN操作。常见错误涉及SQL语法、数据类型和权限问题,优化建议包括使用索引、优化查询和分表分区。

MySQL是一个开源的关系型数据库管理系统,适用于数据存储、管理、查询和安全。1.它支持多种操作系统,广泛应用于Web应用等领域。2.通过客户端-服务器架构和不同存储引擎,MySQL高效处理数据。3.基本用法包括创建数据库和表,插入、查询和更新数据。4.高级用法涉及复杂查询和存储过程。5.常见错误可通过EXPLAIN语句调试。6.性能优化包括合理使用索引和优化查询语句。

选择MySQL的原因是其性能、可靠性、易用性和社区支持。1.MySQL提供高效的数据存储和检索功能,支持多种数据类型和高级查询操作。2.采用客户端-服务器架构和多种存储引擎,支持事务和查询优化。3.易于使用,支持多种操作系统和编程语言。4.拥有强大的社区支持,提供丰富的资源和解决方案。

InnoDB的锁机制包括共享锁、排他锁、意向锁、记录锁、间隙锁和下一个键锁。1.共享锁允许事务读取数据而不阻止其他事务读取。2.排他锁阻止其他事务读取和修改数据。3.意向锁优化锁效率。4.记录锁锁定索引记录。5.间隙锁锁定索引记录间隙。6.下一个键锁是记录锁和间隙锁的组合,确保数据一致性。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

mPDF
mPDF是一个PHP库,可以从UTF-8编码的HTML生成PDF文件。原作者Ian Back编写mPDF以从他的网站上“即时”输出PDF文件,并处理不同的语言。与原始脚本如HTML2FPDF相比,它的速度较慢,并且在使用Unicode字体时生成的文件较大,但支持CSS样式等,并进行了大量增强。支持几乎所有语言,包括RTL(阿拉伯语和希伯来语)和CJK(中日韩)。支持嵌套的块级元素(如P、DIV),

SecLists
SecLists是最终安全测试人员的伙伴。它是一个包含各种类型列表的集合,这些列表在安全评估过程中经常使用,都在一个地方。SecLists通过方便地提供安全测试人员可能需要的所有列表,帮助提高安全测试的效率和生产力。列表类型包括用户名、密码、URL、模糊测试有效载荷、敏感数据模式、Web shell等等。测试人员只需将此存储库拉到新的测试机上,他就可以访问到所需的每种类型的列表。

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

SublimeText3 Linux新版
SublimeText3 Linux最新版

Dreamweaver Mac版
视觉化网页开发工具