挂载cifs文件系统类型 报错mount: /mnt: bad option解决

在Ubuntu上执行挂载命令:
sudo mount -t cifs -o domain=leiligroup,user=zrt1234,password=LEIli1234 //lsn-zbb8377/data /mn
时报出如下错误:
mount: /mnt: bad option; for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program.

解决方法:
sudo apt install -y cifs-utils
centos下安装方法:yum install -y cifs-utils

接着使用命令挂载
sudo mount.ntfs -o domain=leiligroup,user=zrt1234,password=LEIli1234 //lsn-zbb8377/data /mnt
挂载成功(临时挂载)

原文地址:https://blog.51cto.com/3108485/2444458

时间: 2024-10-31 10:06:14

挂载cifs文件系统类型 报错mount: /mnt: bad option解决的相关文章

【Linux基础】mount报错:mount.nfs: Remote I/O error

mount 报错:mount.nfs: Remote I/O error 挂载时需要指明版本,由于NFS服务器有多个版本,V2.V3.V4.而且各版本同时运行,因此挂载时需要说明版本号. 由于NFS V2最大只支持32BIT的文件大小(4g),而NFS V3则支持64BIT文件大小.另外V3对于V2还有其他优势,比如文件传输,异步写入等,因此建议采用V3进行访问. 解决办法:mount 加选项 -o nfsvers=3或者-o nfsvers=2       后面IP:/.../..   /..

安装wps导致 application/kset 上传文件类型报错解决办法

电脑中安装wps上传execl时,上传.xls文件时 报错 application/kset 文件类型不正确 打印array() print_r($_FILES ) 结果如下: Array ( [userfile] => Array ( [name] => Template.xls[type] => application/kset[tmp_name] => C:\\Windows\\temp\\phpACC.tmp [error] => 0 [size] => 768

shutil.copytree拷贝目录到cifs格式路径报错临时解决办法

shutil.copytree拷贝目录到cifs格式路径报错临时解决办法: 报错原因: 我理解是因为不能保留cifs路径的目录原时间戳(提示权限拒绝),非cifs格式路径不存在该问题 临时解决办法: 通过os.system调用另1个shell脚本(rsync拷贝目录)解决,rsync也是报权限拒绝,不过区别是rsync不影响脚本继续进行(shutil.copytree是直接报错终止) 原文地址:http://blog.51cto.com/yangzhiming/2135844

解决JVM启动报错:Unrecognized VM option &#39;+HeapDumpOnOutOfMemeryError&#39;

今天再搞一些OutOfMemery的相关知识探索,我想在JVM遇到OOM错误的时候,能够打印出heap dump,以便事后用Eclipse Memory Analyzer Tool(MAT)等内存分析工具分析内存的占用情况.我使用了JDK1.6.0_37和JDK1.7.0_60版本进行试验,到网上找了下,知道-XX:+HeapDumpOnOutOfMemoryError可以让JVM在探测到内存OOM的时候打印dump.但是在JVM启动参数添加这个参数的时候,JVM启动失败: Unrecogniz

客户端挂载nfs报错mount: wrong fs type, bad option, bad superblock on...

解决客户端挂载nfs是出现如下报错问题:      mount: wrong fs type, bad option, bad superblock on 172.16.1.9:/home/addam,        missing codepage or helper program, or other error        (for several filesystems (e.g. nfs, cifs) you might        need a /sbin/mount.<type

STL中map容器使用自定义key类型报错详解

引言 STL的map容器中,key的类型是不是随意的呢? 实践 编写测试代码 定义一个结构体来试试: struct a { char* pName; int m_a; }; map<a, int> mp; a a1; a1.m_a = 100; a1.pName = "a1"; a a2; a2.m_a = 200; a2.pName = "a2"; mp.insert(std::make_pair(a1, 1)); mp.insert(std::mak

关于字符串类型强转为基本类型报错的一些问题

关于字符串强转为基本数据类型时,不能使用: String a="2"; int b=(int)a; 这个方式编译器是会报错的,只能使用: String a="2"; int b=Integer.parseInt(a); 或者: int b=Integer.valueOf(a);

关于当传过来的值转换成string类型报错的问题

有时候直接写 string str=request.param["str"].tostring;会报错,是因为接受到的值可能是空的 这个时候就可以这样写 string _action = string.Format("{0}", Request.QueryString["str"]); 这样写就不会报错了

django 创建QueryDict类型报错

报错信息:django.core.exceptions.ImproperlyConfigured: Requested setting LOGGING_CONFIG, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings. 解决办法: