Rails 上的 Samba 共享
我正在 Rails 中编写一个 XML 文件(在 RHEL 上运行),然后需要将此文件发布到 Windows 共享。
安装了 Sambala,以便我们可以通过 SMB 访问共享,但在运行一些测试代码后,我收到错误: 未初始化常量 ApplicationController::Sambala
samba = Sambala.new( :domain => 'myDOMAIN',
:host => 'myHOST',
:share => 'mySHARE',
:user => 'myUSER',
:password => 'myPASSWORD')
samba.cd('mySHARE') # => true
samba.put(:from => 'aLocalFile.txt')
有没有更好的方法在 RHEL 上使用 Rails 连接到 Windows 共享?或者我是否需要在某处引用桑巴拉?
I am writing an XML file in rails(running on RHEL) and will then need to post this file across to a windows share.
Sambala was installed so that we can SMB to the share, but after running some test code I get the error:
uninitialized constant ApplicationController::Sambala
samba = Sambala.new( :domain => 'myDOMAIN',
:host => 'myHOST',
:share => 'mySHARE',
:user => 'myUSER',
:password => 'myPASSWORD')
samba.cd('mySHARE') # => true
samba.put(:from => 'aLocalFile.txt')
Is there a better way to connect to a windows share using rails on RHEL? or do I need to include a reference to sambala somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 ` 键您可以发送操作系统命令。
using the ` key you can send OS commands.
通常,您只需在操作系统级别安装 Windows 驱动器即可,无需使用如此直接的东西。如果您缺乏管理员权限,您应该能够使用 FUSE 来做您想做的事情。
You can usual just mount the Windows drive on the OS level, no need to use something so direct. If you lack admin privileges, you should be able to use FUSE to do what you want.