Other Articles

Servers – Configure /home Partition

Support > Fixing Checks > Server

02 March, 2026

This check ensures that the /home partition is configured with the nodev mount option. The /home directory stores user home directories and personal files. Without the nodev option, users could potentially create device files within their home directories, which may introduce security risks.

Check Details

  • Resource: Server
  • Check: Verify Home Partition configuration
  • Risk: If the /home partition is not mounted with the nodev option, users may create device files that could be exploited to access unauthorized system resources or bypass security restrictions.

Remediation Steps

  1. Open a terminal session on the target server with root or sudo privileges.
  2. Remount the /home partition with the nodev mount option.

    sudo mount -o remount,nodev /home
    
  3. Verify that the nodev option has been applied to the /home partition.

    mount | grep /home
    

Note: On Container-Optimized OS, the /etc directory is stateless. Changes to mount configurations may not persist across system reboots. This remediation step must be applied again after each system boot.