search for: geust

Displaying 8 results from an estimated 8 matches for "geust".

Did you mean: gest
1997 Jul 23
0
NT4.0 connection only as geust account ?
Hi, I have: - Linux 2.0.30 - NT 4.0 - Samba 9.16pl11 - same user name and password on Linux and NT 4.0 (user1, pwxxx) and the smb.conf of below. When I create a file on the samba share [tmp] from the NT 4.0 machine, the owner is always 'nobody' (my guest account). I can not manage it to give it my own name (user1). I can not create a file in another directory neither, because samba
2016 Mar 03
0
[Qemu-devel] [RFC qemu 4/4] migration: filter out guest's free pages in ram bulk stage
...ges_count) == 0) { > + usleep(1000); > + } > + qemu_mutex_lock_iothread(); > + > + filter_out_guest_free_pages(migration_bitmap_rcu->free_pages_bmap); > + } IIUC, this code is synchronous wrt to the guest OS balloon drive. ie it is asking the geust for free pages and waiting for a response. If the guest OS has crashed this is going to mean QEMU waits forever and thus migration won't complete. Similarly you need to consider that the guest OS may be malicious and simply never respond. So if the migration code is going to use the guest ball...
2016 Mar 03
2
[RFC qemu 4/4] migration: filter out guest's free pages in ram bulk stage
Get the free pages information through virtio and filter out the free pages in the ram bulk stage. This can significantly reduce the total live migration time as well as network traffic. Signed-off-by: Liang Li <liang.z.li at intel.com> --- migration/ram.c | 52 ++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 46 insertions(+), 6 deletions(-) diff --git
2008 Oct 16
3
xen 3.3.0 pv pci passthrough co-assigned problem
After upgrading from xen 3.2.x to xen 3.3.0 I get an error message when using pci passthrough with pv guests (my system is not vt-d enabled): xm create -c /etc/xen/domU/myguest Using config file "/etc/xen/domU/myguest". Error: pci: 0000:0e:05.0 must be co-assigned to the same guest with 0000:0f:0a.0 Sharing diffrent pci devices behind a pci bridge used to work in older xen versions for
2006 Nov 29
2
75 seconds timeout when negotiating with smbd.
...tem = no map archive = no # Use inherited ACLs for directories ; nt acl support = yes ; inherit acls = yes ; map acl inherit = yes ;[homes] ; comment = Home Directories ; browseable = no ; writable = yes [Podkustom] comment = Kustik's Public path = /home/samba ; geust ok = yes public = yes writable = yes printable = no [Kanavka] comment = FAT Store on Kustik path = /mnt/data fstype = FAT public = yes writable = yes printable = no [Flop] comment = Flop on Kustik path = /flop fstype = FAT public = yes writa...
2008 Feb 24
3
Fwd: Re: Xen 3.1, Fedora 8 and PCI passthrough
---------- Forwarded Message ---------- Subject: Re: [Xen-users] Xen 3.1, Fedora 8 and PCI passthrough Date: Sunday 24 February 2008 From: jim burns <jim_burn@bellsouth.net> To: deshantm@gmail.com On Friday 22 February 2008 09:34:17 pm Todd Deshane wrote: > The configuration in both python and SXP format is covered in the xen user > manual [0]. > > Fedora still does make a
2016 Mar 03
16
[RFC qemu 0/4] A PV solution for live migration optimization
The current QEMU live migration implementation mark the all the guest's RAM pages as dirtied in the ram bulk stage, all these pages will be processed and that takes quit a lot of CPU cycles. >From guest's point of view, it doesn't care about the content in free pages. We can make use of this fact and skip processing the free pages in the ram bulk stage, it can save a lot CPU cycles
2016 Mar 03
16
[RFC qemu 0/4] A PV solution for live migration optimization
The current QEMU live migration implementation mark the all the guest's RAM pages as dirtied in the ram bulk stage, all these pages will be processed and that takes quit a lot of CPU cycles. >From guest's point of view, it doesn't care about the content in free pages. We can make use of this fact and skip processing the free pages in the ram bulk stage, it can save a lot CPU cycles