|
|
|
|
|
|
|
|
|
|
xen-users
Re: [Xen-users] xen 3.2.0 problems with DomU freezing... ubuntu 7.10
add this to your domU config and your console will work:
extra='TERM=xterm xencons=tty console=tty1'
remember: default bridge is now 'eth0'
I installed xen 3.2 on 7.1 server (amd64) like this and it's perfect..
### xen
cd /usr/src && wget
http://bits.xensource.com/oss-xen/release/3.2.0/xen-3.2.0.tar.gz &&
tar -xzf xen-3.2.0.tar.gz && cd xen-3.2.0
make all && make install
### install 2.6.22-14-xen ubuntu xen-kernel
aptitude install linux-image-xen
### init.d
update-rc.d xend defaults 20 21
update-rc.d xendomains defaults 21 20
# insert before start:
vi /etc/init.d/xend
mkdir -p /var/run/xenstored
mkdir -p /var/lock/subsys
### xen-tools
cd /home && wget
http://www.xen-tools.org/software/xen-tools/xen-tools-3.8.tar.gz &&
tar -xzf xen-tools-3.8.tar.gz && cd xen-tools-3.8 && make install &&
cd .. && rm -rf xen-tools-3.8*
### xen-shell
cd /home && wget
http://www.xen-tools.org/software/xen-shell/xen-shell-1.8.tar.gz &&
tar -xzf xen-shell-1.8.tar.gz && cd xen-shell-1.8 && make install &&
cd.. && rm -rf xen-shell-1.8*
### /etc/xen/xend-config.sxp
(network-script network-bridge)
(vif-script vif-bridge)
### /etc/modules
loop max_loop=64
### remove rm tdb*
# boot in non-xen kernel and remove..
rm /var/lib/xenstored/tdb*
# now boot xen
# that's all
### xen-tools creates configs like this:
vif = [ 'ip=192.168.2.203,mac=00:16:3E:E1:35:42' ]
_______________________________________________
Xen-users mailing list
Xen-users@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-users
|
|
|
|
|