= Welcome to [wiki:FGBI FGBI] Project = Traditional xen-based systems track memory updates by keeping evidence of the dirty pages at each migration epoch. For example, Remus uses the same page size as Xen (for x86, this is 4KB), which is also the granularity for detecting memory changes. [wiki:FGBI FGBI] (Fine-Grained Block Idenification) is a mechanism which uses smaller memory blocks (smaller than page sizes) as the granularity for detecting memory changes. [wiki:FGBI FGBI] calculates the hash value for each memory block at the beginning of each migration epoch. At the end of each epoch, instead of transferring the whole dirty page, [wiki:FGBI FGBI] computes new hash values for each block and compares them with the corresponding old values. Blocks are only modified if their corresponding hash values don’t match. Therefore, [wiki:FGBI FGBI] marks such blocks as dirty and replaces the old hash values with the new ones. Afterwards, [wiki:FGBI FGBI] only transfers dirty blocks to the backup host. [wiki:FGBI FGBI] is based on [http://nss.cs.ubc.ca/remus/ The Remus project] and our previous efforts Lightweight Live Migration ([wiki:LLM LLM]) mechanism. ''[wiki:teammember FGBI Team]'' == Understand [wiki:FGBI FGBI] == * [wiki:Architecture Architecture] -- The prototype architecture * [wiki:Support Support Techniques] -- Block sharing and hybrid compression support * [wiki:Framework Framework] -- FGBI execution flow * [wiki:Testbed Testbed] -- Experimental environment * [wiki:Evaluation Evaluation] -- Benchmark results on our testbed * [wiki:LLM LLM] -- Our previous effort * [wiki:Publications Documentation & Publications] * [http://xen.org/ The Xen Hypervisor] -- Xen Open Source Industry Standard For Virtualization * [http://nss.cs.ubc.ca/remus/ The Remus project] -- Remus Open Source Project == Use [wiki:FGBI FGBI] == * [http://www.centos.org/modules/tinycontent/index.php?id=15 Install the linux kernel] -- Currently we use CentOS, but other OS like Fedora is also fine. * [http://xen.org/products/downloads.html Download and install Xen Hypervisor] * [http://nss.cs.ubc.ca/remus/#download The Remus project] -- Skip this step if your Xen version is newer than 4.0.0 * [wiki:Source Check out source code] * [wiki:Patch Download Patch]