search for: fuser

Displaying 20 results from an estimated 178 matches for "fuser".

Did you mean: user
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 ssh from sol9 to sol8 to start a remote session. I can ssh from sol9 to sol8 to execute some remote commands, but not fuser i.e. all from the solaris 9 system ssh user...
2016 Mar 18
9
[PATCH 0/7] Small portability changes
Assorted collection of small improvements in making libguestfs build on non-Linux OSes; most of the changes impact tests though. Thanks, Pino Toscano (7): build: check the path of fuser, and use it in FUSE code tests: move guestfs-md5.sh to test-data v2v: tests: isolate SHA1 calculation in an own shared function v2v: tests: use guestfs-hashsums.sh for MD5 php: pass $(MAKE) to run-php-tests.sh build: check the path of true, and use it in tests build: improve GUESTFS_FIN...
2015 Feb 22
5
unable to umount
...t they were all halted. service xendomains stop $ xm list Name ID Mem(MiB) VCPUs State Time(s) Domain-0 0 3000 2 r----- 695.1 $ service xend stop nothing is using the partition $ lsof |grep srv <empty> $ fuser -m /srv <empty> $ fuser -km /srv <empty> but i can not umount /srv $ umount /srv umount: /srv: device is busy umount: /srv: device is busy what could keeping the device "busy" ... ? __ Thanks, LF
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 inse...
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_fusermoun...
2015 Apr 28
2
Crashes in dovecot -hg (86f535375750)
...h-path" or "set sysroot"? [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib64/libthread_db.so.1". Core was generated by `dovecot/imap'. Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007f186087693a in fts_user_free (fuser=0x0) at fts-user.c:187 187 fts-user.c: No such file or directory. (gdb) bt full #0 0x00007f186087693a in fts_user_free (fuser=0x0) at fts-user.c:187 user_langp = 0x300000008 #1 0x00007f1860876ac2 in fts_mail_user_deinit (user=0x20a3eb0) at fts-user.c:215 fuser = 0x0 #2...
2013 Oct 17
2
Re: Notes on getting libguestfs to work on Mac OS X
...(xdrp && ret && !xdrp (&xdr, ret)) -> if (xdrp && ret && !xdrp (&xdr, ret, 0)) - src/launch-direct.c: comment out - if (qemu_supports (g, data, "-nodefaults")) ADD_CMDLINE ("-nodefaults"); - fuse/guestunmount.c: replace - execlp ("fusermount", "fusermount", "-u", mountpoint, NULL); -> execlp ("/sbin/umount", "fusermount", mountpoint, NULL); - fuse/guestunmount.c: replace - execlp ("/sbin/fuser", "fuser", "-v", "-m", mountpoint, NULL); -> exe...
2013 Oct 17
4
Notes on getting libguestfs to work on Mac OS X
..., ret, 0)) - src/launch-direct.c: comment out - if (qemu_supports (g, data, "-nodefaults")) ADD_CMDLINE ("-nodefaults"); [This works around a qemu bug: qemu: qemu_mutex_lock: Invalid argument when using the -nodefaults parameter] - fuse/guestunmount.c: replace execlp ("fusermount", "fusermount", "-u", mountpoint, NULL); -> execlp ("/sbin/umount", "fusermount", mountpoint, NULL); - fuse/guestunmount.c: replace execlp ("/sbin/fuser", "fuser", "-v", "-m", mountpoint, NULL); -> exec...
2015 Feb 09
11
[PATCH 1/5] macosx: Add required third parameter for xdrproc_t callbacks
>From Apple's xdr.h: "If your code invokes an xdrproc_t callback, it must be modified to pass a third parameter, which may simply be zero." --- src/proto.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/proto.c b/src/proto.c index 92ae84d..57f4882 100644 --- a/src/proto.c +++ b/src/proto.c @@ -252,7 +252,12 @@ guestfs___send (guestfs_h *g, int proc_nr, *
2010 Sep 28
3
netstat - kill by pid ?
I am writing a small script to kill process(es) listening on particular port number. Here I am particularly looking at Java servlet-containers like Tomcat and JBoss, which sometimes don't complete their shutdown process and it still shows up as running process with ps or netstat. This needs to be kill-ed and for that knowing pid of that process is necessary. The netstat by default doesn't
2015 Feb 22
0
unable to umount
...ID Mem(MiB) > VCPUs State Time(s) Domain-0 0 > 3000 2 r----- 695.1 > > $ service xend stop > > > nothing is using the partition $ lsof |grep srv <empty> Run as root: # lsof +D /srv > > $ fuser -m /srv <empty> > Again, run this as root. Compare (test example from my system): $ fuser -m /boot 2>/dev/null | wc 0 44 264 # fuser -m /boot 2>/dev/null | wc 0 223 1338 That's 180 processes I'd miss as an ordinary user. > $ fuser -km /srv...
2015 May 04
0
Crashes in dovecot -hg (86f535375750)
...sysroot"? > [Thread debugging using libthread_db enabled] > Using host libthread_db library "/lib64/libthread_db.so.1". > Core was generated by `dovecot/imap'. > Program terminated with signal SIGSEGV, Segmentation fault. > #0 0x00007f186087693a in fts_user_free (fuser=0x0) at fts-user.c:187 > 187 fts-user.c: No such file or directory. > (gdb) bt full > #0 0x00007f186087693a in fts_user_free (fuser=0x0) at fts-user.c:187 > user_langp = 0x300000008 > #1 0x00007f1860876ac2 in fts_mail_user_deinit (user=0x20a3eb0) > at fts-user.c:...
2013 Mar 05
2
Need to unmount an LV from host system
...5.0G 3.9G 880M 82% / I tried to unmount the device, but as shown below, it is busy. [root at earth ~]# umount /dev/mapper/vg_mei-lv_bacteriaroot umount: /: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1)) I tried to force unmount the device, but that failed also. [root at earth ~]# umount -f /dev/mapper/vg_mei-lv_bacteriaroot umount2: Device or resource busy umount: /: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1...
2013 Jan 18
1
unable to unmount drdb+ocfs2 with bind-mount active
...log.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 drbd-volume with ocfs2). umount: /srv/www: device is busy. (In some cases useful info about processes that use the device is found by lsof(8) or fuser(1)) Neither "lsof|grep www" nor "fuser -km /srv/www" show anything. I must first unmount the log-dir by hand before "umount /srv/www" could be executed. Any suggestions how to fix this? regards Florian
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. --rich -- To unsubscribe from this list: send the...
2019 Nov 27
5
[v2v PATCH v2 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga -- now with working test suite. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am
2007 Sep 22
4
ActiveResource, find(1) works but no find(:all)
Hi, I''m on edge and Fuser.find(1) works but Fuser.find(:all) shows the error [1]. Fuser is declared here [2]. Do you know what''s happening? Thanks. [1] ActiveResource::ServerError: Failed with 500 Internal Server Error from /.../vendor/rails/activeresource/lib/active_resource/connection.rb:124:in `handle_...
2010 Jan 17
4
Snapshot that won''t go away.
I have a Solaris 10 update 6 system with a snapshot I can''t remove. zfs destroy -f <snap> reports the device as being busy. fuser doesn''t shore any process using the filesystem and it isn''t shared. I can unmount the filesystem OK. Any clues or suggestions of bigger sticks to hit it with? -- Ian.
2019 Nov 27
6
[v2v PATCH 0/5] Various build cleanups
Brought to you by the "I haven't rebuilt the libguestfs universe in a while" saga. Pino Toscano (5): build: remove extra gnulib submodule build: remove extra checks and submodules build: stop using gnulib in test-harness build: remove unused gnulib modules Remove extra entries from podfiles .gitmodules | 3 -- Makefile.am | 2 - bootstrap
2018 Mar 07
2
kpartx can not detach
...itions 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 any usage. Even removing the device node via dmsetup remove /dev/mapper/loop0pX does not help. Trying to unmount the underlying filesystem still shows /mnt: device is busy. Any other suggestions would be greatly appreciated! -- Thanks LF