similar to: how to mount a xen image file

Displaying 20 results from an estimated 200 matches similar to: "how to mount a xen image file"

2011 Mar 09
3
Sapply for descriptive statistics
I try to calculate descriptive statistics for one of the variables in the data frame, however command sapply calculates these statistics for every value of the variable separately. How to make it calculate range (as well as other statistics) for all column? Here are commands and results: > as1$trust [1] 5.957510 5.888664 6.168135 6.419472 5.668796 6.026923 6.456721 7.017946 5.294411
2003 May 12
1
update.lme trouble (PR#2985)
Try this data(Assay) as1 <- lme(logDens~sample*dilut, data=Assay, random=pdBlocked(list( pdIdent(~1), pdIdent(~sample-1), pdIdent(~dilut-1)))) update(as1,random=pdCompSymm(~sample-1)) update(as1,random=pdCompSymm(~sample-1)) update(as1,random=pdCompSymm(~sample-1)) update(as1,random=pdCompSymm(~sample-1)) I'm
2008 Jul 01
2
how to automatically maximize the graph window (under XP) ?
Hello, I'm trying to produce graphs automatically from data stored in database. Before saving the graphs, I would like to maximize the size of the graphs. The best would be to directly open maximized windows with x11() but up to now I failed doing it. I tried different widths and heighs but I never managed to obtain a full screen window. Is there a command to do it ? Thanks in advance, Ptit
2007 Oct 25
7
Sample Config File?
Hi. I am running Xen 3.0.3-1 on Debian Etch. Does anyone have a sample config file for creating a windows DomU? I have the ISO file from my windows CD. I''m not using LVM Thanks in Advance _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com http://lists.xensource.com/xen-users
2007 Aug 14
1
graph dimensions default
Hi, I would like to (if possible) set the default width and height for graphs at the start of each session and have each new graphic device overwrite the previous one. I only know how to do this using windows(width=,height=...) which opens up a new plotting device every time, so I end up with lots of graphs all over the place until I get the one I want! Thanks in advance, Simon Simon Pickett
2013 Mar 15
0
How to pass USB device to the guest VM
Hi, I am trying to access my Galaxy Tab from Samsung KIES running on Windows 7 inside a KVM VM. This unfortunately does not seem to work as expected. My Distribution is debian unstable. I therefore have qemu-system-x86 version 1.4.0+dfsg-1exp, libvirt 1.0.3-1 and virt-manager 0.9.4-2. lsusb shows the Tab as follows: Bus 001 Device 016: ID 04e8:6877 Samsung Electronics Co., Ltd Galaxy S in
2017 Dec 05
3
[AMDGPU] Strange results with different address spaces
Hi dev list, I am currently exploring the integration of AMDGPU/ROCm into the PACXX project and observing some strange behavior of the AMDGPU backend. The following IR is generated for a simple address space test that copies from global to shared memory and back to global after a barrier synchronization. Here is the IR is attached as as1.ll The output is as follows: 0 0 0 0 0 0 0 0 0 0 0 0 0
2000 Nov 01
2
Two kinds of bandwidth ...
Last week someone in my localnetwork "abused" from our link, making everything slow... So I want to put the current Linux router as a traffic shaper. The setup is: +--- 128Kbit | "International" Local net --- [Linux router with ] -- ISP -- [magic routers]
2020 Jul 26
2
[LAA] RtCheck on pointers of different address spaces.
Hello, I Have a question related to the RT check on pointers during Loop Access Analysis pass. There is a testcase with loop code that consist of 4 different memory operations referring two global objects of different address spaces. One from global constant (address space 4, addr_size = 64) and the other from local, LDS (address space 3, addr_size= 32). (Details of various address spaces
2020 Jul 26
2
[LAA] RtCheck on pointers of different address spaces.
Hi Stefanos, Attached the testcase. I tried to reduce it further, but the problem goes away when I remove the instructions further. There is a nested loop and the fault occurs while processing the inner loop (for.body) To reproduce the crash: opt -O3 testcase.ll -o out.ll > `groupChecks()` will only try to group pointers that are on the same alias set. If that’s true, the RT check
2006 Jan 16
3
Problem getting share list from NetApp
We defined a share, sales_cifs_test, on our NetApp server. Note that the length of the name is longer than 13 characters. We can see the share with Microsoft Explorer. We can mount the share from Linux using smbmount. What we want to do is to get a list of shares from NetApp. The tools that can do this are the samba programs smbclient and net. Smbclient will not show names longer than 13
2008 Sep 15
1
[LLVMdev] Casting between address spaces and address space semantics
Hi Mon Ping, > If I remember correctly, I was also not fond of passing another > TargetAddrSpace reference to the TargetData object. I was hoping that we > could encode the information as a target description string like we do for > ABI information. I just don't want to end up with too many objects that > describe the machine. One can argue that we shouldn't pollute
2017 Dec 05
2
[AMDGPU] Strange results with different address spaces
> On Dec 5, 2017, at 13:53, Matt Arsenault <arsenm2 at gmail.com> wrote: > > > >> On Dec 5, 2017, at 02:51, Haidl, Michael via llvm-dev <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: >> >> Hi dev list, >> >> I am currently exploring the integration of AMDGPU/ROCm into the PACXX project and observing some
2010 Mar 20
2
EM algorithm in R
Please help me in writing the R code for this problem. I've been solving this for 4 days. It was hard for me to solve it. It's a simulation problem in R. The problem is My true model is a normal mixture which is given as 0.5 N(-0.8,1) + 0.5 N(0.8,1). This model has two components. I will get a random sample of size 100 from this model. I will do this 300 times. That means, I will have
2008 Aug 12
0
[LLVMdev] Casting between address spaces and address space semantics
Hi Matthijs, On Aug 11, 2008, at 4:09 AM, Matthijs Kooijman wrote: > >> I don't have a problem having another class, TargetAddrSpace, to >> store this >> information. However, I don't think it make sense being a >> standalone pass. >> Address spaces seems to part of the TargetData and it seems more >> natural >> to ask the TargetData to
2013 Aug 11
2
[LLVMdev] Address space extension
On 08/11/2013 08:41 AM, Micah Villmow wrote: > How about this as a solution. > > Add one hook into TargetInstrInfo, and one into TargetISelLowering. > > 1) getAddressSpaceRelation(unsigned AS1, unsigned AS2) - Returns either disjoint, subset, superset, equal. Function defaults to equal. > 2) isAddressSpaceSupported(unsigned AS) - Returns true if supported, false otherwise.
2012 Dec 16
1
read-write in LIBGUESTFS 1.20
How can i open a virtual disk in read-write mode ? # guestmount --rw -d winxp -m /dev/sda1 /media/ # rm -f /media/pagefile.sys rm: cannot remove ?/media/pagefile.sys?: Operation not permitted # cd /media && touch file touch: cannot touch ?file?: Permission denied # cd && fusermount -u /media I've tried with guestfish also. I have compiled libguestfs with this conf:
2002 Aug 13
2
Additional printer drivers
HI, I am having trouble loading Win9x printer drivers on the Samba server. I can load the NT/2000 driver ok, but when I go to the Additional drivers (in the printer properties) and select Win 95 or 98, it tells me "The printer driver you selected is either not compatible with your current version of Windows, or it may not be available. Select a compatable driver from the list..." I
1999 Apr 14
0
No subject
Ok, I follwed the samba diagnostics, I get to TEST 3 and you don't have the error that came up. My error is can't find \etc\lmhosts. I tryied to copy my mhosts from mywindows machine, that didn't work. My main problem is I can see other people on the network but they can't see my shares. My linux box doesn't even come up on their network neighborhood. Thanks Kevin Jonas
2003 Jun 19
1
saving window size of a graphics device in windows possible?
In MDI mode of Windows, is it possible to save window size and other parameter settings of a graphics device when it is activated, much like Rconsole file? By default the bottom part of a graphic device (windows()) is too big such that it is hidden under the horizontal scrolling and status bar of Rgui. (Of course I can use the vertical scrolling bar of Rgui to see the hidden part.) So I select