Mounting a File System to an ECS Running Linux as a Non-root User
Scenarios
By default, a Linux ECS allows only the root user to run the mount command for mounting a file system. However, if the permissions of user root are assigned to other common users, such users can also run the mount command for file system mounting. The following describes how to mount a file system to a Linux ECS as a common user. The EulerOS is used as an example.
Prerequisites
- A non-root user has been created on the ECS.
- A file system has been created and can be mounted to the ECS by the root user.
- You have obtained the mount point of the file system.
Procedure
- Log in to the ECS as user root.
- Assign the permissions of user root to the non-root user.
- Run the chmod 777 /etc/sudoers command to change the sudoers file to be editable.
- Run the vi /etc/resolv.conf command to edit the sudoers file.
- Add a common user under the root account. In the following figure, user Mike is added.
Figure 1 Adding a user
- Press Esc, input :wq, and press Enter to save and exit.
- Run the chmod 440 /etc/sudoers command to change the sudoers file to be read-only.
- Log in to the ECS as user Mike.
- Run the following command to mount the file system. For details about the mounting parameters, see Table 1.
mount -t nfs -o vers=3,timeo=600,noresvport,nolock Mount point Local path
- Run the following command to view the mounted file system:
mount -l
If the command output contains the following information, the file system is mounted successfully.example.com:/share-xxx on /local_path type nfs (rw,vers=3,timeo=600,nolock,addr=)
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.See the reply and handling status in My Cloud VOC.
For any further questions, feel free to contact us through the chatbot.
Chatbot