Refference: http://www.cyberciti.biz/faq/missing-codepage-helper-program-other-error/
I've netapp NFS server with /data3 as shared directory. I type the following command at Ubuntu Linux to mount the NFS server:
mount fs2:/data3 /nfs/
OR
mount 192.168.1.100:/data3 /nfs/
But I'm getting an error which read as follows:
mount: wrong fs type, bad option, bad superblock on fs2:/data3,
missing codepage or helper program, or other error
(for several filesystems (e.g. nfs, cifs) you might
need a /sbin/mount. helper program)
In some cases useful info is found in syslog - try
dmesg | tail or so
How do I fix this problem?
NFS client needs portmap service, simply install nfs-comman package as follows to fix this problem:
$ sudo apt-get install nfs-common
Make sure portmap service is running:
sudo service portmap status
Sample outputs:
portmap start/running, process 4193
If not just start it:
$ sudo service portmap start
One installed you can see all shared NFS directories as follows:
showmount -e fs2
Sample outputs:
Export list for fs2:
/Sales
/Web
/Accounting
/Recordings
/Public
/Network Recycle Bin 1
/Music
/Download
/Games
/Family
Simply run mount command again:
$ sudo mkdir /nfs
$ sudo mount fs2:/data3 /nfs/
$ ls /nfs
分享到:
相关推荐
然而,如果在尝试挂载新硬盘时遇到"wrong fs type, bad option, bad superblock on /dev/sdb"这样的错误,可能意味着硬盘的文件系统类型不正确、挂载选项有误或超级块损坏。以下是一份详细的步骤指南,帮助你解决这...
Linux 系统中挂载和使用光盘的基本步骤 Linux 系统中的挂载是指将一个文件系统连接到另一个文件系统的过程。在本文中,我们将详细介绍 Linux 系统中挂载和使用光盘的基本步骤。 一、创建挂载点 在 Linux 系统中...
在异常处理部分,文档中提到了一个错误提示“mount: wrong fs type, bad option, bad superblock”,这通常意味着挂载命令指定了错误的文件系统类型,或者使用了不正确的挂载选项。此外,错误还提示可能缺少代码页或...
mount: wrong fstype, bad option, bad superblock on ubi0_0, missing codepage or helper program, or other error ``` 可通过 `dmesg | tail` 查看更详细的错误信息。例如: ``` [40278.359982] UBIFS error ...
Linux 文件系统 superblock 故障修复归类 本文档主要讲述了 Linux 文件系统 superblock 故障的修复过程。Superblock 是文件系统的核心组件,负责存储文件系统的 metadata,例如文件系统的结构、inode 链表、块分配...
### Linux硬盘坏道修复与LVM分区Superblock损坏的处理 #### 一、问题背景及分析 在Linux环境中,遇到硬盘或分区问题时,正确的诊断和处理方式至关重要。本文通过一个具体的案例,来探讨如何应对Linux系统中硬盘的...
本文将深入探讨Linux文件系统的基础概念,包括inode、datablock、superblock以及它们在文件系统中的作用。 首先,让我们了解文件系统的基本结构。文件系统(File System)定义了数据在硬盘等存储设备上的组织方式,...
如果尝试挂载 NFS 服务器时遇到问题,比如出现“wrong fstype, bad option, bad superblock”等错误,可以按照以下步骤解决: 1. 安装 NFS 共享所需的软件包: ```bash sudo apt-get install nfs-common ``` 2. ...
"Linux 文件系统之 mount 流程分析" Linux 文件系统的 mount 过程是一个复杂的过程,它涉及到多个内核函数的调用和交互。下面将对 Linux 文件系统的 mount 过程进行分析和说明。 一、 Mount 过程的整体架构 Linux...
3. 卸载RAID中所有的磁盘信息:mdadm --misc --zero-superblock /dev/sdb、mdadm --misc --zero-superblock /dev/sdc、mdadm --misc --zero-superblock /dev/sdd、mdadm --misc --zero-superblock /dev/sde ...
ext2fs虽然在后来被ext3(增加了日志功能)和ext4(支持更大文件系统和文件大小)等更先进的文件系统取代,但它的设计思想和实现方式对理解现代Linux文件系统至关重要。通过中山大学万海教授的讲解,我们可以更深入...
关于SUPERBLOCK的简要概述,是一种优化的闪存存储方式
Linux系统EXT3修复工具是针对Linux环境中广泛使用的EXT3文件系统的故障排查和恢复工具。EXT3,全称为“Third Extended File System”,是Linux系统的一种日志文件系统,它在90年代末期由Hans Reiser开发并逐渐成为...
### Linux RHEL7 存储结构与磁盘分区 #### 存储结构介绍 Linux操作系统下的存储结构主要包括:文件系统、inode、block 和 superblock。理解这些概念对于管理存储资源至关重要。 - **文件系统(File System)**:是...
在 UNIX V6++ 文件系统中,有两个至关重要的概念:SuperBlock 和 Inode。 **SuperBlock** SuperBlock 是文件系统在磁盘上的一个关键组件,它存储了整个文件系统的基本信息。SuperBlock通常位于磁盘的固定位置,如...
SQUASHFS 1.3r3 - A squashed read-only filesystem for Linux Copyright 2004 Phillip Lougher (phillip@lougher.demon.co.uk) Released under the GPL licence (version 2 or later). Squashfs is currently ...
example 3: %mksquashfs /home/phillip/test goodies test output_fs This is the same as the previous example, except a third source directory "test" has been specified. This conflicts with the first ...
Linux虚拟文件系统(VFS,Virtual File System)是Linux内核的一个重要组成部分,它为不同的文件系统提供了一个统一的接口,使得用户空间的应用程序可以透明地访问各种类型的文件系统,无需关心具体文件系统的实现...
Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632 Writing inode tables: done Creating journal (32768 blocks): done Writing superblocks and filesystem...
3. **参考解决方案**:虽然嵌入式环境与 PC 上的环境不同,但可以从类似问题的解决方案中获取灵感。例如,对于 PC 上的 Ubuntu 系统,可能需要修复文件系统、重新挂载或使用检查工具来诊断问题。然而,在嵌入式环境...