Bug 1479558
| Summary: | Could not access KVM kernel module: Permission denied | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | jniederm | ||||||||
| Component: | qemu | Assignee: | Fedora Virtualization Maintainers <virt-maint> | ||||||||
| Status: | CLOSED CURRENTRELEASE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||||||
| Severity: | unspecified | Docs Contact: | |||||||||
| Priority: | unspecified | ||||||||||
| Version: | 26 | CC: | amit, berrange, cfergeau, chorn, crobinso, dwmw2, dzheng, itamar, pbonzini, rjones, tiago.rodrigo1987, virt-maint | ||||||||
| Target Milestone: | --- | ||||||||||
| Target Release: | --- | ||||||||||
| Hardware: | Unspecified | ||||||||||
| OS: | Unspecified | ||||||||||
| Whiteboard: | |||||||||||
| Fixed In Version: | Doc Type: | If docs needed, set a value | |||||||||
| Doc Text: | Story Points: | --- | |||||||||
| Clone Of: | Environment: | ||||||||||
| Last Closed: | 2017-08-16 23:46:23 UTC | Type: | Bug | ||||||||
| Regression: | --- | Mount Type: | --- | ||||||||
| Documentation: | --- | CRM: | |||||||||
| Verified Versions: | Category: | --- | |||||||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||||||
| Embargoed: | |||||||||||
| Attachments: |
|
||||||||||
|
Description
jniederm
2017-08-08 19:36:53 UTC
Created attachment 1310830 [details]
libvirt.log
Created attachment 1310831 [details]
journalct.log
Hmm yes we dropped the kvm udev rules in the rawhide package, since rawhide systemd now provides them. However it looks like you are using the virt-preview repo on f26, so now there isn't anything setting /dev/kvm permissions to 666 and group=kvm Maybe we keep shipping the udev rules for a release until virt-preview is discontinued for f26... Hi Cole, is there any workaround? (In reply to jniederm from comment #4) > Hi Cole, is there any workaround? chmod 666 /dev/kvm to get it working right now. Then to fix future reboots, create a file /lib/udev/rules.d/99-kvm.rules with this content: KERNEL=="kvm", GROUP="kvm", MODE="0666" Workarounds helped. Thanks Cole This file should be back in the virt-preview packages now (In reply to Cole Robinson from comment #5) > (In reply to jniederm from comment #4) > > Hi Cole, is there any workaround? > > chmod 666 /dev/kvm to get it working right now. Then to fix future reboots, > create a file /lib/udev/rules.d/99-kvm.rules with this content: > > KERNEL=="kvm", GROUP="kvm", MODE="0666" Perfet, solved my problem, tks. |