Displaying 20 results from an estimated 200 matches similar to: "Y values below the X plot"
2009 Jun 15
1
Mounting multiple regular files as a filesystem
I''m trying to create a multi-device filesystem on top of regular files
(not actual disks), and mount that to a loopback device. For a
filesystem created on a single file, it works fine, but for a filesystem
across multiple files, it doesn''t.
dd if=/dev/zero of=img1 bs=4096 count=65536
dd if=/dev/zero of=img2 bs=4096 count=65536
dd if=/dev/zero of=img3 bs=4096 count=65536
dd
2011 Jan 13
8
mount a .img file
Ok guys I am wondering if anyone can help me out here. I am trying to
mount a xen .img file. when I try to do a mount -o loop /xen/guest.img
/mnt/tmp I get a message saying that I need to specify a partition
type.. What am I missing?
Many thanks in advance,
CJP
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
2005 Aug 27
1
Samba clients can't see partitions mounted via loop device from image files
Is there something special about filesystems mounted via
the loop device, which prevents Samba from sharing them?
I have a small LAN with several PCs on it. It has a
few Windows machines, and a Linux machine running
Mandrake 10 (kernel 2.6.3), which shares out its root
("/") read-only as "c".
(Temporarily, for testing, it is shared with full write
permissions, which I know
2005 Aug 09
3
file
hi
im saleh
please help me
I WANT SOURSE CODE SIMILAR THIS CODE
package asl;
import java.awt.*;
import java.awt.event.*
;
import java.applet.*;
public class animat1 extends Applet implements Runnable{
int c = 290, d = 300;
int x = 20, k = 20, o = 0, m = 10, n = 0, y = 0;
Thread t = new Thread(this);
Image img1, img2, img3;
// AudioClip a1;
public void init() {
2013 Apr 19
1
How to read a direct access file by connecting fortran with R ?
Hello all,
I would like to read the specific line number row of a direct access file (which is stored as a n_row*n_col matrix of elements kind=p) without reading all the preceding lines (i.e 1,2,..,row-1).
Is there a function in R that can perform this task?
To solve my issue, I tried without to call Fortran from R by doing the following steps:
I) I wrote a subroutine in fortran called
2010 Mar 22
4
[PATCH FOR TESTING 0/2] virt-resize tool
This program is now working and ready for testing.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
New in Fedora 11: Fedora Windows cross-compiler. Compile Windows
programs, test, and build Windows installers. Over 70 libraries supprt'd
http://fedoraproject.org/wiki/MinGW http://www.annexia.org/fedora_mingw
2016 Dec 29
2
isohybrid boot from logical partition
Hi,
i think i found the reason for the boot failure in the definition of
Extended Boot Records.
https://en.wikipedia.org/wiki/Extended_boot_record#Values
"Starting sector = relative offset between this EBR sector and the
first sector of the logical partition.
Note: This is often the same value for each EBR on the same hard disk;
usually 63 for Windows XP or older."
So if
2003 May 27
2
Group mapping
Hi everybody,
Since two days I'm trying to migrate a whole NT4 PDC to Samba-3 with the
"net rpc vampire".
Each user and computer accounts are correctly added in LDAP directory.
But for every account this message appears during the migration :
Primary group of xxxx has no mapping!
An other problem is that none of the 558 groups is added in LDAP
directory. Then, in my smb.conf
2015 Mar 06
3
Re: [PATCH 1/2] New API: btrfs_filesystem_show
On Fri, Mar 06, 2015 at 07:39:36AM +0000, Chen, Hanxiao wrote:
>
>
> > -----Original Message-----
> > From: Richard W.M. Jones [mailto:rjones@redhat.com]
> > Sent: Thursday, March 05, 2015 8:59 PM
> > To: Chen, Hanxiao/陈 晗霄
> > Cc: libguestfs@redhat.com
> > Subject: Re: [Libguestfs] [PATCH 1/2] New API: btrfs_filesystem_show
> >
> > AFAICT
2017 Nov 29
1
[PATCH] builder: use the template arch when caching all templates
When caching all the templates, use the architecture of each template,
instead of the architecture passed as --arch (or the host architecture,
as default). This way, the right destination filename will be used.
Fixes commit b1cf6246f3c80762cf27dbdb24168589a34daf00.
Thanks to: Erik Skultety.
---
builder/Makefile.am | 2 +
builder/builder.ml | 4 +-
2006 Jan 26
42
ruby script/generate scaffold Product Admin hangs
Hi
I am running Mac OX tiger with the installed ruby 1.8.2, and
mysql5 (I checked that it was running in preference). I
tried to run the various fixes recommended in agileweb. I am
stuck on page 57, script/generate scaffold...
> Could you paste in your database.yml file, from the
> "config" folder inside your Rails app? If you have any
> passwords entered there, you should
2010 Dec 08
2
Wine Problem Help Plizz
On the nose open as anything that gives me.
[Image: http://img1.immage.de/081265b4a88.jpg ]
[Image: http://img1.immage.de/0812b8821.jpg ]
Help PLIZZ
2009 Aug 22
2
Error using command prompt
I am using Dev-C++ under WINE and Ubuntu as I am not yet familiar with Ubuntu enough to study C without a simple compiler I am used to. It installed ok, and compiled .exe files ok, but when it came to run those programs I had a problem.
The first was that, normally, when I would run an executable written to use the windows command prompt, the command prompt wouldn't appear. Now, I make sure
2008 Nov 20
8
A Couple of problems with Wine
I'm running Mandriva 2009 with KDE and I'm trying to use 2 things in Wine..
1: Adobe Photoshop Elements 7
When I try to install this, it shut down when it should be starting install files, after serial input and folder selection.. I get this in consol:
Code:
[axept at localhost pse7]$ wine setup.exe
fixme:advapi:LookupAccountNameW (null) L"axept" (nil) 0x33f8dc (nil)
2009 Nov 19
10
Unable to mount loopback devices in RAID mode
Hi!
I recently tried to mount a filesystem in RAID1 mode using loopback devices. I followed the instructions at [1]. Here''s exactly what I''ve done:
$ dd if=/dev/zero of=raid1_0.img bs=1M count=500
$ dd if=/dev/zero of=raid1_1.img bs=1M count=500
$ mkfs.btrfs -m raid1 -d raid1 raid1_0.img raid1_1.img
$ losetup /dev/loop0 raid1_0.img
$ losetup /dev/loop1 raid1_1.img
$ mount -t
2019 Dec 26
1
virt-sparsify error message.
Hello,
I'm using virt-sparsify on a new server and I get an error message:
# virt-sparsify img img2
[ 0.0] Create overlay file in /tmp to protect source disk
[ 0.1] Examine source disk
virt-sparsify: error: libguestfs error: guestfs_launch failed.
This usually means the libguestfs appliance failed to start or crashed.
Here is libguestfs-test-tool output:
2010 Mar 19
1
[PATCH FOR DISCUSSION ONLY] virt-resize tool for resizing virtual machines.
Unfinished patch to implement virt-resize.
The concept is solid. It just needs a little more thought as to
exactly how containers [of containers] expand and shrink in response
to user requests.
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
libguestfs lets you edit virtual machines. Supports shell scripting,
bindings from many languages.
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.
2012 Jun 08
3
cannot boot guest VM
Hi,
I''m trying to boot a PV VM I just installed (following http://wiki.xen.org/wiki/Debian_Guest_Installation_Using_Debian_Installer) without success.
My XEN installation is xen-unstable 54c8c9eaee92+ on a Debian unstable machine (x86_64), kernel 3.3.4+. The VM I installed is, again, a Debian unstable x86_64. The installation went smoothly; I used an 8GB file as a disk back-end. I went
2008 Aug 07
1
Mount a Xen disk image file
Hi Folks,
I search for a way to mount the .img files virt-install creates for Xen
VMs. Using fdisk -lu I found it contains to 2 partitions:
> # fdisk -lu /var/lib/xen/images/BaseCentos.img
> last_lba(): I don't know how to handle files with mode 81ed
> Sie m?ssen angeben Zylinder.
> Sie k?nnen dies im Zusatzfunktionsmen? tun.
>
> Platte /var/lib/xen/images/BaseCentos.img: