mount //192.168.xxx.xxx/remotefolder /localfolder -o username=Administrator,password=1234 -t smbfs


而 RHEL 5 上已经不能用了(会报错:unknown filesystem type 'smbfs'),我们只需要将文件系统类型从 smbfs 改为 cifs就行了
mount //192.168.xxx.xxx/remotefolder /localfolder -o username=Administrator,password=1234 -t cifs
英文解释:

Server Message Block (commonly abbreviated as SMB) protocol. This protocol is sometimes also referred to as the Common Internet File System (CIFS).

相关文章:

  • 2021-10-25
  • 2021-08-05
  • 2021-10-01
  • 2021-07-07
  • 2021-06-03
  • 2021-11-13
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-15
  • 2021-07-29
  • 2022-02-07
  • 2021-09-27
  • 2022-12-23
  • 2021-07-25
  • 2021-05-18
相关资源
相似解决方案