When I try to boot a new domain the error is: /dev/sda1 is mounted. e2fsck : Connot continue , aborting. But /dev/sda1 is not mounted. sda is another harddisk, with a linux filesystem on it. The main system is on hda1. I start the domain like this: xenctl script -f/etc/xen-mynewdom cat /etc/xenctl.xml <?xml version="1.0"?> <domctl_defaults> <domain_name>XenoLinux</domain_name> <domain_size_kb>98304</domain_size_kb> <domain_image>/boot/xenolinux.gz</domain_image> <domain_vifs>1</domain_vifs> <domain_init_rd>/boot/initrd.gz</domain_init_rd> <root_device>/dev/sda1</root_device> <root_args>rw</root_args> <args>DOMID=+</args> <nw_ip>169.254.1.0+</nw_ip> <nw_gw>169.254.1.0</nw_gw> <nw_mask>255.255.0.0</nw_mask> <nw_nfs_server>169.254.1.0</nw_nfs_server> <max_domain_number>1000</max_domain_number> <xi_tools_dir>/usr/local/bin/</xi_tools_dir> </domctl_defaults> cat /etc/xen-mynewdom domain new domain start Thank you. ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel
> When I try to boot a new domain the error is: > /dev/sda1 is mounted. e2fsck : Connot continue , aborting. > But /dev/sda1 is not mounted. > sda is another harddisk, with a linux filesystem on it. > The main system is on hda1.> cat /etc/xenctl.xml > <root_device>/dev/sda1</root_device>You need to set this to be the partition containing the root filesystem that will be used by the *new* domain (domain 1) that you are starting. It can not be the same file system that domain0 is using. You''ll also need to edit xen-mynewdom to ensure that you grant the new domain access to this partition. (Instead of editing the xml defaults file to set the root partition, you can use the "-d" option to domain new in the script). Ian ------------------------------------------------------- This SF.net email is sponsored by: SF.net Giveback Program. Does SourceForge.net help you be more productive? Does it help you create better code? SHARE THE LOVE, and help us help YOU! Click Here: http://sourceforge.net/donate/ _______________________________________________ Xen-devel mailing list Xen-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/xen-devel