如何在新格式化的硬盘上创建文件时禁用密码请求
我刚刚使用此命令格式化了外部硬盘:
$ sudo mkfs -t ext3 /dev/sdc1
但是,一旦完成此操作,每当我想创建目录时 或该硬盘上的文件,它总是要求输入密码(即权限要求)。
有什么办法可以禁用它吗?
请注意,除非使用 sudo,否则无法使用 mkfs 格式化分区。
请指教。
I have just formatted an external hard disk using this command:
$ sudo mkfs -t ext3 /dev/sdc1
However, once this is done, whenever I want to create a directory
or file in this hard disk, it always ask for password (i.e. permission requirement).
Is there a way I can disable that?
Note that I can't format the partition with mkfs unless I use sudo.
Please advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您将分区挂载在 /media/foo 处,请尝试以下操作:
此时它的行为就像 /tmp 一样。 因此任何用户都可以在其中创建文件夹/文件,但您只能删除自己的文件。
If you mount the partition at /media/foo, then try this:
It'll act like /tmp does at that point. So any user can create a folder / file in there, but you can only delete your own files.
我建议您在 ServerFault 上询问同样的问题。 我想你在那里会得到更好的答案。
I would recommend you asking the same question at ServerFault. I think you'll get a better answer over there.