Skip to content

Instantly share code, notes, and snippets.

@Vostbur
Last active April 10, 2025 15:13
Show Gist options
  • Save Vostbur/607937b45162e83192dd6dbebe6fec66 to your computer and use it in GitHub Desktop.
Save Vostbur/607937b45162e83192dd6dbebe6fec66 to your computer and use it in GitHub Desktop.
Решение проблемы постоянной перезагрузки образа vESR в QEMU/GNS3

Лог ошибки:

Illegal Instruction в процессах lic-mgr и oi-mgr:

*** PROGRAM ERROR (/usr/bin/lic-mgr) pid=1755: Illegal instruction *** PROGRAM ERROR (/usr/bin/oi-mgr) pid=1758: Illegal instruction

Это указывает на несовместимость CPU между хостом и гостевой ОС. Образ vESR ожидает определенные инструкции процессора, которые эмулируемый CPU QEMU не предоставляет.

Настройка CPU в QEMU

В GNS3 измените параметры QEMU для VM Template:

Откройте Edit → Preferences → QEMU VMs.

Выберите ваш образ vESR и нажмите Edit.

Перейдите в Advanced settings и добавьте в поле Options:

-cpu Westmere -accel tcg -machine q35

Westmere — безопасная модель CPU, совместимая с большинством образов. -accel tcg -machine q35 - отключить KVM и использовать полную эмуляцию

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment