Hi, I''d like to know how to install centos (4.5 in my case) to run as a domU on a dom0 running etch. Any tips please? Thanks. Chris. _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Fr, Nov 30, 2007 at 06:46:52 +0100, Chris Fanning wrote:> Hi, > > I''d like to know how to install centos (4.5 in my case) to run as a > domU on a dom0 running etch. > > Any tips please?Make sure that you have enough free space on the file system where you are going to make image for centos (or create PV if you are going to use LVM). # df -h # dd if=/dev/zero of=centos.img count=1 bs=1k seek=$[2*1024*1024] # mkfs.ext3 centos.img # mount -o loop centos.img /mnt Now you have 2G-size image with ext3 filesystem mounted to /mnt directory. After that: # apt-get install yum # yum -c /tmp/yum-xen.conf --installroot=/mnt -y groupinstall Base where you-xen.conf file should look like: ==================================================[main] cachedir=/var/cache/yum debuglevel=2 logfile=/var/log/yum.log exclude=*-debuginfo gpgcheck=0 obsoletes=1 reposdir=/dev/null [base] name=CentOS-$releasever - Plus baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ enabled=1 ================================================== if you have the error during installation ------------------------------------------------ Failed to add groups file for repository: base Error: No Groups on which to run command ------------------------------------------------ then modify yum code like shown below: ------------------------------------------------ # cp /usr/share/python-support/yum/yum/comps.py{,.ORIG} # vi /usr/share/python-support/yum/yum/comps.py # diff /usr/share/python-support/yum/yum/comps.py{.ORIG,} 124c124 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', > ''optional'', ''conditional''):143c143 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', > ''optional'', ''conditional''):------------------------------------------------ Create several directories and device files: %# /mnt/{dev,proc,etc} %# for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; %done Disable TLS. %# mv /mnt/lib/tls /mnt/lib/tls-disabled Create /etc/fstab (of course you must specify correct device files) %# cat <<EOL > /mnt/etc/fstab /dev/sda1 / ext3 defaults 1 1 none /dev/pts devpts gid=5,mode=620 0 0 none /dev/shm tmpfs defaults 0 0 none /proc proc defaults 0 0 none /sys sysfs defaults 0 0 #/dev/sda2 /mnt ext3 defaults 1 2 #/dev/sda3 swap swap defaults 0 0 EOL Setup network interfaces (I suppose that you use one interface which should acquire its IP-address via DHCP). %# cat <<EOL > /mnt/etc/sysconfig/network NETWORKING=yes HOSTNAME=localhost.localdomain EOL cat <<EOL > /mnt/etc/sysconfig/network-scripts/ifcfg-eth0 ONBOOT=yes DEVICE=eth0 BOOTPROTO=dhcp EOL Copy kernel modules to the domU filesystem (alternatively you can install Xenified Linux Kernel inside domU using yum). %# cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ Set root password for domU: %$ sudo chroot /mnt bash-3.1# pwconv bash-3.1# passwd Changing password for user root. New UNIX password: Retype new UNIX password: passwd: all authentication tokens updated successfully. bash-3.1# exit That''s all. No you may umount your image and make %# xm create -c centos centos here is the name of the Xen domain config file which will run the image that you have prepared.> > Thanks. > Chris. > > _______________________________________________ > Xen-users mailing list > Xen-users@lists.xensource.com > http://lists.xensource.com/xen-users-- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Thankyou very much for your detailed instructions. I''m stuck with this error Error: No Groups on which to run command I have edited diff comps.py.orig comps.py 124c124 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', ''optional'', ''conditional''):143c143 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', ''optional'', ''conditional''):And my xen-yum.conf lokk like this. [main] cachedir=/var/cache/yum debuglevel=2 logfile=/var/log/yum.log exclude=*-debuginfo gpgcheck=0 obsoletes=1 reposdir=/dev/null [base] name=CentOS-4.5 - Plus baseurl=http://mirror.centos.org/centos/4.5/centosplus/i386/ enabled=1 Where do you think I''m going wrong? Thanks. Chris. On Dec 1, 2007 8:58 PM, Igor Chubin <igor@chub.in> wrote:> On Fr, Nov 30, 2007 at 06:46:52 +0100, Chris Fanning wrote: > > Hi, > > > > I''d like to know how to install centos (4.5 in my case) to run as a > > domU on a dom0 running etch. > > > > Any tips please? > > Make sure that you have enough free space > on the file system where you are going to make image for centos > (or create PV if you are going to use LVM). > > # df -h > # dd if=/dev/zero of=centos.img count=1 bs=1k seek=$[2*1024*1024] > # mkfs.ext3 centos.img > # mount -o loop centos.img /mnt > > > Now you have 2G-size image with ext3 filesystem mounted to /mnt directory. > > After that: > > # apt-get install yum > # yum -c /tmp/yum-xen.conf --installroot=/mnt -y groupinstall Base > > > where you-xen.conf file should look like: > > ==================================================> [main] > cachedir=/var/cache/yum > debuglevel=2 > logfile=/var/log/yum.log > exclude=*-debuginfo > gpgcheck=0 > obsoletes=1 > reposdir=/dev/null > > [base] > name=CentOS-$releasever - Plus > baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ > enabled=1 > ==================================================> > > > if you have the error during installation > ------------------------------------------------ > Failed to add groups file for repository: base > Error: No Groups on which to run command > ------------------------------------------------ > > then modify yum code like shown below: > > ------------------------------------------------ > # cp /usr/share/python-support/yum/yum/comps.py{,.ORIG} > # vi /usr/share/python-support/yum/yum/comps.py > # diff /usr/share/python-support/yum/yum/comps.py{.ORIG,} > 124c124 > < if type not in (''mandatory'', ''default'', > ''optional''): > --- > > if type not in (''mandatory'', ''default'', > > ''optional'', ''conditional''): > 143c143 > < if type not in (''mandatory'', ''default'', > ''optional''): > --- > > if type not in (''mandatory'', ''default'', > > ''optional'', ''conditional''): > ------------------------------------------------ > > > > Create several directories and device files: > > %# /mnt/{dev,proc,etc} > %# for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; > %done > > Disable TLS. > > %# mv /mnt/lib/tls /mnt/lib/tls-disabled > > Create /etc/fstab > (of course you must specify correct device files) > > %# cat <<EOL > /mnt/etc/fstab > /dev/sda1 / ext3 defaults 1 1 > none /dev/pts devpts > gid=5,mode=620 0 0 > none /dev/shm tmpfs defaults 0 0 > none /proc proc defaults 0 0 > none /sys sysfs defaults 0 0 > #/dev/sda2 /mnt ext3 defaults 1 2 > #/dev/sda3 swap swap defaults 0 0 > EOL > > > > Setup network interfaces > (I suppose that you use one interface which should acquire > its IP-address via DHCP). > > > %# cat <<EOL > /mnt/etc/sysconfig/network > NETWORKING=yes > HOSTNAME=localhost.localdomain > EOL > > cat <<EOL > /mnt/etc/sysconfig/network-scripts/ifcfg-eth0 > ONBOOT=yes > DEVICE=eth0 > BOOTPROTO=dhcp > EOL > > > > > Copy kernel modules to the domU filesystem > (alternatively you can install Xenified Linux Kernel > inside domU using yum). > > %# cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ > > > Set root password for domU: > > > %$ sudo chroot /mnt > bash-3.1# pwconv > bash-3.1# passwd > Changing password for user root. > New UNIX password: > Retype new UNIX password: > passwd: all authentication tokens updated successfully. > bash-3.1# exit > > > > That''s all. > No you may umount your image and make > > %# xm create -c centos > > centos here is the name of the Xen domain config file > which will run the image that you have prepared. > > > > > > > > Thanks. > > Chris. > > > > _______________________________________________ > > Xen-users mailing list > > Xen-users@lists.xensource.com > > http://lists.xensource.com/xen-users > > -- > WBR, i.m.chubin > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hi, Just to add some more information so you might be able to know better where I''m going wrong. I added the file /etc/yum.repos.d/CentOS-Base.repo and pasted this http://ruckman.net/tech/wp-content/uploads/2007/05/centos-baserepo.txt into it. and changed all 4''s for 4.5''s (I need centos4.5). Then I did a # yum --enablerepo=centosplus There was lots of net traffic and all seemed well. But. yum -c yum.conf --installroot=/mnt/ -y groupinstall Base Warning, could not load sqlite, falling back to pickle Setting up Group Process Setting up repositories not using ftp, http[s], or file for repos, skipping - enabled=1 base 100% |=========================| 951 B 00:00 Error: No Groups on which to run command Thanks again. (I hope this isn''t turning into an off-topic) Chris. On Dec 4, 2007 10:44 AM, Chris Fanning <christopher.fanning@gmail.com> wrote:> Thankyou very much for your detailed instructions. > > I''m stuck with this error > Error: No Groups on which to run command > > I have edited > > diff comps.py.orig comps.py > 124c124 > < if type not in (''mandatory'', ''default'', ''optional''): > --- > > if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): > 143c143 > < if type not in (''mandatory'', ''default'', ''optional''): > --- > > if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): > > And my xen-yum.conf lokk like this. > > [main] > cachedir=/var/cache/yum > debuglevel=2 > logfile=/var/log/yum.log > exclude=*-debuginfo > gpgcheck=0 > obsoletes=1 > reposdir=/dev/null > > [base] > name=CentOS-4.5 - Plus > baseurl=http://mirror.centos.org/centos/4.5/centosplus/i386/ enabled=1 > > Where do you think I''m going wrong? > > Thanks. > Chris. > > > > On Dec 1, 2007 8:58 PM, Igor Chubin <igor@chub.in> wrote: > > On Fr, Nov 30, 2007 at 06:46:52 +0100, Chris Fanning wrote: > > > Hi, > > > > > > I''d like to know how to install centos (4.5 in my case) to run as a > > > domU on a dom0 running etch. > > > > > > Any tips please? > > > > Make sure that you have enough free space > > on the file system where you are going to make image for centos > > (or create PV if you are going to use LVM). > > > > # df -h > > # dd if=/dev/zero of=centos.img count=1 bs=1k seek=$[2*1024*1024] > > # mkfs.ext3 centos.img > > # mount -o loop centos.img /mnt > > > > > > Now you have 2G-size image with ext3 filesystem mounted to /mnt directory. > > > > After that: > > > > # apt-get install yum > > # yum -c /tmp/yum-xen.conf --installroot=/mnt -y groupinstall Base > > > > > > where you-xen.conf file should look like: > > > > ==================================================> > [main] > > cachedir=/var/cache/yum > > debuglevel=2 > > logfile=/var/log/yum.log > > exclude=*-debuginfo > > gpgcheck=0 > > obsoletes=1 > > reposdir=/dev/null > > > > [base] > > name=CentOS-$releasever - Plus > > baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/ > > enabled=1 > > ==================================================> > > > > > > > if you have the error during installation > > ------------------------------------------------ > > Failed to add groups file for repository: base > > Error: No Groups on which to run command > > ------------------------------------------------ > > > > then modify yum code like shown below: > > > > ------------------------------------------------ > > # cp /usr/share/python-support/yum/yum/comps.py{,.ORIG} > > # vi /usr/share/python-support/yum/yum/comps.py > > # diff /usr/share/python-support/yum/yum/comps.py{.ORIG,} > > 124c124 > > < if type not in (''mandatory'', ''default'', > > ''optional''): > > --- > > > if type not in (''mandatory'', ''default'', > > > ''optional'', ''conditional''): > > 143c143 > > < if type not in (''mandatory'', ''default'', > > ''optional''): > > --- > > > if type not in (''mandatory'', ''default'', > > > ''optional'', ''conditional''): > > ------------------------------------------------ > > > > > > > > Create several directories and device files: > > > > %# /mnt/{dev,proc,etc} > > %# for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; > > %done > > > > Disable TLS. > > > > %# mv /mnt/lib/tls /mnt/lib/tls-disabled > > > > Create /etc/fstab > > (of course you must specify correct device files) > > > > %# cat <<EOL > /mnt/etc/fstab > > /dev/sda1 / ext3 defaults 1 1 > > none /dev/pts devpts > > gid=5,mode=620 0 0 > > none /dev/shm tmpfs defaults 0 0 > > none /proc proc defaults 0 0 > > none /sys sysfs defaults 0 0 > > #/dev/sda2 /mnt ext3 defaults 1 2 > > #/dev/sda3 swap swap defaults 0 0 > > EOL > > > > > > > > Setup network interfaces > > (I suppose that you use one interface which should acquire > > its IP-address via DHCP). > > > > > > %# cat <<EOL > /mnt/etc/sysconfig/network > > NETWORKING=yes > > HOSTNAME=localhost.localdomain > > EOL > > > > cat <<EOL > /mnt/etc/sysconfig/network-scripts/ifcfg-eth0 > > ONBOOT=yes > > DEVICE=eth0 > > BOOTPROTO=dhcp > > EOL > > > > > > > > > > Copy kernel modules to the domU filesystem > > (alternatively you can install Xenified Linux Kernel > > inside domU using yum). > > > > %# cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ > > > > > > Set root password for domU: > > > > > > %$ sudo chroot /mnt > > bash-3.1# pwconv > > bash-3.1# passwd > > Changing password for user root. > > New UNIX password: > > Retype new UNIX password: > > passwd: all authentication tokens updated successfully. > > bash-3.1# exit > > > > > > > > That''s all. > > No you may umount your image and make > > > > %# xm create -c centos > > > > centos here is the name of the Xen domain config file > > which will run the image that you have prepared. > > > > > > > > > > > > > > Thanks. > > > Chris. > > > > > > _______________________________________________ > > > Xen-users mailing list > > > Xen-users@lists.xensource.com > > > http://lists.xensource.com/xen-users > > > > -- > > WBR, i.m.chubin > > > > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
On Di, Dez 04, 2007 at 10:44:36 +0100, Chris Fanning wrote:> Thankyou very much for your detailed instructions. > > I''m stuck with this error > Error: No Groups on which to run command > > I have editedChris, you have to copy file comps.py to comps.py.ORIG> > # cp /usr/share/python-support/yum/yum/comps.py{,.ORIG}edit file comps.py:> > # vi /usr/share/python-support/yum/yum/comps.pyand after that changes between the old and the new file found by diff must be like show below:> > # diff /usr/share/python-support/yum/yum/comps.py{.ORIG,}124c124 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', ''optional'', ''conditional''):143c143 < if type not in (''mandatory'', ''default'', ''optional''): ---> if type not in (''mandatory'', ''default'', ''optional'', ''conditional''):(so, you must substitute if type not in (''mandatory'', ''default'', ''optional'' with if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): ) and after that make a try. As far as I can understand you have done this already but without success. Am I right? -- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hi,> Chris, > > > you have to copy file comps.py to comps.py.ORIG > > > > # cp /usr/share/python-support/yum/yum/comps.py{,.ORIG} > > edit file comps.py: > > > # vi /usr/share/python-support/yum/yum/comps.py > > > and after that changes between the old and the new file > found by diff must be like show below: > > > > # diff /usr/share/python-support/yum/yum/comps.py{.ORIG,} > > 124c124 > < if type not in (''mandatory'', ''default'', ''optional''): > --- > > if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): > 143c143 > < if type not in (''mandatory'', ''default'', ''optional''): > --- > > if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): > > (so, you must substitute > > if type not in (''mandatory'', ''default'', ''optional'' > > with > > if type not in (''mandatory'', ''default'', ''optional'', ''conditional''): > > ) > > and after that make a try.Yes. I understood correctly.> > > > As far as I can understand you have done this already > but without success. > Am I right?You you are right. But I think I hace succeeded (but perhaps not very elegantly). I created a file /etc/yum.repos.d/CentOS-Base.repo with this content http://gatopelao.org/downloads/CentOS-Base.repo I also edited /etc/yum.conf (although I don''t know if it''s necessary) ---------------------- [base] name=Centos 4.5 - $basearch - Base baseurl=http://mirror.centos.org/centos/4.5/os/i386/ gpgcheck=1 gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4.5 #released updates [update] name=CentOS-4.5 - Updates baseurl=http://mirror.centos.org/centos/4.5/updates/i386/ ---------------------- then did # yum update # yum grouplist then yum --installroot=/mnt -y groupinstall Base I haven''t touched redhat since redhat7.3 and am quite lost. But it is installing into /mnt at the moment. :) If I understand right, your example suggests that I shouldn''t need to touch /etc/yum* Chris.> > > -- > WBR, i.m.chubin > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
...> > > > As far as I can understand you have done this already > > but without success. > > Am I right? > You you are right. > But I think I hace succeeded (but perhaps not very elegantly). > I created a file /etc/yum.repos.d/CentOS-Base.repo with this content > http://gatopelao.org/downloads/CentOS-Base.repo > > I also edited /etc/yum.conf (although I don''t know if it''s necessary) > ---------------------- > [base] > name=Centos 4.5 - $basearch - Base > baseurl=http://mirror.centos.org/centos/4.5/os/i386/ > gpgcheck=1 > gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4.5 > > #released updates > [update] > name=CentOS-4.5 - Updates > baseurl=http://mirror.centos.org/centos/4.5/updates/i386/ > ---------------------- > > then did > # yum update > # yum grouplist > > then > yum --installroot=/mnt -y groupinstall Base > > I haven''t touched redhat since redhat7.3 and am quite lost. But it is > installing into /mnt at the moment. :) > > If I understand right, your example suggests that I shouldn''t need to > touch /etc/yum*Yes, you shouldn''t. You use independent config file which may be placed anywhere and pass the pass to it in th command line of the yum. %# apt-get install yum %# yum -c /tmp/yum-xen.conf --installroot=/mnt -y groupinstall Base Ok, now it works. After the installation will be finished do not forget to make last steps I''ve described earlier (that is mkdir /mnt/{dev,proc,etc} for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; done mv /mnt/lib/tls /mnt/lib/tls-disabled vi /etc/sysconfig/network vi /etc/sysconfig/network-scripts/ifcfg-eth0 cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ sudo chroot /mnt bash-3.1# pwconv bash-3.1# passwd bash-3.1# exit umount /mnt )> > Chris. > > > > > > > -- > > WBR, i.m.chubin > > > >-- WBR, i.m.chubin _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
> I''d like to know how to install centos (4.5 in my case) to run as a > domU on a dom0 running etch.If you have a PAE-enabled Xen running (the CentOS / RHEL Xen kernels are PAE only) you can actually boot directly into the CentOS installer. You need to create a config file for your domain, pointing to the virtual disks you want to use, creating a network interface etc as you would for any paravirtualised domain. I''ll assume you''re largely OK with that? If you look in the images/xen/ directory on the install ISO, you should see a kernel and an initrd. Copy these out of the ISO to a temporary location. Now unmount the ISO. Edit the config file to point to the kernel and initrd you copied off the CD. Add another virtual disk device to the config file, pointing to the ISO file for the install DVD (DVD is more convenient because you won''t have to "change disks). Set some sane framebuffer settings (e.g. to use VNC or SDL) in the config file. When you create this domain, you can connect to the framebuffer and should see the Anaconda installer pop up and do its thing. When you "reboot" the domain after the install you probably actually need to shut it down, then change the config so that it''ll use pygrub instead of the install kernel. If you actually want to interact with pygrub, you need to connect to the domain''s console; but CentOS may well do the smart thing and default ot just installing a Xenified kernel as default boot. Cheers, Mark -- Dave: Just a question. What use is a unicyle with no seat? And no pedals! Mark: To answer a question with a question: What use is a skateboard? Dave: Skateboards have wheels. Mark: My wheel has a wheel! _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
Hi,> After the installation will be finished > do not forget to make last steps I''ve described earlier > > (that is > mkdir /mnt/{dev,proc,etc} > for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; done > mv /mnt/lib/tls /mnt/lib/tls-disabled > vi /etc/sysconfig/network > vi /etc/sysconfig/network-scripts/ifcfg-eth0 > cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ > sudo chroot /mnt > bash-3.1# pwconv > bash-3.1# passwd > bash-3.1# exit > umount /mnt >ok. I have booted centosU. :) I did not need to mkdir /mnt/{dev,proc,etc}, they were already created. On boot udev fails. I don''t know why. Perhaps it isn''t important. Thankyou very much for your help. Chris. On Dec 4, 2007 6:17 PM, Igor Chubin <igor@chub.in> wrote:> ... > > > > > > > As far as I can understand you have done this already > > > but without success. > > > Am I right? > > You you are right. > > But I think I hace succeeded (but perhaps not very elegantly). > > I created a file /etc/yum.repos.d/CentOS-Base.repo with this content > > http://gatopelao.org/downloads/CentOS-Base.repo > > > > I also edited /etc/yum.conf (although I don''t know if it''s necessary) > > ---------------------- > > [base] > > name=Centos 4.5 - $basearch - Base > > baseurl=http://mirror.centos.org/centos/4.5/os/i386/ > > gpgcheck=1 > > gpgkey=http://mirror.centos.org/centos/RPM-GPG-KEY-centos4.5 > > > > #released updates > > [update] > > name=CentOS-4.5 - Updates > > baseurl=http://mirror.centos.org/centos/4.5/updates/i386/ > > ---------------------- > > > > then did > > # yum update > > # yum grouplist > > > > then > > yum --installroot=/mnt -y groupinstall Base > > > > I haven''t touched redhat since redhat7.3 and am quite lost. But it is > > installing into /mnt at the moment. :) > > > > If I understand right, your example suggests that I shouldn''t need to > > touch /etc/yum* > > > Yes, you shouldn''t. > > You use independent config file which may be placed > anywhere and pass the pass to it in th command line > of the yum. > > %# apt-get install yum > %# yum -c /tmp/yum-xen.conf --installroot=/mnt -y groupinstall Base > > > Ok, now it works. > > > After the installation will be finished > do not forget to make last steps I''ve described earlier > > (that is > mkdir /mnt/{dev,proc,etc} > for i in console null zero ; do /sbin/MAKEDEV -d /mnt/dev -x $i ; done > mv /mnt/lib/tls /mnt/lib/tls-disabled > vi /etc/sysconfig/network > vi /etc/sysconfig/network-scripts/ifcfg-eth0 > cp -R /lib/modules/2.6.*xen* /mnt/lib/modules/ > sudo chroot /mnt > bash-3.1# pwconv > bash-3.1# passwd > bash-3.1# exit > umount /mnt > > ) > > > > > > > Chris. > > > > > > > > > > > -- > > > WBR, i.m.chubin > > > > > > > > -- > WBR, i.m.chubin > >_______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users