`

mount: unknown filesystem type 'smbfs'

 
阅读更多

今天在使用CentOS release 5.2 (Final),mount其它服务器的文件目录时

# mount -t smbfs -o username="administrator",password="" //192.168.1.100/cp /mnt/ntfs

提示出错:
mount: unknown filesystem type 'smbfs'

查资料后,说smbfs改为cifs了,所以要用下面的方法:

# mount -t cifs -o username="administrator",password="" //192.168.1.101/cp /mnt/ntfs

成功!!

分享到:
评论
1 楼 kandari 2014-06-20  
ok
但不知道为什么要cifs


相关推荐

    BackTrack5提示error-unknown filesystem怎么办.docx

    解决 BackTrack5 提示 error:unknown filesystem 问题的步骤 BackTrack5 是一个流行的 Linux 操作系统,然而,在某些情况下,可能会出现“error:unknown filesystem”错误,导致系统无法启动。以下是解决该问题的...

    linux mount报错:you must specify the filesystem type的解决方法

    mount: you must specify the filesystem type 先执行:mkfs.ext3 /dev/vdb # mkfs.ext3 /dev/vdb mke2fs 1.41.12 (17-May-2010) Filesystem label= OS type: Linux Block size=4096 (log=2) Fragment size=4096 ...

    c++删除某个路径下的所有文件(源代码和程序)

    删除文件的函数是`std::filesystem::remove_all()`,它会删除指定路径下所有文件和子目录。例如: ```cpp #include #include <filesystem> int main() { try { std::filesystem::path path_to_delete("your...

    c++移动、复制文件,新建目录

    std::filesystem::copy_file("源文件路径", "目标文件路径", std::filesystem::copy_options::overwrite_if_exists); std::cout 文件复制成功" << std::endl; } catch (const std::filesystem::filesystem_error&...

    c++ 17 std::filesystem for c++ 11 / c++ 14/ c++ 17/ c++ 20 on Windows, macOS, Linux和FreeBSD的实现。- gulrak /文件系统

    c++ 17 std::filesystem for c++ 11 / c++ 14/ c++ 17/ c++ 20 on Windows, macOS, Linux和FreeBSD的实现。- gulrak /文件系统-源码

    C++实现快速查找文件 C++实现快速查找文件

    首先,C++标准库提供了`<filesystem>`库(在C++17及以上版本中引入),它包含了对文件和目录的操作,如`std::filesystem::directory_iterator`,可以用来遍历文件系统中的文件。通过迭代器,我们可以轻松地查找特定...

    电脑开机错误出现unknown filesystem该如何解决?.docx

    解决电脑开机错误unknown filesystem的方法 在我们的电脑中安装了 Linux 系统或者其他类型的系统后,在重启电脑时可能会出现unknown filesystem的错误提示。这是由于开机引导文件找不到所致。此时,我们可以通过...

    boost filesystem version3

    6. **异常处理**:Boost FileSystem v3库遵循异常安全原则,当文件系统操作失败时,会抛出相应的异常,如`boost::filesystem::filesystem_error`,使得开发者能够捕获并处理错误。 在给定的文件列表中,我们看到有...

    boost file system应用

    3. **文件操作(File Operations)**:包括创建、删除、移动、复制文件和目录,例如`boost::filesystem::create_directory`、`boost::filesystem::remove`、`boost::filesystem::rename`和`boost::filesystem::copy_...

    Boost FileSystem demo

    Boost FileSystem demo

    Qt5发布版本的日志输出

    void customMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { QFile logFile("app.log"); if (logFile.open(QIODevice::WriteOnly | QIODevice::Append)) { QTextStream...

    开机自检时候提示mount local filesystem failed解决方案

    在IT领域,遇到“开机自检时候提示mount local filesystem failed”的问题时,这通常意味着系统在启动过程中未能成功挂载本地文件系统。这种情况可能由多种因素引起,包括但不限于硬件故障、文件系统损坏、配置错误...

    查找指定目录下的文件(包括子目录)

    在这个例子中,`listFilesInDirectory` 函数接受一个路径参数,然后使用`std::filesystem::recursive_directory_iterator`迭代器遍历指定目录及其所有子目录。如果迭代器当前指向的是一个常规文件(非目录),则输出...

    简单了解C++常见编程问题解决方案

    问题1:Unhandled exception at 0x00007FFDB39AA839 in TesseractLACadd1.exe: Microsoft C++ exception: boost::filesystem::filesystem_error at memory location 0x000000EAFABFEED0. 解决方案:我只能说,这个的...

    VC获取当前路径

    std::filesystem::path current_dir = std::filesystem::current_path(); ``` 3. 输出路径: ```cpp std::cout 当前路径为: " () << std::endl; ``` 完整的代码示例: ```cpp #include <filesystem> #include int ...

    查找文件 文件夹 C++

    - **按时间或大小搜索**:`std::filesystem::last_write_time`和`std::filesystem::file_size`可以获取文件的最后修改时间和大小,用于按这些属性筛选文件。 4. **文件操作**: - **打开文件**:使用`std::...

    大一c++实验文件系统

    例如,我们可以用`std::filesystem::create_directory`创建目录,`std::filesystem::path`表示文件或目录路径,`std::filesystem::remove`删除文件或目录,`std::filesystem::rename`重命名文件或目录,以及`std::...

    目录操作5个程序及关键点说明

    2. **创建与删除目录**:在C++中,可以使用`std::filesystem::create_directory`函数创建新目录,而用`std::filesystem::remove`函数删除空目录。如果要删除非空目录,需要递归处理其下的所有文件和子目录。 3. **...

    操作系统试验 文件目录管理

    在C++中,我们可以使用`std::filesystem::remove`或`std::filesystem::remove_all`函数来删除一个空目录或包含文件的目录。`remove`仅删除指定的空目录,而`remove_all`会递归删除整个目录树。例如,`std::...

Global site tag (gtag.js) - Google Analytics