top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

SELinux error on every policy package update on fedora

+1 vote
230 views

I have been having this weird problem; everytime I there is a selinux-policy update, I get the following error:

 libsepol.print_missing_requirements: hotplug's global requirements  were not met: bool init_systemd (No such file or directory).
 libsemanage.semanage_link_sandbox: Link packages failed (No such file or directory).
 semodule: Failed!

FWIW, this machine was updated from F17 to F19 with yum. I tried searching for the error above, but could not make sense of what I found.

posted Jul 27, 2013 by Mandeep Sehgal

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+2 votes

Ever since a recent update, when I close the lid of my thinkpad, it does not go to sleep. When I unlock the screen, I see a desktop notification saying something like this:

 Power Manager
 GDBus.Error:org.freedesktop.DBus.error.accessdenied:  SELinux policy denies access.

Strangely though, I can not find any SELinux alerts in the troubleshooter. Looking at the updated packages, I find this:
selinux-policy-3.13.1-128.13.fc22.noarch. What is going on? How can I debug this to file a bug report?

0 votes

Installed Fedora 26 on recommendation of a Scribus developer. Installed about 30 packages per his advice.

But when I try to compile a program the machine can't find C++. So what is the package I need to install to compile C++ programs?.

Another question. On Slackware (yes I am one of those) I can use kdm to get to a window function ( I preferXFCE). How do I set up a window manager in Fedora and how do I access it?

+5 votes

Isn't there a Package on Fedora repo that you can install so as to view files on Android Phones by USB.

0 votes

Fedora 18

Where do I find the setuptools module ? For error below

$python setup.py install

Traceback (most recent call last):
 File "setup.py", line 2, in 
 from setuptools import setup, find_packages
ImportError: No module named setuptools

Below is the setup.py

#!/usr/bin/env python
from setuptools import setup, find_packages

setup(name="python-instagram",
 version="0.8.0",
 description="Instagram API client",
 license="MIT",
 install_requires=["simplejson","httplib2"],
 author="Instagram, Inc",
 author_email="apidevelopers@instagram.com",
 url="http://github.com/Instagram/python-instagram",
 packages = find_packages(),
 keywords= "instagram",
 zip_safe = True)
...