Displaying 15 results from an estimated 15 matches for "mydevice".
Did you mean:
mdevice
2007 Nov 15
3
Graphics device storable in a variable
...instance, a matrix), and return that variable through
the PostgreSQL client. Leaving aside the details of returning the data
to PostgreSQL (which I realize are beyond the scope of this list), I
envision R code along the lines of the following:
# Create a png device, a handle to which is stored in myDevice
> myDevice <- png.variable(height = 1280, width = 1024, bg = "white")
# Plot some data into the current device
> plot(myX, myY, col="red")
# Finalize
> dev.off()
# Print out the contents of myDevice
> myDevice
...and the data would print out just like any other m...
2007 Feb 28
4
how to make xenbus do .probe?
Hi,
Can anyone please tell me how to get ".probe" function in "struct
xenbus_driver" called?
I want to do one simple test of event channel communication between
peer modules of
domU and dom0.
I wrote one backend and one frontend driver (I tried registered as
misc/blk/input device) where I put in all my xenbus routines, but
cannot get .probe called after insmod my module, I
2013 Jun 23
1
Upgrading from 1.4 to 11.4.0
Hi
After upgrading from 1.4 to 11.4.0, I am able to receive calls
and direct them to extensions via defined trunks.
However, when making outgoing calls I receive the following
error:
-- Executing [000441111111 at default:4] Dial("SIP/fixedline-00000004", "SIP/mydevice/00441111111,60,w") in new stack
== Using SIP RTP CoS mark 5
-- Called SIP/mydevice/00441111111
WARNING[13053][C-00000002]: channel.c:6164 ast_channel_make_compatible_helper: No path to translate from SIP/mydevice-00000005 to SIP/hardphone-00000004
And when I try to try to initiate a...
2013 Jun 24
0
Upgrading to 11.4.0 and ast_channel_make_compatible_helper: No path to translate
Hi
After upgrading from 1.4 to 11.4.0, I *am* able to receive calls
and direct them to extensions via defined trunks.
However, when making outgoing calls I receive the following error:
-- Executing [000441111111 at default:4] Dial("SIP/fixedline-00000004", "SIP/mydevice/00441111111,60,w") in new stack
== Using SIP RTP CoS mark 5
-- Called SIP/mydevice/00441111111
WARNING[13053][C-00000002]: channel.c:6164 ast_channel_make_compatible_helper: No path to translate from SIP/mydevice-00000005 to SIP/hardphone-00000004
== Spawn extension (default, 004411...
2008 Sep 03
0
HELP - RAC Cant fsck bad superblock
...openfiler complaining about "Inconsistent filesystem structure "
This system has been restarted several times previously with no issues
So, I get on the openfiler server in rescue mode
the partition is /dev/hdc4 id =8e LVM
essentially, Im trying to fsck the mappings in /dev/mapper/mydevice
this was created by running
lvm pvscan
lvm vgscan
lvm lvchange -ay
lvm lvscan
ie fsck -nv /dev/mapper/mydevice
/*Im getting "bad magic number in inode while looking up journal inode
or slot 0"
and
encountered unrecoverable errors while replaying the journals and will
not continue.*/...
2014 Apr 14
2
Re: LXC + USB passthrough = Operation not permitted
...seen by the host machine, I guess it also cannot been seen by the container.
I used the following XML scripts to expose a third-party PCIe card to the container successfully, and I can access the card in the lxc.
<hostdev mode=’capabilities’ type=’misc’>
<source>
<char/dev/mydevice</char>
</source>
</hostdev>
Although I am not sure if my card is a char device, but it really works.
If I use “ hostdev mode=’subsystem’”, it will fail to expose the PCIe card.
From: Filip Maj [mailto:fil@saucelabs.com]
Sent: 2014年4月14日 11:26
To: WANG Cheng D
Cc: libvirt-users@...
2007 Dec 10
7
Sweave : change value in rnw file to generate multiple "single" reports ?
Hello,
I'm still trying to make the life of my colleagues easier. Nice, isn't it ?
At the moment, I'm looking for a way to generate multiple "single report".
In fact I have a .rnw file which send a query to a MySQL database
(rs<-dbSendQuery(con, statement="select * from treatdata where
name='Device1'")
But of course my colleagues have many devices and
2007 Nov 20
0
Problem adding new device & triggering backend
...0.0 and not for xen-3.1. (In fact my split driver worked perfectly
with xen-3.0.) I did note the changes in the scripts/code in both versions
and made sure I appropriately handled them in my 3.1 implementation. I get
an error that says something like "backend device could not be connected:
<mydevice>" during domU create in xen-3.1.
Could anyone give me pointers on how to get around this problem? What are
the major differences in the xen python scripts in xen3.0.0 and xen3.1 for
handling devices?
Thanks for any help,
Mukil
_______________________________________________
Xen-devel m...
2004 Oct 20
2
par() defaults in Rprofile
Dear List,
I've tried to set default par() in .Rprofile by putting the following in
the .First function:
setHook(packageEvent("graphics", "onLoad"),
function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)}
)
My goal was to set par() defaults without opening a device everytime at
startup. However, the next plot I create doesn't show these
2019 Oct 29
1
udev on CEntOS7 - can't get a match, looking for tips...
hmmm, I thought := assigned a key just like +=, except := locked it so
it could not be changed later. Am I misunderstanding the man page for udev?
Thanks,
John H. Nyhuis
Desk: (206)-685-8334
jnyhuis at uw.edu
Box 359461, 15th floor, 106
On 10/29/2019 4:31 PM, Leon Fauster via CentOS wrote:
> Am 29.10.19 um 23:41 schrieb John H Nyhuis:
>> Thanks, I did catch the mistype (after IU
2014 Apr 14
2
Re: LXC + USB passthrough = Operation not permitted
...;>
>> I used the following XML scripts to expose a third-party PCIe card to the
>> container successfully, and I can access the card in the lxc.
>>
>> <hostdev mode=’capabilities’ type=’misc’>
>>
>> <source>
>>
>> <char/dev/mydevice</char>
>>
>> </source>
>>
>> </hostdev>
>>
>> Although I am not sure if my card is a char device, but it really works.
>>
>> If I use “ hostdev mode=’subsystem’”, it will fail to expose the PCIe
>> card.
>>
>>
>...
2014 Apr 14
0
Re: LXC + USB passthrough = Operation not permitted
...been
> seen by the container.
>
> I used the following XML scripts to expose a third-party PCIe card to the
> container successfully, and I can access the card in the lxc.
>
> <hostdev mode=’capabilities’ type=’misc’>
>
> <source>
>
> <char/dev/mydevice</char>
>
> </source>
>
> </hostdev>
>
> Although I am not sure if my card is a char device, but it really works.
>
> If I use “ hostdev mode=’subsystem’”, it will fail to expose the PCIe card.
>
>
>
> *From:* Filip Maj [mailto:fil@saucelabs.co...
2014 Apr 14
3
Re: LXC + USB passthrough = Operation not permitted
Dear Fil,
I am not sure if my answer can help you.
I had ever asked a similar question to Daniel and I was using a thirty-party card. As a container uses a shared kernel with the host, so hostdev mode='subsystem' doesn't make sense. Maybe you can try to use hostdev mode='capabilities'. Please see http://libvirt.org/formatdomain.html#elementsHostDevCaps
Hope this helps
Cheng
2008 Jul 07
7
Handling virtual disks on Xen
Hello everyone,
Im starting to use Xen on a SUSE Linux Enterprise Server 10 SP2, but Im not
quite happy yet with the virtual disk management. I still need to do a lot
of research about that, but first I want to ask the community about a simple
way to handle the guest machine disks.
*Is there any way to increase/decrease a guest machine disk after the OS is
installed? Can I have a dynamically
2010 May 07
0
Wine release 1.1.44
...W.
msi: Register more patch details.
wtsapi32: Add a stub implementation of WTSQueryUserToken.
msi: Forward MsiDetermineApplicablePatchesA to MsiDetermineApplicablePatchesW.
msi: Apply registered patches in MsiOpenPackage.
Henri Verbeet (65):
wined3d: Get rid of "myDevice".
wined3d: Simply pass an IWineD3DSurfaceImpl pointer to surface_load_ds_location().
wined3d: Simply pass an IWineD3DSurfaceImpl pointer to surface_modify_ds_location().
wined3d: Simply pass an IWineD3DSurfaceImpl pointer to surface_is_offscreen().
wined3d: Simply pass...