Displaying 20 results from an estimated 1000 matches similar to: "Minimal ISO: GRUB UEFI has incorrect config"
2014 Apr 14
2
PXE booting UEFI
Good Afternoon,
As per the installation guide, section 30.2.2 I?ve created an efidefault file at /var/lib/tftpboot/pxelinux/pxelinux.cfg/efidefault
However, this file is never requested by the 64 bit PXE loader (bootx64.efi), as shown by tcpdump:
75 RRQ "/pxelinux/42272635-0011-5053-ACF2-82A100E615F2" octet tsize 0 blksize 512
59 RRQ "/pxelinux/01-00-50-56-A7-BA-BF"
2008 Oct 08
0
issues with "write.table"
Dear R gurus and users,
I'm having problems with the use of write.table.
I have a 28-variables data frame create at each cycle of a loop; it can contain between 2000 and 3000 rows for each cycle.
After each cycle the data frame is written out to a file with the "append=TRUE" option and then removed from memory.
These are the couple of lines involved:
> data2 <-
2008 Mar 17
1
problems with rgl in Ubuntu 'gutsy'
Dear R users/gurus,
I have recently installed Ubuntu 7.10 (Gutsy) on my Dell Latitude D520.
First time for me, as I have always used Fedora.
R installation using "apt" has proceeded fine, both for r-base and r-base-dev.
Next, I need to install various other packages, "rgl" being first in the line.
I have sorted some preliminaries by installing headers for X11 and Mesa:
sudo
2009 Dec 10
1
question about centroid-linkage (cluster analysis)
Dear R community,
I would be greatful if somebody could shed light on the following.
I have created a set of 6 points to check how centroid
agglomeration works in cluster analysis:
> Y <- data.frame(x=c(-1,1,1,-1,10,12),y=c(1,1,-1,-1,0,0))
It is quite intuitive to understand that the last clusters to be joined will be
{1,2,3,4} with {5,6}. Now, the centroid for the first cluster has
2009 Nov 24
2
convex hull for cluster analysis
Dear R gurus and users,
I seem to have problem finding the right tool for plotting convex hulls over
2D plots, after a cluster analysis. In fact I would like to draw a convex hull
in 2D for a generic group of points. I found a "convhulln", but this doesn't seem
to give me a convex hull. Here is what I do:
> library(mvtnorm)
> Mean <- c(2,1)
> Sigma <-
2010 Jul 23
1
greek letters in rgl plot3d
Dear RGL experts,
I haven't been able to add greek letters to my rgl plot3d.
I have tried "expression" with no success.
Here is the interested bit:
> library(rgl)
> cb <- cube3d()
> plot3d(cb,xlab=expression(alpha),ylab="",zlab="",box=FALSE,alpha=0.5)
The expression(alpha) appears as "alpha", rather than as a greek symbol.
I suspect greek
2010 Sep 09
1
rgl and lighting
Dear R community (and Duncan more specifically),
I can't work out how to make additional light sources work in rgl.
Here is the example.
First I create a cube and visualize it:
> cubo <- cube3d(col="black")
> shade3d(cubo)
Next I position the viewpoint at theta=0 and phi=30:
> view3d(theta=0,phi=30)
Next, I want to create a 2nd light source which diffuses red light
2011 Feb 26
2
sourcing a linux file with "system"
Dear R community,
I would like to source a file in my linux system to set a few environment variables.
I have tried:
> system("source /home/james/build//ccp4-6.1.13/include/ccp4.setup")
and got:
sh: source: not found
In fact, using Sys.which("source") I get an empty string.
How can I source that ccp4.setup file from within an R session?
J
Dr James Foadi PhD
Membrane
2010 Jul 07
2
how to define method for "+" function in a new class
Dear R developers,
I have a new class, which I called "Molecule", and have tried to define =
a "+" operation for 2 objects of this class.
This is what I have written so far, although the method is not complete =
(I'm trying to look at it at intermediate stages):
setMethod(
f=3D"+",
signature(x=3D"Molecule",y=3D"Molecule"),
2010 Jan 25
1
summing a large, partitioned data frame
Dear R community,
I'm trying to develop a fast way of summing specific rows of a large data frame.
Here is an example of the kind of data frames I'm dealing with:
> refls
H K L M/ISYM BATCH I SIGI
43247 1 0 5 21 79 61.44117 2.20553
1040 1 0 5 257 6 15.16316 0.54431
2324 1 0 5 257 5 46.76152 1.67858
31515 1 0 5 259 60 57.97305
2007 Jul 05
3
unexpected result in function valuation
Dear all,
I have a very small script to plot a function. Here it is:
##########################################
sinca <- function(N,th)
{
return(sin((N+0.5)*th)/sin(0.5*th))
}
plot_sinca <- function(N)
{
x <- seq(-5*pi,5*pi,by=pi/100)
y <- rep(0,length=length(x))
for (i in 1:length(x))y[i] <- sinca(N,x[i])
plot(x,y,type="l",ylim=c(0,2*N+4))
return(c(x,y))
}
2007 May 31
1
recompile R using ActiveTcl
Dear all,
While running some code requiring the "tcltk" package I have realised that my
version of R was compiled with the Tcl/Tk libraries included in Fedora 6. It
would be for me better to use the ActiveTcl libraries (which I have
under /usr/local), and I'm aware that this probably means to recompile R with
the proper configuration variables.
But...is it by any chance
2019 Dec 06
0
updates to rpm/kernel-rt
Hi,
I am writing because I would like to know if centos will update the kernel-rt package from
https://git.centos.org/rpms/kernel-rt/releases
?
I ask because bz#1550584 https://bugzilla.redhat.com/show_bug.cgi?id=1550584 mentions "fixed in version kernel-rt-3.10.0-1063.rt56.1023.el7"
And the latest tag in "releases" link above is for kernel-rt-3.10.0-1062.7.1.rt56.1030.el7
2007 Nov 21
1
normalised Voigt random numbers
Dear list,
I would like to generate random numbers from a Voigt distribution,
hopefully in a way as simple as getting random numbers from a normal
distribution with 'rnorm'. Is there any package to do this? Speed is an
issue in this application. Or, as the Voigt distribution is a
convolution of a Gaussian and a Lorentzian, can I simply combine random
numbers from rnorm and rcauchy in some
2010 Jan 18
0
new R package. How to hide data file
Dear R community,
I'm in the process of writing a package.
One of the functions reads a whole ascii file, full of data:
> SYMINFO <- scan("/file/full/of/data.txt",what="character",sep="\n",quiet=TRUE)
SYMINFO is now an array character with roughly 14000 elements.
I thought the best way to use this file in the package was to list it, together with the
2018 Dec 07
0
CVE-2018-1002105
There was a critical vulnerability in Kubernetes published earlier in the week - CVE-2018-1002105.
The vulnerability has been patched both the upstream project and by TUV, but the fix doesn't seem to have made it into the CentOS OpenShift build for 3.11:
http://mirror.centos.org/centos/7/paas/x86_64/openshift-origin311/
The fixed version is 3.11.43, version on the mirror is 3.11.0.
2008 Feb 06
3
counting row repetitions without loop
Hi,
I have a data frame consisting of coordinates on a 10*10 grid, i.e.
> example
x y
1 4 5
2 6 7
3 6 6
4 7 5
5 5 7
6 6 7
7 4 5
8 6 7
9 7 6
10 5 6
What I would like to do is return an 10*10 matrix consisting of counts
at each position, so in the above example I would have a matrix where,
for example, cell [4,5] contains 2 and [6,7] contains 3. At the
2020 Feb 06
0
No announcement for kernel 3.10.0-1062.12.1.el7
Hi
I don't know where the announcements go.
I cloned https://git.centos.org/git/rpms/kernel.git and grabbed the changelog section pasted below from the git diff in SPECS/kernel.spec (commit dated 4 Feb 2020)
Regards
+* Thu Dec 12 2019 Frantisek Hrbata <fhrbata at hrbata.com> [3.10.0-1062.12.1.el7]
+- [powerpc] powerpc/pseries: Remove confusing warning message (Gustavo Duarte) [1780148
2009 Aug 18
1
Strange package installation error
Hi. I'm trying to install a new package. I'm a relatively long-time
(though not advanced) R user and have never seen this error before.
For the first example, I tried a few different CRAN mirrors. In the
second example, the file does exist; I downloaded it from the CRAN
website for the package and pasted in the name exactly a few different
times to make sure it was right.
>
2004 Mar 25
1
domain admins and Samba 3.0.2
Hi
I've been running Samba 2.x for years but decided to move up to 3.0.2. I've set
up a new samba server with a workgroup NEWBIOSS and netbios name PARETO.
Im having problems setting up my domain admins.
I used
'net groupmap modify "Domain Admins" unixgroup=domadmin'
my 'net groupmap list' shows :
System Operators (S-1-5-32-549) -> -1
Replicators