similar to: Xen Store error : out of memory

Displaying 20 results from an estimated 300 matches similar to: "Xen Store error : out of memory"

2008 Jul 07
4
getting opensolaris b85 domU to start
Folks: I am unable to get my opensolaris sn-b85 domU to start up in an opensolaris sn-b85 dom0. I am booted to xvm. Other systems, such as Fedora 8, WinXP Pro, W2k3 server, W2k8 server and Windows Vista startup normally. I have used the following to build the domU: # mkfile -n 25g /solhvm/solhvm.img # ls -l /solhvm total 269 -rw------T 1 root root 26843545600 Jul 7 10:37 solhvm.img
2008 Apr 14
0
full virtualisation on centos5.1 with a F7 guest
Hi I m trying to install a full virtualized guest on my dell poweredge 1950 with centos 5.1 64 bits. I just launched the following command virt-install -n elaphe -r 4096 -f /var/lib/xen/images/elaphe -s 40 -b vlanbr15 --hvm Would you like to enable graphics support? (yes or no) yes What is the virtual CD image, CD device or install location? /var/lib/xen/F-7-i386-DVD.iso Starting
2007 Nov 15
7
[Bug 13257] New: using nouveau on NV17 kills the KDE VNC server
http://bugs.freedesktop.org/show_bug.cgi?id=13257 Summary: using nouveau on NV17 kills the KDE VNC server Product: xorg Version: unspecified Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at
2007 Nov 25
10
How are you getting your Vista and XP VMs to work?
I''m not having much luck getting either a Vista or XP VM up and running. XP: I''ve created an ISO from my WinXP SP 1a CD. The VM seems to be created fine. It boots then installs the OS. On the second setup boot after copying over the OS files, it brings up a box that says: The file ''asms'' on WindowsXP Home Edition Service Pack 1 CD is needed. Then wants
2005 Jul 25
1
Fighting some install issues with a new box
Folks- I have had a machine dropped in my lap that I am trying to get CentOS 4.1 to run on as a first pass (the hope is for it to eventually run Rocks -- http://www.rocksclusters.org , which uses CentOS 4.x as its underlying OS). The machine has 2 Opteron 250DP (2.4GHz) with 4 GB of RAM. It is using a Tyan Thunder K8WE (S2895A2NRF) motherboard with an nVidia nForce chipset --
2009 Jun 24
0
[STABLE, 2.6.30.x] ocfs2: Fix ocfs2_osb_dump()
Stable folks, When a user creates a local (non-clustered) ocfs2 filesystem, accessing the /sys/kernel/debug/<uuid>/fs_state file will crash the system. This patch fixes the crash by correctly handling local filesystems. The problem was introduced with 2.6.30 and does not affect 2.6.29. It is mainline commit c3d38840abaa45c1c5a5fabbb8ffc9a0d1a764d1. Joel From: Sunil Mushran
2009 Mar 03
3
[PATCH 1/1] OCFS2: anti stale inode for nfs (V6)
For nfs exporting, ocfs2_get_dentry() returns the dentry for fh. ocfs2_get_dentry() may read from disk(when inode not in memory) without any cross cluster lock. this leads to load a stale inode. this patch fixes above problem. solution is that in case of inode is not in memory, we get the cluster lock(PR) of alloc inode where the inode in question is allocated from(this causes node on which
2018 Jun 20
2
Samba 4.3.13 logon oddity on Solaris 10
On Wed, 20 Jun 2018 15:01:12 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > > > > On the OS level everything works flawlessly (without using > > > winbind). > > > Login upon first try, kerberos ticket properly issued, uid/gid set > > > to the numbers provided from the LDAP (Samba DC) backend.  > > Well, yes it would work to allow
2011 May 27
2
[PATCH 1/1] ocfs2: Bugfix for hard readonly mount
This patch fixes few bugs when do hard readonly mount. see detail: http://oss.oracle.com/bugzilla/show_bug.cgi?id=1322 Signed-off-by: Tiger Yang <tiger.yang at oracle.com> --- fs/ocfs2/dlmglue.c | 21 +++++++++++++++------ fs/ocfs2/super.c | 3 ++- 2 files changed, 17 insertions(+), 7 deletions(-) diff --git a/fs/ocfs2/dlmglue.c b/fs/ocfs2/dlmglue.c index 7642d7c..da103f5 100644
2009 May 19
2
[PATCH 1/1] OCFS2: timer to queue scan of all orphan slots
On unlink, all nodes check for the dentry in dcache and if present they mark the node as unlinked. The last node that purges the inode will clean it from orphan directory. When there is a memory pressure, a dentry may not be around and hence the inode is not marked as deleted and this will lead the file to be in the orphan directory till the slot is re-used during next mount. This patch initiates
2010 Jan 07
1
Trying to get Xen going with svn_130...
I''m trying to get linux domU going with opensolaris ''130. The CPU is a plain P4 3.2Ghz (no hardware Virt) but all I''m trying is --paravirt Here''s the command line I''m trying..... virt-install --paravirt --name=dom1 --ram=1024 --vnc \ --os-type=linux --os-variant=fedora8 \ --network bridge \ --file /dev/zvol/dsk/rpool/dom1 \ --location
2018 Jun 19
2
Samba 4.3.13 logon oddity on Solaris 10
On Tue, 19 Jun 2018 13:07:56 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > On Tue, 2018-06-19 at 11:04 +0100, Rowland Penny via samba-technical > wrote: > > On Tue, 19 Jun 2018 11:12:11 +0200 > > Bernd Markgraf via samba-technical <samba-technical at lists.samba.org> > > wrote: > > > > > Hi, > > > > > > I just
2009 Jun 19
6
[PATCH 1/5] ocfs2: Pin journal head before accessing jh->b_committed_data
This patch adds jbd_lock_bh_state() and jbd_unlock_bh_state() around accessses to jh->b_committed_data. Fixes oss bugzilla#1131 http://oss.oracle.com/bugzilla/show_bug.cgi?id=1131 Signed-off-by: Sunil Mushran <sunil.mushran at oracle.com> --- fs/ocfs2/suballoc.c | 28 ++++++++++++++++++++++++---- 1 files changed, 24 insertions(+), 4 deletions(-) diff --git a/fs/ocfs2/suballoc.c
2007 Nov 27
16
Windows Vista in XVM
Dear Experts, Does anyone install Windows Vista on XVM successfully? I am using machine Sun x4600 with AMD 8218 cpu with virtualization feature. i installed OpenSolaris build 75, My installation steps: # svccfg -s xvm/xend setprop config/vncpasswd = astring: \"secret\" # svccfg -s xvm/xend setprop config/vnc-listen = astring: \"0.0.0.0\" # svccfg -s xvm/xend setprop
2018 Jul 02
2
Samba 4.3.13 logon oddity on Solaris 10
On Mon, 02 Jul 2018 12:38:54 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > On Mon, 2018-07-02 at 11:30 +0100, Rowland Penny via samba wrote: > > > Provided that your users have a uidNumber attribute containing a > > unique number inside the '10000-999999' range AND Domain Users has a > > gidNumber attribute containing a number inside the same
2018 Jul 02
2
Samba 4.3.13 logon oddity on Solaris 10
On Mon, 02 Jul 2018 12:04:10 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > Do you agree that this is a valid smb.conf that should work: > [global] >        security = ADS >        encrypt passwords = yes >        workgroup = MD-DZNE >        realm = MAGDEBURG.DZNE.DS > >        log file = /opt/samba4/var/log/%m.log >        log level = 1  >
2018 Jun 22
2
Samba 4.3.13 logon oddity on Solaris 10
On Fri, 22 Jun 2018 13:38:14 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > On Wed, 2018-06-20 at 14:20 +0100, Rowland Penny via samba wrote: > > On Wed, 20 Jun 2018 15:01:12 +0200 > > Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > > > I would like to see that behaviour on my machine too ;-) > > > > Then just do what I do,
2018 Jun 19
2
Samba 4.3.13 logon oddity on Solaris 10
On Tue, 19 Jun 2018 21:08:46 +0200 Bernd Markgraf <bernd.markgraf at med.ovgu.de> wrote: > On Tue, 2018-06-19 at 12:44 +0100, Rowland Penny via samba wrote: > > > > Why are you using LDAP for authentication on a Unix domain > > > > member ? > > > > > > Because it just works and is straightforward to set up and things > > > like
2009 Jun 02
3
Patches that adds delayed orphan scan timer (rev 2)
Resending after implementing review comments.
2009 Jun 02
3
Patches that adds delayed orphan scan timer
Resending after adding another patch to display delayed orphan scan statistics.