Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做与此等效的操作:
smbmount //srv_files/f$/ /mnt/srv_files -o username=user,password=pass,rw
我得到的许可被拒绝,但如果我这样做:
smbmount //srv_files/active/ /mnt/srv_files -o username=user,password=pass,rw
那么它工作得很好,只是想知道这种类型的 smbmount 安装是否可以做到?
不确定这是否真的是一个 stackoverflow 问题,但无论如何......您可能需要转义$标志。$ share 通常也仅限管理员,您是否以管理员身份连接?
$
smbmount //srv_files/f\$/ /mnt/srv_files -o username=user,password=pass,rw