自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

新线科技的官方博客

In Cloud We Trust

  • 博客(24)
  • 收藏
  • 关注

原创 DRBD安装详细过程

<br />DRBD(Distributed Replicated Block Device),分布式复制块设备,是一种通过TCP/IP网络实现块设备数据实时镜像的方案<br /> <br />linux version: 2.6.9-5.EL<br />drbd version:  drbd-8.3.1.tar.gz<br />     下载地址: http://oss.linbit.com/drbd/<br />主机 <br />  主机名:iptx1<br />      IP:172

2011-01-25 14:41:00 4878 3

原创 ssh 登录时 ip 不能 map back 的修改

<br />例如:远端192.168.1.199  本地192.168.1.10<br />ssh 192.168.1.199<br />出现下列提示:<br />Address 192.168.1.199 maps to localhost, but this does not map back to the address – POSSIBLE BREAKIN ATTEMPT!<br />修改方案<br /><br />修改192.168.1.10上 /etc/ssh/ssh_config<br />

2011-01-25 14:40:00 1440

原创 PXELINUX的执行过程之2

<br />现在看看pxelinux.cfg下配置文件default 那么就知道是如何继续引导的了,首先被执行的是mboot.c32,然后是xen,接下来xen的dom0中引导一个linux系统<br />mboot.c32<br />mboot.c32 is a 32-bit comboot module that allows SYSLINUX and its variants to load and boot kernels that use the Multiboot standard (e.g

2011-01-25 14:37:00 1310

原创 PXELINUX的执行过程之3

<br />我们实际环境的配置文件如下:<br />C0A864FD<br />DEFAULT mboot.c32 xen.gz com1=115200,8n1 dom0_mem=max:2G console_to_ring --- vmlinuz selinux=0 ip=::192.168.100.1::::dhcp xencons=ttyS8 console=tty0 console=ttyS8 halt_action=reboot nodeCfg=http://192.168.1

2011-01-25 14:37:00 1156

原创 PXELINUX的执行过程之1

<br />通过PXE方式引导的服务器从网卡引导的第一步是获取一个ip地址,并获得nextserver 和pxelinux.0这个引导程序,pxelinux.0会以下列的方式寻找他的配置文件PXELINUX operates in many ways like SYSLINUX. If you are not familiar with SYSLINUX, read the SYSLINUX FAQ first, since this documentation only explains th

2011-01-25 14:36:00 2167

原创 OpenStack 又一个开源的云平台

The open source, open standards cloud.Open source software to build private and public clouds.<br /><br />http://www.openstack.org/

2011-01-25 14:35:00 1295

转载 什么是 CPU 的 stepping

<br />No processor design is perfect. The first version of a new microprocessor product is the A-0 step. Later, as improvements are made to the product for functional (bug) fixes or manufacturing improvements, the stepping number will increase.<br

2011-01-25 14:31:00 3314

转载 虚拟化 Hypervisors 的分类

<br /> Type 1 and Type 2 Hypervisors<br /> From: http://virtualizationreview.com/blogs/everyday-virtualization/2009/06/type-1-and-type-2-hypervisors-explained.aspx<br /><br />In a recent discussion, the topic of Type 1 and Type 2 hypervisors came up.

2011-01-25 14:28:00 1448

原创 Xen动态迁移的内存热拷贝技术

<br />Xen的Live Migration可以使得一个虚拟机在不停止服务的情况下从一台服务器迁移到另一台服务器上,该功能的好处不言而喻。<br />当然Live Migration的执行过程很复杂,这里,我们研究一下内存是如何迁移到另一台服务器上的,实际上这相当于在不同的物理机器之间进行进程上下文的切换,这是该“Migration”被誉为“Live”的核心。<br />说起来也相当简单,那就是内存热拷贝,见下图:<br /><br /> <br />(1)源主机中内存的使用情况<br />(2)将

2011-01-25 14:26:00 1595

原创 Oracle VM Architecture

Oracle VM 的体系结构图

2011-01-25 14:23:00 1103

转载 VHD tool

<br />Introduction <br />VHD tool is an unmanaged code command-line tool which provides useful VHD manipulation functions including instant creation of large fixed-size VHDs. The source code is included. <br /><br />Requirements <br />A computer

2011-01-25 14:20:00 1973

转载 云计算七问七答

<br /> InfoQ上吕维德先生的一篇好文章“云计算”这个单词似乎已无所不在泛滥成灾,也让我一时兴起想了解一下到底现在大家口中所谓的“云计算”是在指什么?<br />http://www.infoq.com/cn/articles/questions-about-cloud-computing

2011-01-25 13:59:00 536

原创 Xen 虚拟机live migration的一种解决方案

<br />基于Xen虚拟机技术的虚拟集群要想实现HA必须具备共享存储,基于共享存储才能实现live migration,此方案是通过DRBD, GNBD and OCFS2 在两个节点机之间实一种存储的共享,从而实现一种廉价的HA方案。<br />去年,在工作中也曾想过这种解决方案,但是由于种种原因最终没有得偿所愿,没想到今天在sourceforge上看到这个实现,记录一下,方便将来查阅。<br />相关资料请参考:http://xenamo.sourceforge.net/

2011-01-25 13:58:00 646

原创 OpenXenCenter:思杰XenCenter的开源实现

Xen Center是思杰开发的对Xen Server的管理工具,OpenXenCenter是它的开源实现。OpenXenCenter is a open source clone of Citrix's XenServer XenCenter. OpenXenCenter is written in python with pygtk and a modified version of gtk-vnc. You can monitor your virtual machines, access v

2011-01-25 13:57:00 2393

原创 分布式计算与虚拟化

<br />《云计算七问七答》的作者的观点:“这要看你怎么定义云这个字,以我而言,我倾向认为MapReduce与分布式文件系统是云计算的主要特色,因此在这个定义之上,EC2并不符合首要条件。”<br />从通俗的角度讲,虚拟化是将物理计算资源拆分为更小的计算资源来使用(单个虚拟机的计算能力不能突破其宿主物理服务器的计算能力),而Hadoop是将多个物理计算资源整合到一起使用。所以虽然两家都说自己是“云计算”,其实技术角度上来说是相反的。<br />那么到底Hadoop/GAE是云计算的方向?还是虚拟化是云计

2011-01-25 13:56:00 855

原创 Online Office, More then Office

<br />云计算之SAAS(软件即服务)的典型代表,提供了全方位的在线商务办公解决方案,并且完全同现在主流程序兼容,可以直接导入现在主流办公系统的各种文件,同时还可以管理计划、客户,甚至你无需懂编程也可以创建网站应用程序。<br />http://www.zoho.com/index.html

2011-01-25 13:56:00 539

转载 云:虚拟之上的管理平台

<br />未来虚拟化市场上的较量将会是更高层次的虚拟化管理系统的较量,而不是虚拟技术本身。<br />云就是一个管理平台,只不过是用虚拟化来实现的一个管理平台。<br />http://www.cioinsight.com.cn/html/sy/2009/06/1755.html

2011-01-25 13:55:00 524

原创 Xen还是KVM

<br />对于企业级应用来说,服务器虚拟化是必经之路,但是选择Xen还是KVM,对他们来说,是一个值得思考的选择。<br />Xen比KVM优越的六大原因:可用资源多、平台支持多、可管理性强、实施容易、动态迁移、性能高<br />KVM在Linux整合中优于Xen。<br />文章地址:http://www.searchvirtual.com.cn/showcontent.aspx?aid=33947<br />文章地址:http://www.cnw.com.cn/weekly/htm2008/20080

2011-01-25 13:54:00 576

原创 Xen Cloud Platform 1.0 发布了

新特性:<br />Xen Hypervisor 4.0.0 XCI 1.0 Xen Cloud Platform 1.0

2011-01-25 13:53:00 784

转载 The NIST Definition of Cloud Computing

The NIST Definition of Cloud Computing<br />Authors: Peter Mell and Tim Grance<br />Version 15, 10-7-09<br /> <br />National Institute of Standards and Technology, Information Technology Laboratory<br /> <br />Note 1: Cloud computing is still an evolving

2011-01-25 13:53:00 1212

转载 Xen 和 KVM的比较,那个更好呢?

Stephen Spector的文章。How does Xen compare to KVM? Which one is better?At Xen Summit last week, several community members and I discussed the issues around the recent launch of RHEL without Xen and its implications for Xen and the Xen.org community.

2011-01-25 13:52:00 1582

转载 AWS 的云计算进军移动市场的第一步

New AWS SDKs for Mobile Development (Android and iOS)<br />We want to make it easier for developers to build AWS applications on mobile devices. Today we are introducing new SDKs for AWS Development on devices that run the Google's Android and Apple's

2011-01-25 13:50:00 449

原创 甲骨文推Cloud Office 挑战微软和Google

<br />12月16日,甲骨文公布了Cloud Office 1.0网络办公套件,在网络应用领域同微软和Google竞争。<br />Cloud Office与甲骨文之前的Open Office进行整合。<br />同时,甲骨文还公布了Open Office 3.3版本。

2011-01-25 13:49:00 535

原创 Office Web Apps 将 Office 体验扩展到 Web 上

又看到云计算Saas的进步!<br />对于使用linux系统的我来说希望能够不用虚拟机或wine运行office2007就可以解决docx的问题了。<br /><br />无论您在办公室、家中还是路上,通过 Microsoft Office Web Apps 几乎可以随时随地完成更多工作。通过这些与 Microsoft Word、Excel、PowerPoint 和 OneNote 配套的便捷联机产品,您可以直接从 Web 浏览器轻松访问、查看和编辑文档。1<br />了解 Office

2011-01-25 13:48:00 489

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除