A problem occurred while starting the server NTPD service
You cannot use the service command after switching to the root user using SU root;
After using Su-, you can use the service command.
Reason:
The difference between the SU command and the Su-command is:
Su simply switches the root identity, but the shell environment is still a normal user's shell, and Su-even the user and shell environment switch to root identity. The PATH environment variable error is not reported by the command not found only if the shell environment is switched.
After the SU switch to the root user, PWD, found that the working directory is still the normal user's working directory, and after the Su-command switch, the working directory becomes the working directory of root.
Use the Echo $PATH command to look at Su and Su-after the environment variable has changed.
And so on, to switch from the current user to another user, you should use the Su-command.
Reference: (summary) The essential difference between Su and Su-commands under Linux
The difference between Su and Su-commands under Linux