similar to: xen - which version is installed?

Displaying 20 results from an estimated 800 matches similar to: "xen - which version is installed?"

2009 Apr 01
1
Server with 2 Nics (continuation)
Hi *.*, This is a continuation on the 2 NICs thread after some more testing. Just to remember my goal. --------------------------- I want to create a domU with 2 virtual NICS. One of them will contact the outside world, the other one will contact a VPN. No reason in concrete for choosing the bridging protocol, only because its the default one. I installed the dom0 with the 2 NICs active, with
2009 Mar 05
1
url access problem
hi, I have two machines, machine1 and machine2 both in the same network. The command I have been using to install a paravirt guest is virt-install --name=test --ram=512 --vcpus=1 --file=/dev/vgraid/puremessage-vm-root --paravirt --location=http://mirror.centos.org/centos-5/5.2/os/x86_64/ In machine 1 it is working. But not in machine 2. It is not able to retrieve or access url in machine 2.
2010 May 12
25
Install ubunto domU
Dear *, I''m more used to work with RedHat like OSes. Still, I did not denied the request from a user who wants a domU based on ubunto. I usually use virt-install to do the job, with a script similar to this one: #!/bin/sh BASE=SL-4.7-i386-pv \ virt-install --nographics \ --nonsparse \ --paravirt \ --noreboot \
2009 Jun 11
2
one domU out of 4 looses time sync
Hi all, I am running Scientific Linux 5.1 (rhel 5.1 compatible) 64bit on a 2x4core system with 16 gb ram with 3 Scientific Linux 4.6 (rhel 4.6 compatible) guests an one Scientific Linux 5.1 guest. I do not run ntp on the guests but only on dom0. One specific Scientific Linux 4 domU always looses time synchronization with dom0. All the others SL4 and the SL5 domUs remain synchronized. There
2009 Jan 09
0
CentOS-announce Digest, Vol 47, Issue 2
Send CentOS-announce mailing list submissions to centos-announce at centos.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.centos.org/mailman/listinfo/centos-announce or, via email, send a message with subject or body 'help' to centos-announce-request at centos.org You can reach the person managing the list at centos-announce-owner at centos.org When
2012 Nov 04
1
what is the function naming convention?
Dear R people, In typing names of functions (built in or from a package) I often guess wrong, and have to look the name up. In other words, I don't understand the logic in naming functions (if there is any): - most names are plain, lower case: cos, plot, sapply, t, toupper, unserialize, (etc) - some are capitalized: Filter, Machine, Map, NCOL, RNGversion, T (etc) -
2011 May 28
2
Nested design
Dear R-users, I have the following problem. I have performed an experiment for which I gathered a lot of data which I now want to test. The problem is that I cannot find an appropriate test in R (I am a starter) and someone might give me a hand. This is what I have done: Across three sites (Site), I have laid out five transects (Trans)...meaning five transects in each sites. In each transect I
2005 Jul 20
0
'old' rpms in CentOS 3.5
Hi, Just to let you know These rpms in CentOS 3.5 i386 : elinks-0.4.2-7.i386.rpm dos2unix-3.1-15.i386.rpm unix2dos-2.2-19.i386.rpm should be replaced by elinks-0.4.2-8.i386.rpm dos2unix-3.1-15.EL.22.i386.rpm unix2dos-2.2-19.EL.25.i386.rpm The SRPMS dir of CentOS 3.5 has both versions, so that's probably the cause of this. _________________________ Jan Kees van Amerongen Bioinformatics
2007 Apr 24
1
specify xlim for each panel
I draw dotplot using the following code: sd.dotplot<-dotplot(data.47.nmr$om_sd ~ as.factor(data.47.nmr$position) |as.factor(data.47.nmr$pr), data = data.47.nmr,layout=c(1,1), xlab="Position", xlim=range(data.47.nmr$position),ylab="Sd", main="Changes of omega angle in different positions", scales = list(x = list(rot = 45))) However I get same xlim for each
2007 Aug 24
2
Applying a function to an array
Dear R-users, I would like to apply a function (more precisely sd()) over the third dimension of a three-dimension array. The function apply would be interesting but the chosen function can only be applied on the rows and columns of the array according to the help file. I can use a loop to cut the array in matrices and then use apply for each replication, but it's not very nice. A small
2009 Mar 19
2
find the index of the smallest or biggest number in a vetor or data.frame
Dear R experts, How to find out the index of minimum or maxmum number in a vetor or data.frame? For example, a= n price 1 50 -2 100 0 200 -1 300 ...... I want to find out the row which the n is the smallest or largestest and extract the price. Thanks Ted -- View this message in context:
2013 Apr 08
0
A categorized list of R functions
Dear Rees Morrison, Re: (...) > > What additional code would create a table output, with the function name in the left column, sorted alphabetically within a pattern, and the pattern of the function in the column to the right. Users could then sort by those patterns, rename some to suit themselves, etc. (...) The version below creates a tab-delimited table with 3 columns: seach
2012 Sep 04
1
Changed PDC IP, all hell broke lose
I had to move my RedHat 5 box acting as a PDC to a new IP address. It is running samba 3.5.10. After the move, none of my windows or linux samba clients worked anymore. I tried rejoining some to the domain, but would get error Unable to find a suitable server Join to domain 'MRIRESEARCH' is not valid The old PDC IP address is 132.183.202.95 and nothing is at that IP anymore (for 4
2008 Sep 11
12
pciback module not working
This issue was brought up about a year and a half ago. So I''ll bring it up again and see if anything happens. I''ve got an infiniband network and am attempting to pass the infiniband card through the host and give it to the guest. I''m working with standard CentOS 5.2 on both guest and host with their provided xen (3.0.3 ish). I''ve also attempted to install the
2008 Sep 11
12
pciback module not working
This issue was brought up about a year and a half ago. So I''ll bring it up again and see if anything happens. I''ve got an infiniband network and am attempting to pass the infiniband card through the host and give it to the guest. I''m working with standard CentOS 5.2 on both guest and host with their provided xen (3.0.3 ish). I''ve also attempted to install the
2008 Jul 18
2
matrix multiplication question
Hello, I am a newcomer to R and therefore apologize for posting such a basic question. I am trying to multiply 2 matrices t(X1)%*%X1, where t(X1) is: 1 2 3 4 5 8 12 13 20 24 26 27 31 33 34 36 37 40 41 42 45 46 47 48 49 ones 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 Shadow 0 1 1 1 1 1 1 1 0 1 1 1 1 0 1 0
2003 Aug 24
0
SunOS-5.8 / Samba-2.2.0 W2K3 Domain Shares
Hello, We have a scientific instrument being controlled by a SparcStation (under SunOS-5.8) and running Samba-2.2.0 that has joined the campus wide W2K3 domain. I am currently in the process of trying to setup the smb.conf file so that users of a W2K3 security group can access a single share on the instrument. If this is pedestrian to ask, please forgive me. W2K3 Security Group = [user.name1,
2002 Jan 19
2
some EAQUAL results
For those who are interested, I've run 3 EAQUAL tests on both the LAME and OGG encoders: LAME with the --alt-standard preset (with and without --nspsytune) and OGGENC (RC3) with -q 6 (my personal "sweet spot") I am somewhat unsure though about the validity of these tests, since the original and decoded files were not the same size (2 KB difference). The LAME encoded files were also
2012 Jul 23
3
Error: could not find function "loadObject"
Hey all-- I'm brand new to R, and have just installed the ChemoSpec because I'd like to do PCA of NMR datasets. I was following along with the vignette and trying to load the sample data as follows... NMRTest <- loadObject("SrE.NMR.RData") ...and got the following error message: Error: could not find function "loadObject" I tried searching the above error
2005 Sep 22
1
redirect and sieve
Hello, I have set up postfix to use dove-cot lda. This works perfect. Sieve works a bit... I would like to user the redirect feature of sieve. Having followed the wiki I added the following in my .dovecot.sieve : require "redirect"; if header :contains "subject" ["order", "buy"] { redirect "orders at company.dom"; } With this setup I