Difference between revisions of "Fedora install for my own purposes"
From dbawiki
(→Disable SELinux) |
|||
| Line 4: | Line 4: | ||
===Configure Fedora=== | ===Configure Fedora=== | ||
====Disable SELinux==== | ====Disable SELinux==== | ||
| + | Use the /usr/sbin/getenforce or /usr/sbin/sestatus commands to check the status of SELinux | ||
| + | <pre> | ||
| + | $ /usr/sbin/getenforce | ||
| + | Enforcing | ||
| + | </pre> | ||
| + | or | ||
| + | <pre> | ||
| + | $ /usr/sbin/sestatus | ||
| + | SELinux status: enabled | ||
| + | SELinuxfs mount: /selinux | ||
| + | Current mode: enforcing | ||
| + | Mode from config file: enforcing | ||
| + | Policy version: 23 | ||
| + | Policy from config file: targeted | ||
| + | </pre> | ||
| + | sudo vi /etc/selinux/config | ||
| + | <pre> | ||
| + | sudo reboot | ||
| + | </pre> | ||
| + | |||
====Assign static IP address==== | ====Assign static IP address==== | ||
====Create user dbav8==== | ====Create user dbav8==== | ||
Revision as of 19:10, 1 May 2018
At time of writing, Fedora 27 is current stable version
Contents
Download and install Fedora
Configure Fedora
Disable SELinux
Use the /usr/sbin/getenforce or /usr/sbin/sestatus commands to check the status of SELinux
$ /usr/sbin/getenforce Enforcing
or
$ /usr/sbin/sestatus SELinux status: enabled SELinuxfs mount: /selinux Current mode: enforcing Mode from config file: enforcing Policy version: 23 Policy from config file: targeted
sudo vi /etc/selinux/config
sudo reboot