在 ubuntu 机器上安装 windows 共享

在 ubuntu 机器上安装 windows 共享

我正在使用 Linux 系统,并尝试windows share使用以下命令在我的 Linux 机器上安装:

apt-get update
apt-get install cifs-utils
sudo su
mkdir /HPC-Archive
ls /HPC-Archive/
mount -t cifs -o user=my_user_name //windows_share_folder /my_mount_folder/
ls /HPC-Archive/ (to check if the windows share is mounted or not)

当我运行此命令时,会出现此错误:

mount error(5): Input/output error
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)

你知道如何解决这个问题吗?

答案1

mount.cifs 的手册页显示 mount.cifs {service} {mount-point} [-o options]

服务:使用//server/share 语法(您的 mount 命令中缺少共享部分)我假设/my_mount_folder = /HPC-Archive?

选项可以放在其他参数之前

相关内容