TEAMVIEWER AND SELINUX ON FEDORA 24

Parijatha Kumar Pasupuleti
1 min readJul 18, 2016

--

I could not manage to run TeamViewer ( version 11.0.57095 as of this writing) on Fedora-24. After seeing the audit logs, I’ve confirmed it is an SELinux policy issue.

Then I found this website. All the credits go to the original author of that site. I am only reproducing it here for my reference and in case the original author removes his content for any reason.

To add an SELinux policy and allow TeamViewer …

ausearch -c 'teamviewerd' --raw | audit2allow -M my-teamviewerdsemodule -X 300 -i my-teamviewerd.pp

To remove the above policy and disallow TeamViewer …

semodule -l | grep teamsemodule -X 300 -r my-teamviewerd

--

--