search for: hostshared

Displaying 15 results from an estimated 15 matches for "hostshared".

2002 Jul 23
4
ext3 device reported to be 100% full, but we do not know where?
Hello to everybody here, We have a strange problem with ext3. df reports 28 of 30 GB to be used (rest may be slack) which it calls 100% used. But with du we can only find 13 GB, most of it actually in pretty large files (archives). Where are the other 17 GB gone? Thanks Michael -- Hostsharing eG / Boytinstr. 10 / D-22143 Hamburg phone+fax:+49/700/HOSTSHARI(ing) (= +49/700/46787427)
2014 Mar 20
2
Re: [virt-tools-list] Linux host / Windows guest sharing
Thank you. The clipboard sharing working now. Do you have any idea for the mount issue? I suppose there is a way to share a specific directory between the guest and host like I did with vbox for example What exact modules needed for this function? The error message I've got this: mount -t 9p -o trans=virtio,version=9p2000.L hostshare /tmp/hostfiles mount: special device hostshare does not
2014 Mar 20
2
Linux host / Windows guest sharing
Hi, I'm almost give up again because for a day I try to access my windows kvm guest from FC20 :) I've tried everything including virtio mapping mount -t 9p -o trans=virtio,version=9p2000.L hostshare /tmp/hostfiles where I get the following messages mount: special device hostshare does not exist --- --- to be honest clipboard sharing would be enough for me, so I googled why it is not
2014 Mar 20
1
Re: [virt-tools-list] Linux host / Windows guest sharing
The spice-vdagent should be running in the guest. Have you installed the spice guest tools in your windows guest? Download them here: http://www.spice-space.org/download.html That should get clipboard sharing working. ----- Original Message ----- > From: "Laszlo Pal" <vlad@vlad.hu> > To: libvirt-users@redhat.com, virt-tools-list@redhat.com > Sent: Thursday, March 20,
2014 Mar 20
1
Re: [virt-tools-list] Linux host / Windows guest sharing
Thank you. It is clear now, so it was user error and I should read more documentation :) Unfortunately drag and drop isn't working. Is there any prerequisite? My host is FC20 and guest is Win2k8 server Thank you Vlad On Thu 20 Mar 2014 05:42:40 PM CET, Jonathon Jongsma wrote: > ----- Original Message ----- >> From: "Laszlo Pal (private)" <vlad@vlad.hu> >>
2015 Feb 07
4
getting guestfs_rsync_out to work
All- Per this page https://rwmj.wordpress.com/2013/04/22/using-rsync-with-libguestfs/ We are trying to get the libguestfs API guestfs_rsync_out to work. We’ve tried combinations similar to: guestfs_rsync_out(g, “/HostShared”, “rsync://root@10.0.1.90:2999/backup/ -av”, -1) surrounding it with APIs as in the recipe examples, for example replacing libguestfs_cat(), with no luck. In the above example the "backup" rsync module name matches the script on Richard's wordpress.com blog page (above link). Typica...
2014 Mar 20
0
Re: [virt-tools-list] Linux host / Windows guest sharing
----- Original Message ----- > From: "Laszlo Pal (private)" <vlad@vlad.hu> > To: "Christophe Fergeau" <cfergeau@redhat.com> > Cc: libvirt-users@redhat.com, virt-tools-list@redhat.com, "Jonathon Jongsma" <jjongsma@redhat.com> > Sent: Thursday, March 20, 2014 11:29:37 AM > Subject: Re: [virt-tools-list] Linux host / Windows guest sharing
2015 Feb 09
2
Re: getting guestfs_rsync_out to work
...network backup. We don't need to use rsync. We know which files will change. For example even if we do this (error checking removed): while (1) { guestfs_mount_options(g, "sync", "/dev/sda2", "/"); printf("%s\n", guestfs_cat(g, "/HostShared/temp.txt")); guestfs_umount(g, "/"); guestfs_fsync(g); usleep(1000*1000); } temp.txt from the Win7 guest is copied correctly the first time, but afterwards any change we make to it (e.g. using Win7 Notepad) is never seen. That's the issue. Is there any...
2015 Feb 08
1
Re: getting guestfs_rsync_out to work
...>> Per this page >>> >>> https://rwmj.wordpress.com/2013/04/22/using-rsync-with-libguestfs/ >>> >>> We are trying to get the libguestfs API guestfs_rsync_out to work. We’ve tried combinations similar to: >>> >>> guestfs_rsync_out(g, “/HostShared”, “rsync://root@10.0.1.90:2999/backup/ -av”, -1) >>> >>> surrounding it with APIs as in the recipe examples, for example replacing libguestfs_cat(), with no luck. In the >>> above >>> example the "backup" rsync module name matches the script on Richard&...
2015 Feb 09
2
Re: getting guestfs_rsync_out to work
...ich files will change. For example even if we do this (error checking >> removed): >> >> while (1) { >> >> guestfs_mount_options(g, "sync", "/dev/sda2", "/"); >> >> printf("%s\n", guestfs_cat(g, "/HostShared/temp.txt")); >> >> guestfs_umount(g, "/"); >> >> guestfs_fsync(g); >> >> usleep(1000*1000); >> } >> >> temp.txt from the Win7 guest is copied correctly the first time, but >> afterwards any change we mak...
2015 Feb 08
0
Re: getting guestfs_rsync_out to work
...9:42PM -0600, Jeff Brower wrote: > All- > > Per this page > > https://rwmj.wordpress.com/2013/04/22/using-rsync-with-libguestfs/ > > We are trying to get the libguestfs API guestfs_rsync_out to work. We’ve tried combinations similar to: > > guestfs_rsync_out(g, “/HostShared”, “rsync://root@10.0.1.90:2999/backup/ -av”, -1) > > surrounding it with APIs as in the recipe examples, for example replacing libguestfs_cat(), with no luck. In the above > example the "backup" rsync module name matches the script on Richard's wordpress.com blog page (above...
2015 Feb 09
1
Re: getting guestfs_rsync_out to work
...t; as a userspace process) you'll experience approximately the same > overhead. Ok got it. Thanks again for your reply. We tried guestfs_drop_caches() as follows: while(1) { guestfs_mount(g, "/dev/sda2", "/"); printf("%s\n", guestfs_cat(g, "/HostShared/temp.txt")); guestfs_umount(g, "/"); guestfs_drop_caches(g, 3); usleep(1000*1000); } and still we cannot see changes made to temp.txt (from inside the Win7 guest VM) while this loop continues to run on the host Linux. We still have to re-launch the image to see c...
2015 Feb 09
0
Re: getting guestfs_rsync_out to work
...need to use rsync. We know which files will change. For example even if we do this (error checking removed): > > while (1) { > > guestfs_mount_options(g, "sync", "/dev/sda2", "/"); > > printf("%s\n", guestfs_cat(g, "/HostShared/temp.txt")); > > guestfs_umount(g, "/"); > > guestfs_fsync(g); > > usleep(1000*1000); > } > > temp.txt from the Win7 guest is copied correctly the first time, but > afterwards any change we make to it (e.g. using Win7 Notepad) is...
2015 Feb 10
1
host Linux - guest Win7 fast file sharing [was: getting guestfs_rsync_out to work]
...vmlinux as a userspace process) you'll experience approximately the same overhead. Ok got it. Thanks again for your reply. We tried guestfs_drop_caches() as follows: while(1) { guestfs_mount(g, "/dev/sda2", "/"); printf("%s\n", guestfs_cat(g, "/HostShared/temp.txt")); guestfs_umount(g, "/"); guestfs_drop_caches(g, 3); usleep(1000*1000); } and still we cannot see changes made to temp.txt (from inside the Win7 guest VM) while this loop continues to run on the host Linux. We still have to re-launch the image to see chan...
2003 Jul 17
2
ext3 and quota still problematic?
Hello, we used ext3 with diskquota and kernel 2.4.19 and 2.4.20 and went into the described problem here: http://www.zip.com.au/~akpm/linux/ext3/ext3-usage.html see Status Were there any merges with -ac in this direction in 2.4.21 so it might be fixed? Will there be merges in the future? Does kernel 2.6.x also have this problem? Thanks alot for your answers. -- Noèl Köthe