Issue with mounting the file system .

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Issue with mounting the file system .
# 1  
Old 11-10-2012
Issue with mounting the file system .

Hi gurus,

Need your help ,
Am facing some issue with one of the ext3 file system.while rebooting it failed to mount fs after running fsck i tried manuall but still no luck.However i made the machine up but am unable to mount file system can some one please help me.

Code:
 
root@vm258902]~# cat /etc/fstab
/dev/VolGroup00/LogVol00 / ext3 defaults 1 1
LABEL=/boot /boot ext3 defaults 1 2
tmpfs /dev/shm tmpfs defaults 0 0
LABEL=INSTALL /customer/INSTALL ext3 defaults 1 2 <<<<<<<<<<
LABEL=INSTALL_01 /customer/INSTALL_01 ext3 defaults 1 2
 
root@vm258902]~# mount /customer/INSTALL
mount: special device LABEL=INSTALL does not exist
[root@vm258902]~# e2label /customer/INSTALL
e2label: Attempt to read block from filesystem resulted in short read while trying to open /customer/INSTALL
Couldn't find valid filesystem superblock.

Can some one pls help me i struck at this point .
# 2  
Old 11-13-2012
Have you tried mounting with the below command

Code:
#mount /dev/<particulat_partition> /customer/INSTALL

Could you share the O/P of fdisk -l



Thanks
Rajkumar.M

Last edited by Scott; 11-13-2012 at 12:44 AM.. Reason: Again, added code tags; removed link
# 3  
Old 11-13-2012
It's giving you the reason for not mounting in the output of your mount command:

Code:
mount: special device LABEL=INSTALL does not exist

So it's not able to find a filesystem with a label of "INSTALL" we need to figure out what the proper label for the filesystem is, which you can usually do with the blkid command's output. That will give you high level filesystem information (including filesystem label). If it's in the output but there's no label is assigned to it, you can either change /etc/fstab to mount the block device directly or use e2label on the block device (your use of e2label didn't work because you're using it on the directory you're mounting the filesystem on rather than the block device that the filesystem is on).

If you give us the output of blkid we can bring you through this step-by-step.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

NFS mounting issue

The server ip is 10.2.2.24. I have installed nfs-utils package the i have edited /etc/exports i have added the following line /home 10.2.2.0/24(rw,sync,no_root_squash,no_all_squash) i have saved, i have started the nfs service, then i am trying to mount nfs sharing from client machine using... (5 Replies)
Discussion started by: ainstin
5 Replies

2. UNIX for Dummies Questions & Answers

Mounting File System

Hi Team , Team Can any give me a good explanation of mount file system.:wall:if we have do a df -k it show /var/orcl/abc/txt mounted on /var/orcl. example : Filesystem 1K-blocks Used Available Use% Mounted on tmpfs 4021876 0 ... (2 Replies)
Discussion started by: kkabc789
2 Replies

3. Emergency UNIX and Linux Support

Problem mounting NTFS file System in REDHAT Enterprise 5

When I am trying to mount my windows partitions in REDHAT Enterprise Linux 5 using these command mount -t ntfs-3g /dev/sda1 /mnt/ntfs I have encountered with the problem mentioned below FATAL: Module fuse not found. ntfs-3g-mount: fuse device is missing, try 'modprobe fuse' as root I have... (3 Replies)
Discussion started by: dearanik
3 Replies

4. Solaris

File system Issue

Hi All, I am working with the Solaris 9. In df -h command / file system size is 9.6 GB , used 7.5 GB and avialble space is 2.1. OK But in du -hd command it is showing some 4.1 GB only. How to find out that remaining 3.4GB. Can you please help me ... Thanks and Regards, (1 Reply)
Discussion started by: lbreddy
1 Replies

5. UNIX for Dummies Questions & Answers

Facts about mounting remote file system

Say, we are going to mount a remote file system on our server. I am not too sure about how will data be transferred back to original host when it is written to the mounted FS. Could you please share an article or your knowledge on this? Thanks in advance; Stephen W. (2 Replies)
Discussion started by: swmk
2 Replies

6. Solaris

Mounting a NFS network file system across platforms - Solaris to AIX

Hi all, Kind of an emergency situation, I have to NFS mount an AIX filesystem on to a Sun Solaris OS (5.10). Typically from Sun to Sun is: mount -F nfs <remote file system>/dir <mount point> Which of course doesn't work if the remote file system is another OS (like AIX). Is there... (1 Reply)
Discussion started by: jeffpas
1 Replies

7. Solaris

mounting file system /etc/vfstab

Hello. When I use format command - It shows: /dev/dsk/c0d0s4 is normally mounted on /u02 according to /etc/vfstab. Please remove this entry to use this device. What does it mean? (4 Replies)
Discussion started by: panchpan
4 Replies

8. AIX

File system not mounting at bootup

Hi, I've got a recent problem with 2 file systems on an AIX 5.3 server. The fs's are marked to auto mount at startup and do show as being mounted after a a restart however if you cd to the mount point and 'df -g .' it shows the fs hasn't actually mounted. $ mount |grep SQLT0001.0 ... (2 Replies)
Discussion started by: m223464
2 Replies

9. Solaris

mounting windows(vfat) file system

how can i mount windows file system into solaris using vfstab or mount command. also please tell me how to display the partition information. (1 Reply)
Discussion started by: ajoy patel
1 Replies

10. UNIX for Advanced & Expert Users

Mounting an ISO As a file system in AIX

I want to mount an ISO image as a file system in AIX, have been unable to find a utility to do so after scouring the net. Bryan (1 Reply)
Discussion started by: murdaugh
1 Replies
Login or Register to Ask a Question