/proc/xen does not exist (xen4.0.1 Dom0 на pvops 2.6.32.27)
Добавлено: 2011-01-25 10:19:39
не запускается xend в виду того, что не проходит проверка в /etc/init.d/xend
И действительно, при загрузке ОС, во время попытки выполнить строку /etc/fstab
в логе присутствует ругань вида
Здесь, наверное полезно знать, что запускаю я этот xen на CentOS5.5, тут, в секции "Downloading the git tree", сразу после перечисления необходимых опций ядра, пишут следующее:
и строка в fstab присутствует, а точка монтирования ядром не создается.
Может кто решал эту проблему?
Код: Выделить всё
...
test -d /proc/xen
...Код: Выделить всё
none /proc/xen xenfs defaults 0 0Код: Выделить всё
...mount point /proc/xen does not exist...Собственно у меня в ядре:...
If you're using RHEL5 or CentOS5 as a dom0 (ie. you have old udev version), make sure you enable the following options aswell:For more current Xen related config options check the example .config files from the troubleshooting section, and check the 2.6.18-to-2.6.31-and-higher wiki page.Код: Выделить всё
CONFIG_SYSFS_DEPRECATED=y CONFIG_SYSFS_DEPRECATED_V2=y
The XENFS and XEN_COMPAT_XENFS config options are needed for /proc/xen support. If CONFIG_XEN_DEV_EVTCHN is compiled as a module, make sure to load the xen-evtchn.ko module or xend will not start.
You might also need to add a line to /etc/fstab. Xen 3.4.2 and newer automatically mount /proc/xen when /etc/init.d/xend is started, so no need to add xenfs mount entry to /etc/fstab on those systems:...Код: Выделить всё
none /proc/xen xenfs defaults 0 0
Код: Выделить всё
# egrep -i "XENFS|DEPRECATED|EVTCHN" /usr/src/linux/.config
CONFIG_SYSFS_DEPRECATED=y
CONFIG_SYSFS_DEPRECATED_V2=y
CONFIG_XEN_DEV_EVTCHN=y
CONFIG_XENFS=y
CONFIG_XEN_COMPAT_XENFS=y
CONFIG_ENABLE_WARN_DEPRECATED=y
#
Может кто решал эту проблему?