Device Nodes Are Not Automatically Re-Created on Restart

Effective in SUSE® Linux Enterprise 10, the /dev directory is on tmpfs and the device nodes are automatically re-created on boot. It is no longer necessary to modify the /etc/init.d/boot.evms script to delete the device nodes on system reboot as was required for previous versions of SUSE Linux.

The following procedure is provided for users who might encounter this issue for SUSE Linux Enterprise Server 9 and earlier:

  1. Open the /etc/init.d/boot.evms script in a text editor.

  2. Add the following lines to the Stop section:

    mount -n -o remount,rw /
    
    echo -en "\nDeleting devices nodes"
    
    rm -rf /dev/evms
    
    mount -n -o remount,ro /
    

    For example, the Stop section looks like this after the edit:

    stop)
    
      	echo -n "Stopping EVMS"
    
      	mount -n -o remount,rw /
    
      	echo -en "\nDeleting devices nodes"
    
      	rm -rf /dev/evms
    
      	mount -n -o remount,ro /
    
      	rc_status -v
    
    	;;
    
  3. Save the file.

  4. Continue with Section 2.1.3.5, “Restart the Server”.


SUSE® Linux Enterprise Server Storage Administration Guide 10