sshfs EBCDIC 转 ASCII
我想要做的是能够通过 sshfs 通过 USS 在我的本地 PC 上挂载主机上的一些文件。 我可以做到这一点,但 sshfs 不能直接完成从 EBCDIC 到 ascii/unicode 的转换。 有没有我可以设置的标志。
或者,有人知道有一个库可以将 EBCDIC 转换为 ASCII 以便我可以添加到 SSHFS 吗?
干杯
马克
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请注意,透明的字符集转换是一个非常危险的游戏。 您是否绝对确定您不会通过 SSHFS 读取除 EBCDIC 文件之外的任何内容? 如果有二进制数据怎么办?
过去一些系统使用透明转换:
因此,我强烈建议您了解后果。
为什么不使用可以处理 EBCDIC 的编辑器? Vim 例如可以做到这一点(如果它被编译)。
Be aware though that transparent charset conversion is a very dangerous game. Are you absolutely sure that you will never read anything but EBCDIC files via SSHFS? What if there is binary data?
Some systems used transparent conversions in the past:
So I'd strongly advise to be aware of the consequences.
Why not use use an editor that can handle EBCDIC? Vim e.g. can do it (if it is compiled in).
有几个用于字符集转换的库 - iconv(通常是 C 库的一部分;请参阅
iconv_open
示例)和 GNU 重新编码。There are several libraries for character set conversion — iconv (normally part of your C library; see for example
iconv_open
) and GNU recode come to mind.我知道自最初的问题以来已经过去了很多时间,但我将在此处留下信息:
我为 sshfs 编写了一个补丁,它添加了 ASCII 和 EBCDIC 之间的自动转换。 可以在这里找到: https://github.com/vadimshchukin/sshfs-ebcdic
补丁添加“-t”命令行选项,该选项定义应转换的文件的正则表达式。 例如
sshfs -t".*"
定义所有文件的转换。
我必须对转换表进行“硬编码”,因为 EBCDIC 有多种“风格”,并且 iconv 没有根据需要在我的系统上将 ASCII 之间的文本转换为 EBCDIC。 这样做的优点是有人可以根据需要轻松更改该转换表。
顺便说一句,我为 win-sshfs 编写了相同的补丁。
I know a lot of time has passed since the original question but I'll leave the info here:
I've wrote a patch for sshfs which adds automatic conversion between ASCII and EBCDIC. It can be found here: https://github.com/vadimshchukin/sshfs-ebcdic
The patch adds "-t" command-line option which defines regular expression for files that should be converted. For example
sshfs -t".*"
defines conversion for all files.
I had to "hard-code" the conversion table since there are various "flavours" of EBCDIC and iconv didn't translate the text between ASCII as EBCDIC on my system as needed. The advantage here is that someone can easily change that translation table as needed.
By the way I wrote the same patch for win-sshfs.