similar to: Question about cleanly unmounting slave bind mounts

Displaying 20 results from an estimated 5000 matches similar to: "Question about cleanly unmounting slave bind mounts"

2014 Sep 26
0
Bind mounts
The test program below demonstrates how to use bind mounts to mount a subdirectory over the root directory. It is using the debug backdoor, but I guess we could consider adding a bind-mount API instead. [Note that guestfs_mount_options doesn't work because it expects the third argument to be a device, not a directory name.] Rich.
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
1999 Jun 19
0
Unmounting Samba shares first...
Hi Mikkel! Yes, of course. Why didn`t I see this? Simple solution. Thank you very much for that hint! Bye, Levent. > There are a couple of ways to do this, depending on what distribution > you are running. What you want to do is run umount -a -t smbfs > before the network is shut down. This will unmount all the file > systems in /etc/mtab of the type smbfs. You could add this
2019 May 20
1
Fw: Btrfs Samba and Quotas
On Mon, May 20, 2019 at 05:54:13PM +0000, Hendrik Friedel via samba wrote: > Hello, > > > Is btrfs becoming more common ? > In my impression: Yes. Also, this problem seems to affect also zfs and thus > all (?) file systems that support checksums and scrubbing in linux; > consequently all filesystems that are the choice of users who need this for > ensuring data
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.
2011 Feb 17
1
Looping Device unmounting problem
Dear All, I have created 252 loop devices in my system and i mounted few iso filses into loop devices .when i rebooting the system error showing "faild to umount " how can forcefully umount the loop device -- Thanks and Regards, -------------------------------------- Dixson Rodriges, Sr.Support Engineer, MoB:+91-9388534765,09249500533 Email: dixan23 at gmail.com,amdixan at
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
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
2017 Sep 05
0
samba gluster vfs & symlinks/submounts... ?
.. or just a way to make samba, when samba shares via glusterfs api, to show in a share/vol a submount(like fs bind) - how, if possible at all? I guess it would have to be some sort of crossing from one vol to another vol's dir or something, hmm... many thanks, L.
2020 Nov 15
5
(C8) root on mdraid
Hello everyone. I'm trying to install CentOS 8 with root and swap partitions on software raid. The plan is: - create md0 raid level 1 with 2 hard drives: /dev/sda and /dev/sdb, using Linux Rscue CD, - install CentOS 8 with Virtual Box on my laptop, - rsync CentOS 8 root partition on /dev/md0p1, - chroot in CentOS 8 root partition, - configure /etc/mdadm.conf, grub.cfg, initramfs, install
2004 Aug 09
0
ssh remote command fuser problem
I've set up public/private key authentication between a Solaris 9 system running SSH Version Sun_SSH_1.0, protocol versions 1.5/2.0. and a Soalris 8 system running OpenSSH_3.8p1, SSH protocols 1.5/2.0, OpenSSL 0.9.7d 17 Mar 2004 Cannot get remote command fuser to work (although other commands ok) I've got ssh and sftp and scp finally to work, but I am left with one problem, I can use
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
2015 Feb 13
1
[PATCH] fuse: Alternatives for Linux-specific commands
* fusermount is Linux-only; on BSD and OS X umount should be used * fuser has no -v flag on BSD/OSX, and -c is the POSIX-compatible equivalent of -m * Does not solve the lack of pretty output of fuser -v, but does make it work on Mac OS X. --- fuse/guestunmount.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/fuse/guestunmount.c b/fuse/guestunmount.c index 3df481b..94c3ec7
2023 Apr 04
1
Virtiofsd
Hi In QEMU 8 virtiofsd has been removed in favor of the rust version. Which includes options that are not longer supported, Do you have a view on what should be used going forwards to support virtiofsd in libvirt with qemu 8? The options are showing as depreciated, -o <compat-options>... Options in a format compatible with the legacy implementation [deprecated] Rust
2011 Feb 01
1
Rmpi; sample code not running, the slaves won't execute commands
Hi All, I'm trying to parallelize some code using Rmpi and I've started with a sample 'hello world' program that's available at http://math.acadiau.ca/ACMMaC/Rmpi/sample.html. The code is as follows; # Load the R MPI package if it is not already loaded. if (!is.loaded("mpi_initialize")) { library("Rmpi") } # Spawn as many slaves as possible
2015 Feb 09
0
[PATCH 5/5] macosx/bsd: Alternatives for linux-specific commands
* Workaround for linux-specific fuser -v * Workaround for linux-specific fusermount --- fuse/guestunmount.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/fuse/guestunmount.c b/fuse/guestunmount.c index 3df481b..2190ba0 100644 --- a/fuse/guestunmount.c +++ b/fuse/guestunmount.c @@ -257,7 +257,12 @@ do_fusermount (const char *mountpoint, char **error_rtn) /* We have to
2019 Nov 27
0
systemd: Failed unmounting /var on reboot, should I worry about fs corruption?
In article <db155fbf-7c80-f89f-d401-fcc1097dfe76 at c4.cz>, J??n Lalinsk?? <lalinsky at c4.cz> wrote: > Hi all, > > I have Centos 8 installed on a physical machine (www6) with separate LVM > volumes for /, /var, /var/lib/mysql etc. > > System boot proceeds without a hiccup, in terminal systemctl status says > everything is OK and running, journalctl says so as
2003 Jun 24
1
Can we resize an ext23 partition without unmounting ??
Hi all, Can we resize an ext3 partition without unmounting? Regards, Sugunakar Ambati
2005 Jan 31
1
Error unmounting ?
When i shutdown my computer i see the following message: Unmounting file systems: umount2: Device or resource busy umount: /var: device is busy What is the error ??? I install centos 3.4 on i386. Thanks for help
2004 Aug 24
2
Unmounting Errors On Reboot
I am receiving these errors when rebooting my system. Unmounting file systems: (1785) ERROR: unable to sendmsg, error=-101, Linux/ocfsipc.c, 394 (1785) ERROR: status = -999, Linux ocfsipc.c, 206 ocfs: Unmounting device (104,33) on rac1-priv1.collo.corp.net (node 2) (1785) ERROR: unable to sendmsg, error=-101, Linux/ocfsipc.c, 394 (1785) ERROR: status = -999, Linux/ocfsipc.c, 206 It