本文介绍了chmod一个新安装的外部驱动器,用于设置写访问权限的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经在以下位置安装了外部驱动器:

I have mounted a external drive at:

# mkdir /mnt/external

,随后:

mkdir -p /mnt/external
mount /dev/sdb1 /mnt/external

现在只有root用户有权访问这些文件夹.

Now only the root-user has access to write to these folders.

linux-wyee:/home/martin # dir /mnt
drwxr-xr-x 2 root root 4096 13. Dez 22:01 external

如何更改此设置-如何更改所有可以写入外部驱动器的内容.我需要在终端中更改权限.

How to change this - how to change that all can write to the external drive. I need to change the permissions within the terminal.

chmod 777 /dev/sdb1 /mnt/external or something alike -

推荐答案

先尝试一下,

umount /dev/sdb1

chmod -R 0777 /mnt/external   

然后使用

mount /dev/sdb1 /mnt/external

或尝试

chmod -R 0777 /mnt/external

这篇关于chmod一个新安装的外部驱动器,用于设置写访问权限的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 21:01