This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
xen:installation_of_dom0 [2011/03/25 15:24] Luc Nieland |
xen:installation_of_dom0 [2011/03/27 20:38] (current) Luc Nieland [Debian 6.0 (Squeeze)] |
||
---|---|---|---|
Line 9: | Line 9: | ||
Install a minimal OpenSuse system, choose "other" graphical system, and choose text based server). | Install a minimal OpenSuse system, choose "other" graphical system, and choose text based server). | ||
- | Now the system will come up with a graphical-screen (ROTFL). With ctrl-alt-F1 change to text-mode and log with the create non-root user. Use: | + | Now the system will come up with a graphical-screen (ROTFL). With ctrl-alt-F1 change to text-mode and log in with the created non-root user during install. Use: |
sudo su - root | sudo su - root | ||
passwd root | passwd root | ||
Line 20: | Line 20: | ||
- | + | Update the repository cache and install generic usefull stuff: | |
- | Install generic usefull stuff: | + | |
zypper up | zypper up | ||
- | zypper install iputils man bind-util vim-enhanced tcpdump rsync wget | + | zypper install mc iputils man bind-util vim-enhanced tcpdump rsync wget iftop |
- | De-install conflicting patterns-openSUSE-minimal_base and replace for python-base: | + | De-install conflicting patterns-openSUSE-minimal_base because it conflicts with python-base (which is a requirement for xen-tools). As a replacment for the package, some other packages need to be installed: |
- | zypper install python-base | + | zypper remove patterns-openSUSE-minimal_base |
+ | zypper install python-base | ||
Install the Xen hypervisor and a Xen-enabled Linux dom0 kernel: | Install the Xen hypervisor and a Xen-enabled Linux dom0 kernel: | ||
Line 116: | Line 116: | ||
#!/bin/sh | #!/bin/sh | ||
BASEPATH=/etc/xen/scripts | BASEPATH=/etc/xen/scripts | ||
- | ${BASEPATH}/network-bridge "$@" vifnum=0 netdev=eth0 bridge=xenbr0 | + | ${BASEPATH}/network-bridge "$@" vifnum=0 bridge=xenbr0 netdev=eth0 |
- | ${BASEPATH}/network-bridge "$@" vifnum=1 netdev=eth1 bridge=xenbr1 | + | ${BASEPATH}/network-bridge "$@" vifnum=1 bridge=xenbr1 netdev=eth1 |
- | ${BASEPATH}/network-bridge "$@" vifnum=2 netdev=eth2 bridge=xenbr2 | + | ${BASEPATH}/network-bridge "$@" vifnum=2 bridge=xenbr2 netdev=eth2 |
- | ${BASEPATH}/network-bridge "$@" vifnum=3 netdev=eth3 bridge=xenbr3 | + | ${BASEPATH}/network-bridge "$@" vifnum=3 bridge=xenbr3 netdev=eth3 |