我有一个Windows共享驱动器,该驱动器已按照Red Hat的说明安装在我的CentOS 7机器上,我现在想在其中创建和编辑文件。但是,我必须被提升才能在驱动器上的任何文件夹上创建和编辑文件。我尝试使用chmod
允许所有用户访问,但无济于事,甚至尝试卸载/重新安装驱动器。
如何获得对驱动器的非提升访问权限?
(我正在使用Matlab创建这些文件,而Matlab无法通过来运行sudo
,因此仅保持抬高状态是不可行的)。
终端打印输出
[millironx@mymachine ~]$ sudo umount /mnt
[millironx@mymachine ~]$ sudo mount -t cifs -o username=millironx,password=mypassword,domain=AD //files.example.com/shared /mnt
[millironx@mymachine ~]$ cd /mnt/matlab-program
[millironx@mymachine matlab-program]$ touch testfile
touch: cannot touch 'testfile': Permission denied
[millironx@mymachine matlab-program]$ sudo chmod +rwx /mnt/matlab-program
[millironx@mymachine matlab-program]$ touch testfile
touch: cannot touch 'testfile': Permission denied
[millironx@mymachine matlab-program]$ sudo touch testfile
[millironx@mymachine matlab-program]$ ls
testfile
[millironx@mymachine matlab-program]$ rm testfile
rm: remove write-protected regular empty file 'testfile`? y
rm: cannot remove 'testfile': Permission denied
[millironx@mymachine matlab-program]$ sudo rm testfile
[millironx@mymachine matlab-program]$ sudo matlab
sudo: matlab: command not found