similar to: Can't unmount floppy

Displaying 20 results from an estimated 10000 matches similar to: "Can't unmount floppy"

2010 Aug 12
4
can't unmount
I''m running into a situation where I can''t unmount a mounted snapshot. It shows "busy" even though neither lsof nor fuser show any open files. Umount -f doesn''t work although umount -l does. Is there anything else I can do to debug this scenario or to clear the busy status myself? Or am I down to rebooting each time? This is on stock ubuntu-10.04, x86.
2013 Mar 05
2
Need to unmount an LV from host system
Greetings - Ok, I made a mistake that I need to fix. Fortunately it is not a destructive mistake, but I need some advice on how to correct the problem. CentOS 6.3 host system named Earth I was creating some new logical volumes within my exiting volume group for a new virtual machine using the LVM GUI. When I created the LV that I plan to use for root partition of the new VM (Bacteria) I
2012 Oct 08
3
Force unmount??
Is there any method of forcibly umounting an NFS mounted directory? We have a test environment managed under puppet that is also our DR environment. In a DR scenario we''ll be umounting all NFS shares from out test array and remounting to our DR array. However, as this is a test environment we have users logged on, so when Puppet attempts to unmount the test directories, it fails
2013 Jan 18
1
unable to unmount drdb+ocfs2 with bind-mount active
Hi all, i?m not sure if my problem is realted to ocfs2 or to drbd, so i x-post this post to both lists. I?ve drbd-volume [v 8.3.9] (dual-primary) with ocfs2 [v 1.6.3] as a filesystem. If I add a "bind-mount" like /var/log/ispconfig/httpd/blog.schaal-24.de /srv/www/clients/client2/web323/log none bind,nobootwait 0 0 to /etc/fstab i`m unable to run umount /srv/www (which is
2013 Mar 04
1
[PATCH] fuse: Add guestmount-cleanup program to handle unmounting (RHBZ#916780).
* PATCH FOR DISCUSSION ONLY - NOT TO BE APPLIED * Colin suggested something which seems eminently sensible: https://bugzilla.redhat.com/show_bug.cgi?id=916780 I've been through a couple of rounds of trying to implement this. I started with adding the option as suggested to the guestmount program, but it tended to make the guestmount program more complex. More importantly, adding the option
2013 Mar 05
1
[PATCH v2] fuse: Add guestunmount program to handle unmounting (RHBZ#916780)
Since the first patch: - The program is now called 'guestunmount'. - I tested the --fd option and it appears to work. - You can now control retries / quiet. - Revised man pages. - Includes tests. I'm just running through the automated tests now. Rich.
2005 Jul 13
2
Problem unmounting loop device
I'm attempting to build a virtual disk image for qemu of CentOS4 on CentOS4. I'm having a problem after using yum --installroot to put a minimal filesystem on a partition located within the virtual disk. When I go to unmount it, I get "device is busy" errors. I know that I haven't left anything using that filesystem and lsof doesn't show anything, so I'm wondering
2018 Mar 07
2
kpartx can not detach
OS: EL6 - sometimes I use kpartx -a /mnt/.../lvdisk.img to map the partitions and mount them via /dev/mapper/loop0pX After using the disk (unmounting it) I noticed that detaching such mapping via kpartx -d does not result in freeing up the loop devices. Results: System reboots shows that the filesystem where lvdisk.img is located can't be unmounted. lsof, fuser, ps does not show
2010 Sep 11
5
vgrename, lvrename
Hi, I want to rename some volume groups and logical volumes. I was not surprised when it would not let me rename active volumes. So I booted up the system using the CentOS 5.5 LiveCD, but the LiveCD makes the logical volumes browsable using Nautilus, so they are still active and I can't rename them. Tried: /usr/sbin/lvchange -a n VolGroup00/LogVol00 but it still says: LV
2007 Jan 30
1
unable to boot zone
I''m unable to boot a zone after I did a sys-unconfig, how do I recover? GLOBAL ZONE: --------------------------- dmpk14a603# zoneadm list -cv ID NAME STATUS PATH 0 global running / 1 snitch-zone02 running /snitch-zone02 4 snitch-zone04 down /snitch-zone04 dmpk14a603# zoneadm -z snitch-zone04 boot zoneadm: zone
2003 Feb 21
4
how do i umount a device busy ?
I have mounted a win98 machine from a ML8.1 samba 2.2.2 The win98 machine, as all windows machines do, crashed on me. Now i can't unmount the mounted folder, If i do it from cli, i get umount usr/Cad12: device busy. If i try and cd to that folder, the console freezes and only kill application will shut it down. I tried as su and on another Virtual console as root, but it will not umount.
2003 Feb 27
3
forcing smbmount to unmount question
when you have something smbmounted with samba.. //ADMINISTRATOR@CALVIN_SR/M$ 112G 71G 41G 64% /mnt/samba and you unmount it and it gives you /mnt/samba is busy Im absolutely positive that I am NOT in the /mnt/samba dir, nor is anyone else. is there any way to force it to unmount? Jason
2016 Feb 08
2
vfs_shadow_copy2: unmount snapshot while user is restoring from it
Greetings, I am trying to use vfs_shadow_copy2 with samba samba-4.2.7. I have a share exported at /export/smb400/. A snapshot of the share is on a separate block device, which is mounted at /export_shadows/volume-00000001/@GMT-2016.02.08-11.48.00/. Samba configuration for the share is: vfs objects = shadow_copy2 shadow:snapdir = /export_shadows/volume-00000001 shadow:fixinodes = yes (Note: I
2008 Dec 23
4
UDEV rule allow users to unmount USB stick
I'm trying to understand why a normal user is not allowed to unmount their USB stick? I think it is most likely a udev rule. does anyone know ? Thanks Phil.
2011 Jan 26
2
how to unmount an NFS share when the NFS server is unavailable?
Hi All, How do I unmount an NFS share when the NFS server is unaivalable? I tried "umount /bck" but it "hangs" indefinitely "umount -f /bck" tells me the mount if busy and I can't unmount it: root at saturn:[~]$ umount -f /bck umount2: Device or resource busy umount: /bck: device is busy umount2: Device or resource busy umount: /bck: device is busy This
2013 Mar 09
4
[PATCH] use rcu_barrier() to wait for bdev puts at unmount
Doing this would reliably fail with -EBUSY for me: # mount /dev/sdb2 /mnt/scratch; umount /mnt/scratch; mkfs.btrfs -f /dev/sdb2 ... unable to open /dev/sdb2: Device or resource busy because mkfs.btrfs tries to open the device O_EXCL, and somebody still has it. Using systemtap to track bdev gets & puts shows a kworker thread doing a blkdev put after mkfs attempts a get; this is left over
2008 Jun 21
2
cannot unmount volume "xxx"
Hi all: I am using Centos 5.1. But now I have a problem when unmount a removable usb hard disk with right click and choose unmount volume command. When I did that, system reminds me with a message like this:Cannot unmount volume "xxx", Detail: Cannot remove directory, "xxx" represents a temporary directory made when the system auto mount the disk in /media, and
2002 Oct 16
1
Possible bug in SAMBA connection close?
Hey all, I've been fighting a samba share/unmount problem for several days now and may have found a bug in the connect/disconnect code. Basically, it seems that while everything claims to free the connection to the share, it doesn't actually happen. This is me closing ALL windows to the server: log.smbd: jon1 (192.168.200.2) connect to service disc1_pc_test as user breakit (uid=501
2013 Apr 07
4
floppy drives
Yes, really. I've got hundreds of the damn things here at home, and I want to go through them and get rid of them all. But... to do that I want to read them. I have both a 5.25" and a 3.5" drive, both are plugged in, but in the BIOS, all I see is the 3.5". Fine, I figure I'll take care of those. Nope. I see /dev/fd0 once I've booted up, but neither konqueror nor
2016 Feb 10
1
vfs_shadow_copy2: unmount snapshot while user is restoring from it
Hi Jeremy, The use case is that we want to automatically rotate the snapshots. For example, we want to keep 24 hourly snapshots, and every hour we create a new snapshot and unmount the oldest one. But since customers can be restoring from the oldest snapshot right now, it is not deterministic when we will be able to unmount the oldest snapshot. So at that moment we want all active restore