similar to: Creating a Guest from an ISO

Displaying 20 results from an estimated 8000 matches similar to: "Creating a Guest from an ISO"

2011 Oct 08
1
Oneiric Ocelot Package missing from PPA
http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu/pool/main/w/wine1.3/ I recently tried to install the Latest .29 WINE from the PPA and it ended up using the .15 version from the official Ubuntu 11.10 Repository instead. Although it doesn't matter for .29 (as it has a bug that has since been fixed), I would like to know if we'll be expecting a package on the PPA for the next version, I
2013 Dec 14
1
Convert bootable raw hdd image to bootable iso?
Hi, is it possible to convert a bootable raw hdd image including grub (originally created with grml-debootstrap) to a bootable iso somehow? Cheers, adrelanos
2012 Feb 10
2
the value of the last expression
Is there an analogue of common lisp "*" variable which contains the value of the last expression? E.g., in lisp: > (+ 1 2) 3 > * 3 I wish I could recover the value of the last expression without re-evaluating it. thanks -- Sam Steingold (http://sds.podval.org/) on Ubuntu 11.10 (oneiric) X 11.0.11004000 http://www.childpsy.net/ http://camera.org http://ffii.org
2012 Mar 14
2
sum(hist$density) == 2 ?!
> x <- rnorm(1000) > h <- hist(x,plot=FALSE) > sum(h$density) [1] 2 ----------------------------- shouldn't it be 1?! > h <- hist(x,plot=FALSE, breaks=(-4:4)) > sum(h$density) [1] 1 ----------------------------- now it's 1. why?! -- Sam Steingold (http://sds.podval.org/) on Ubuntu 11.10 (oneiric) X 11.0.11004000 http://www.childpsy.net/ http://www.memritv.org
2013 Mar 27
0
Moving to R 3.0.0 on Ubuntu
This is a post I just added to my Ubuntu R Blog (http://www.personal.psu.edu/mar36/blogs/the_ubuntu_r_blog/2013/03/moving-to-r-300-on-ubuntu.html). As you may (or may not) be aware of, R 3.0.0 is [scheduled to be released](http://www.r-project.org/) on April 3rd. Since this is a major release and there may be some growing pains (but I hope not) in the move 3.0.0, here is some information
2012 Apr 08
3
System freeze
Hi, At the begining i would like to appologize for my English. My system : Release: Ubuntu 11.10 64 (oneiric) GNOME: 2.32.1 (Ubuntu 2011-04-14) Kernel: 3.0.0-17-generic (#30-Ubuntu SMP Thu Mar 8 20:45:39 UTC 2012) My Hardware: CPU: Intel(R) Core(TM) i5-2410M CPU @ 2.30GHz Memory: 3873 MiB GPU1: Intel (propably) i915 GPU2: NVidia Optimus GT525M Wine 1.5.1 After few minutes (5 - 20 min) of
2012 Feb 13
1
entropy package: how to compute mutual information?
suppose I have two factor vectors: x <- as.factor(c("a","b","a","c","b","c")) y <- as.factor(c("b","a","a","c","c","b")) I can compute their entropies: entropy(table(x)) [1] 1.098612 using library(entropy) but it is not clear how to compute their mutual information
2012 Mar 20
2
igraph: decompose.graph: Error: protect(): protection stack overflow
I just got this error: > library(igraph) > comp <- decompose.graph(gr) Error: protect(): protection stack overflow Error: protect(): protection stack overflow > what can I do? the digraph is, indeed, large (300,000 vertexes), but there are very many very small components (which I would rather not discard). PS. the doc for decompose.graph does not say which mode is the default. --
2012 Mar 24
1
Installing "rgl" package
I tried installing "rgl" package which is needed for Rcmdr to work properly but I always some problem. This is the error I get ......... checking for libpng-config... yes configure: using libpng-config configure: using libpng dynamic linkage checking for X... libraries , headers  checking GL/gl.h usability... yes checking GL/gl.h presence... yes checking for GL/gl.h... yes checking
2012 Apr 04
2
recover lost global function
Since R has the same namespace for functions and variables, > c <- 1 kills the global function, which can be restored by > c <- get("c",mode="function") Is there a way to prevent R from overriding globals or at least warning when I do that or at least warning when I replace a functional value with non-functional? thanks. -- Sam Steingold (http://sds.podval.org/)
2012 Feb 24
1
count.fields inconsistent with read.table?
Hi, batch is a vector of lines returned by readLines from a NL-line-terminated file, here is the relevant section: ========================================================= AA BB CC DD EE FF GG H H JJ KK LL MM ========================================================= as you can see, a line is corrupt; two CRLF's are inserted. This is okay, I drop the bad lines, at least I hope I do:
2011 Dec 01
0
Problemas al instalar R 2.14 en Ubuntu 11.10 - Resuelto!
Disculpen se me escapó el portugués. 2011/11/30 Carlos J. Gil Bellosta <cgb@datanalytics.com> > El problema es que si tienes R instalado en tu $HOME, dependiendo de > la variable de entorno $PATH, uno de los ejecutables se llama primero > al llamar a R. > > Lo más natural sería eliminar R de $HOME ya que tienes instalada la > versión actual "como Dios manda".
2012 Apr 04
2
plot with a regression line(s)
I am sure a common need is to plot a scatterplot with some fitted line(s) and maybe save to a file. I have this: plot.glm <- function (x, y, file = NULL, xlab = deparse(substitute(x)), ylab = deparse(substitute(y)), main = NULL) { m <- glm(y ~ x) if (!is.null(file)) pdf(file = file) plot(x, y, xlab = xlab, ylab = ylab, main = main) lines(x, y =
2012 Mar 02
1
Bug#661912: logcheck: files with period in ignore rule dirs ignored
Package: logcheck Version: 1.3.14 Severity: normal I added a local.rules file to ignore.d.server and then ran logcheck. The file was not used during the run. Renaming it to local-rules got the file used during the next run. Fix: periods should be allowed in filenames, or the fact that they are forbidden expressly documented inteh logcheck README. Thanks Nils -- System Information: Debian
2012 Feb 08
4
"unsparse" a vector
Suppose I have a vector of strings: c("A1B2","A3C4","B5","C6A7B8") [1] "A1B2" "A3C4" "B5" "C6A7B8" where each string is a sequence of <column><value> pairs (fixed width, in this example both value and name are 1 character, in reality the column name is 6 chars and value is 2 digits). I need to
2012 Feb 10
2
naiveBayes: slow predict, weird results
I did this: nb <- naiveBayes(users, platform) pl <- predict(nb,users) nrow(users) ==> 314781 ncol(users) ==> 109 1. naiveBayes() was quite fast (~20 seconds), while predict() was slow (tens of minutes). why? 2. the predict results were completely off the mark (quite the opposite of the expected overfitting). suffice it to show the tables: pl: android blackberry ipad
2011 Dec 21
4
qqnorm & huge datasets
Hi, When qqnorm on a vector of length 10M+ I get a huge pdf file which cannot be loaded by acroread or evince. Any suggestions? (apart from sampling the data). Thanks. -- Sam Steingold (http://sds.podval.org/) on Ubuntu 11.10 (oneiric) X 11.0.11004000 http://mideasttruth.com http://honestreporting.com http://camera.org http://openvotingconsortium.org http://pmw.org.il
2011 Dec 06
2
[Bug 43562] New: GT215: Freeze on X startup
https://bugs.freedesktop.org/show_bug.cgi?id=43562 Bug #: 43562 Summary: GT215: Freeze on X startup Classification: Unclassified Product: xorg Version: 7.7 (2011) Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: critical Priority: medium Component: Driver/nouveau
2007 Oct 23
0
[LLVMdev] howto: using a chroot of another architecture with qemu
I have just build an arm chroot and I imagine others might be interested on how to do it. First you need to install qemu. Follow the instructions on http://wiki.debian.org/QemuUserEmulation. I had some problems compiling for x86_64, so I just edited qemu's configure to compile for i686. Now run debootstrap: debootstrap --foreign --arch arm sid your_chroot_dir http://ftp.debian.org/debian
2011 Nov 04
0
javascript in Wine Internet Explorer
I've got Ubuntu 11.10 Oneiric, installed Wine (now version 1.3.28), several programs run well, but one program asks a javascript in the Wine Internet Explorer. How can I insert/install a javascript for the Wine Internet Explorer, as I cannot open Extra-Options (there is nothing like this) or Page Options? That is my question, thanks and please advise