- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- umount a filesystem
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:41 AM
10-26-2001 03:41 AM
How do I unmount a bud filesystem. Below are the error while trying to umount/mount, remove the FS.
# umount /eagle/arc
umount: cannot unmount /eagle/arch : I/O error
# mount /dev/vg02/eagleorclarch /eagle/arch
mount: /eagle/arch: I/O error
# rm eagle
rm: cannot stat eagle: I/O error
thanks,
joks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:45 AM
10-26-2001 03:45 AM
Re: umount a filesystem
Is this a filesystem on a logical volume?
if do:
vgdisplay -v | grep stale
can you give us the output of the mount command, or cat /etc/mnttab.
do you hav disk errors in /var/adm/syslog/syslog.log?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 03:52 AM
10-26-2001 03:52 AM
Re: umount a filesystem
Make sure /eagle/arc is a filesystem
and is a local FS. It could also be
under /eagle or / !
#bdf /eagle/arc
will show whether it is a FS, if it displayes
/eagle/arc corresponding to a LV path.
It will also show whether is a local FS and
not a NFS FS.
Then, make sure it is not being used by anybody
#fuser /eagle/arc
#fuser -cu /eagle/arc will display the processes using it (in case they are).
If there are processes using the FS, you
need to get the details of those processes
through ps output and make sure you can
kill them. (if a Database or application
is writing to the FS, beware!).
All said, the following error --
<<# rm eagle
rm: cannot stat eagle: I/O error >>
-- seems to point that the eagle directory/fs
is an NFS filesystem.
Do #mount |grep eagle and see what
error it gives.
Also do a cat /etc/xtab to see what were
the NFS filesystems mounted previously.
You need to get the NFS server name and
check at the server end.
-R
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 04:13 AM
10-26-2001 04:13 AM
Re: umount a filesystem
Its not an NFS filesystem, there was no user of the FS. See also error while command bdf.
::> bdf |grep eagle
bdf: /eagle: I/O error
thanks,
joks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 06:35 AM
10-26-2001 06:35 AM
Re: umount a filesystem
Try :
1. ioscan
2. ioscan -fnkCdisk ?? more
3. Look for any disk different from CLAIMED.If yes there is a problem
4. Check your OnLine terminator if any.
5. File system check, using "fsck" command to fix this I/O error.
6. Hope you got a backup of that directory, try using :
lvreduce, lvremove and then lvcreate, newfs
If it didn't fix that problem , I'm afraid that you need to replace the bad disk.
Magdi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 06:57 AM
10-26-2001 06:57 AM
Re: umount a filesystem
You can then do a lvdisplay on that logical volume.
But also look at which volume group the logical volume is in and do a:
vgdisplay -v vg?? on that volume group.
At the bottom you will see what physical group (disk) this volume is using. Then you can use ioscan -fnC disk to determine which disk device is involved. The errors indicate a problem with a hard drive, maybe just a connection problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 07:16 AM
10-26-2001 07:16 AM
Re: umount a filesystem
In addition, check if the disk (one of the disks) of the vg02 has not been used for an other vg.
vgdisplay -v vg02 (to list the disks), or strings /etc/lvmtab,
pvdisplay /dev/dsk/cxtydz for all disks of vg02
Indeed, if someone made a pvcreate -f on one of the disks of vg02, it can explain the I/O error.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 07:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 07:30 AM
10-26-2001 07:30 AM
Re: umount a filesystem
The same error comes out when mounting..I think only a reboot can clean this things. I can vgdisplay & lvdisplay w/o an error.
thanks,
joks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-26-2001 09:56 AM
10-26-2001 09:56 AM
Re: umount a filesystem
Is that an external drive? If so, is it powered? One of my users got the same error when he tried to mount a partition that was on an external hdd that wasn't switched on (its case, that is)
E.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2001 02:47 AM
11-20-2001 02:47 AM
Re: umount a filesystem
After a reboot, I/O error was gone..I realy appreciate your help.
thanks,
joks