search for: l2g

Displaying 3 results from an estimated 3 matches for "l2g".

Did you mean: l2
2005 Jul 30
3
LVM Snapshot Create Error
Just discovered that on CentOS 4.1 when you issue the command: lvcreate -s -n temp -L2G /dev/vgname/lvname to create a snapshot, you get the error message: snapshot: Required device-mapper target(s) not detected in your kernel I've checked and recheck my spelling and tried using the device created under /dev/mapper. I've tried it on both x86_64 and on i386. Works as expect...
2007 Mar 23
1
Consolidating LVM volumes..
Hi, Something I haven't done before is reduce the number of volumes on my server.. Here is my current disk setup.. [root at server1 /]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-RootVol00 15G 1.5G 13G 11% / /dev/md0 190M 42M 139M 24% /boot /dev/mapper/VolGroup00-DataVol00 39G 16G
2008 Jan 01
0
4 commits - libswfdec/swfdec_as_internal.h libswfdec/swfdec_as_object.c libswfdec/swfdec_as_types.c libswfdec/swfdec_as_types.h libswfdec/swfdec_sprite_movie_as.c test/trace
...0, 50 diff --git a/test/trace/localToGlobal-various.as b/test/trace/localToGlobal-various.as new file mode 100644 index 0000000..3a02230 --- /dev/null +++ b/test/trace/localToGlobal-various.as @@ -0,0 +1,66 @@ +// makeswf -v 7 -s 200x150 -r 1 -o localToGlobal-various.swf localToGlobal-various.as + +l2g = function (mc, x, y) { + if (typeof (x) != "object") + return l2g (mc, { x: x, y: y }); + + var s = x.x + ", " + x.y + " => "; + s += mc.localToGlobal (x) + " => "; + trace (s + x.x + ", " + x.y); +}; + +g2l = function (mc, x, y) { +...