~graziano.obertelli/eucalyptus/lp683800

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: root
  • Date: 2010-01-31 21:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1138.
  • Revision ID: root@gibson-20100131215106-3bvidjuk4ybfpcto
updated some version numbers

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
Download either
22
22
 
23
 
 * eucalyptus-1.6.1-src.tar.gz (Eucalyptus source with included java
 
23
 * eucalyptus-1.6.2-src.tar.gz (Eucalyptus source with included java
24
24
   libraries)
25
25
 
26
26
or
27
27
 
28
 
 * eucalyptus-1.6.1-src-online.tar.gz (Eucalyptus source that will
 
28
 * eucalyptus-1.6.2-src-online.tar.gz (Eucalyptus source that will
29
29
   download java libraries at build-time)
30
30
 
31
31
and for both
32
32
 
33
 
 * eucalyptus-1.6.1-src-deps.tar.gz (Eucalyptus C library dependency
 
33
 * eucalyptus-1.6.2-src-deps.tar.gz (Eucalyptus C library dependency
34
34
   packages)
35
35
 
36
36
All packages can be found on the Eucalyptus Web site: 
40
40
Unpack the Eucalyptus source:
41
41
 
42
42
{{{
43
 
tar zvxf eucalyptus-1.6.1-src.tar.gz
 
43
tar zvxf eucalyptus-1.6.2-src.tar.gz
44
44
}}}
45
45
 
46
 
Now you should have a directory eucalyptus-1.6.1. To simplify the
 
46
Now you should have a directory eucalyptus-1.6.2. To simplify the
47
47
remainder of the installation, define EUCALYPTUS_SRC environment
48
48
variable to be the top of the source tree of eucalyptus and the
49
49
variable EUCALYPTUS to be the directory where eucalyptus will be
50
50
installed (we recommend using `/opt/eucalyptus/`):
51
51
 
52
52
{{{
53
 
cd eucalyptus-1.6.1
 
53
cd eucalyptus-1.6.2
54
54
export EUCALYPTUS_SRC=`pwd`
55
55
export EUCALYPTUS=/opt/eucalyptus
56
56
}}}
60
60
 
61
61
To install Eucalyptus, you need to build packages that Eucalyptus
62
62
depends on, which we provide in the above-mentioned package
63
 
eucalyptus-1.6.1-src-deps.tar.gz.  For the sake of this discussion, we
 
63
eucalyptus-1.6.2-src-deps.tar.gz.  For the sake of this discussion, we
64
64
are going to assume that all packages have been untarred inside
65
65
"$EUCALYPTUS_SRC/eucalyptus-src-deps/" as above and will be installed
66
66
in "$EUCALYPTUS/packages".
70
70
 
71
71
{{{
72
72
cd $EUCALYPTUS_SRC
73
 
tar zvxf ../eucalyptus-1.6.1-src-deps.tar.gz 
 
73
tar zvxf ../eucalyptus-1.6.2-src-deps.tar.gz 
74
74
mkdir -p $EUCALYPTUS/packages/
75
75
}}}
76
76