We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在最新的构建尝试中发现 luci-app-cifs-mount插件出现无法挂载SMB分区的问题 排查后得知位于luci/applications/luci-app-cifs-mount/root/etc/init.d/cifs 文件内46行 mount -t cifs -o vers=$smbver,user=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath 需要改为 mount -t cifs -o vers=$smbver,username=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath 可以恢复正常使用 希望能核查一下是否正确
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在最新的构建尝试中发现
luci-app-cifs-mount插件出现无法挂载SMB分区的问题
排查后得知位于luci/applications/luci-app-cifs-mount/root/etc/init.d/cifs
文件内46行
mount -t cifs -o vers=$smbver,user=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath
需要改为
mount -t cifs -o vers=$smbver,username=$users,password=$pwd,iocharset=$iocharset,$agm //$server/$name $natpath
可以恢复正常使用
希望能核查一下是否正确
The text was updated successfully, but these errors were encountered: