mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
 | 
						|
 | 
						|
  #
 | 
						|
  # Copyright (C) 2010 Cloud.com, Inc.  All rights reserved.
 | 
						|
  # 
 | 
						|
  # This software is licensed under the GNU General Public License v3 or later.
 | 
						|
  # 
 | 
						|
  # It is free software: you can redistribute it and/or modify
 | 
						|
  # it under the terms of the GNU General Public License as published by
 | 
						|
  # the Free Software Foundation, either version 3 of the License, or any later version.
 | 
						|
  # This program is distributed in the hope that it will be useful,
 | 
						|
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
  # GNU General Public License for more details.
 | 
						|
  # 
 | 
						|
  # You should have received a copy of the GNU General Public License
 | 
						|
  # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
						|
  #
 | 
						|
 
 | 
						|
 | 
						|
# BUILDING vhd-util on Linux
 | 
						|
# The xen repository has a tool called vhd-util that compiles and runs on any linux system 
 | 
						|
# (http://xenbits.xensource.com/xen-4.0-testing.hg?file/8e8dd38374e9/tools/blktap2/vhd/ or full Xen source at http://www.xen.org/products/xen_source.html).
 | 
						|
# Apply this patch: http://lists.xensource.com/archives/cgi-bin/mesg.cgi?a=xen-devel&i=006101cb22f6%242004dd40%24600e97c0%24%40zhuo%40cloudex.cn.
 | 
						|
# Build the vhd-util tool:
 | 
						|
#    cd tools/blktap2
 | 
						|
#    make
 | 
						|
#    sudo make install
 | 
						|
#
 | 
						|
 | 
						|
echo "Backing up systemvm.img"
 | 
						|
cp systemvm.img systemvm.img.tmp
 | 
						|
echo "Converting raw image to fixed vhd"
 | 
						|
vhd-util convert -s 0 -t 1 -i systemvm.img.tmp -o systemvm.vhd
 | 
						|
echo "Converting fixed vhd to dynamic vhd"
 | 
						|
vhd-util convert -s 1 -t 2 -i systemvm.vhd -o systemvm.vhd
 | 
						|
echo "Compressing..."
 | 
						|
bzip2 -c systemvm.vhd > systemvm.vhd.bz2
 | 
						|
echo "Done"
 |