Displaying 13 results from an estimated 13 matches for "l301".
Did you mean:
301
2014 Feb 04
2
progress output during guestfish sh commands
Is there any way to flush the output of a long running 'guestfish sh
cmd.sh' call?
It seems to me that output is only shown once cmd.sh has finished. I
already split cmd.sh into smaller pieces to see overall progress. But
output from a verbose, long running single command within cmd.sh is not
shown.
Olaf
2014 Feb 04
1
Re: progress output during guestfish sh commands
...tput from a verbose, long running single command within cmd.sh is not
> > shown.
>
> Verbose output is carried over a separate channel from qemu, so things
> like kernel messages appear asynchronously:
>
> https://github.com/libguestfs/libguestfs/blob/master/src/conn-socket.c#L301
Thanks.
I think doing 'cmd < /dev/null &> /dev/kmsg' will help, I will try that
way to see whats actually going on.
Olaf
2016 Jun 27
2
query "Data stale" from the cmdline
Hello,
is there a way to query from the cmdline if the UPS data is stale?
"upsc" outputs a lot of information, but not if the data is stale.
Example output from a "stale" UPS on the server:
(nut version: nut-2.7.2-3.el7)
# upsc apcsmart
battery.charge: 100
battery.charge.low: 10
battery.charge.warning: 50
battery.mfr.date: 2014/09/01
battery.runtime: 1320
2012 Sep 25
4
MSI Package Provider and Install_options
Hello,
I''m trying to install a few MSI packages on Windows, and I''m having trouble
specifying options.
Here is what I want to execute
C:\packages\my_problematic_package.msi \quiet \passive
As you can see, I''m trying to specify two arguments to the package, but I
can''t figure out how to use the Puppet package resource to accomplish this.
Install_options
2016 Jun 27
0
query "Data stale" from the cmdline
...se parameters to avoid the stale condition, at the expense of slightly longer latency for updates. The smaller `pollinterval` (seconds between poll cycles) is used for items marked "HU_FLAG_QUICK_POLL" in the HID tables: https://github.com/networkupstools/nut/blob/master/drivers/apc-hid.c#L301 and the `pollfreq` value is used for polling the rest.
More information here: http://networkupstools.org/docs/man/usbhid-ups.html (I think the interrupt stuff applies to APC models with USB ID 051d:0002)
If needed, we can look at the debug output to see what is going on, but for whatever reason,...
2014 Feb 04
0
Re: progress output during guestfish sh commands
...overall progress. But
> output from a verbose, long running single command within cmd.sh is not
> shown.
Verbose output is carried over a separate channel from qemu, so things
like kernel messages appear asynchronously:
https://github.com/libguestfs/libguestfs/blob/master/src/conn-socket.c#L301
However the command output (both stdout & stderr) is captured into a
string buffer in the daemon, so it does not appear in verbose output:
https://github.com/libguestfs/libguestfs/blob/master/daemon/command.c#L270
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.c...
2020 Sep 03
2
Rgui never processes ~/.Renviron
...sers\alice> Rgui
and you'll see that FOO is reported as "" (empty), whereas with R or
Rscript, it is reported as "123".
TROUBLESHOOTING:
>From code inspection
(<https://github.com/wch/r-source/blob/1658c8491e9cdc6d2fe61603ed23ae56232b6727/src/main/Renviron.c#L298-L301>):
#ifdef Win32
{
char buf[1024]; /* MAX_PATH is less than this */
/* R_USER is not necessarily set yet, so we have to work harder */
s = getenv("R_USER");
if(!s) s = getenv("HOME");
if(!s) return;
snprintf(buf, 1024, "%s/.Renviron", s);...
2020 Jul 09
2
Understand alias-analysis results
...tIn` (called, e.g., by
`AliasSetTracker::mergeAliasSetsForPointer`) sets up forwarding for
`AS.Forward`:
https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L51,
https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L301
FWIW, you can use a tracer or manually step through `opt` in a debugger
to follow the function calls.
> And how to interpret that we have "2 must alias responses"? Where
> does it come from? And why do we have "0 may alias response"? I
> would expect to ha...
2015 Mar 17
0
[PATCH] virt-ls: support drive letters on Windows
---
cat/ls.c | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
diff --git a/cat/ls.c b/cat/ls.c
index 9161fb6..151c11d 100644
--- a/cat/ls.c
+++ b/cat/ls.c
@@ -37,6 +37,7 @@
#include "options.h"
#include "visit.h"
+#include "windows.h"
/* Currently open libguestfs handle. */
guestfs_h *g;
@@ -76,6 +77,8 @@ static void
2015 Mar 17
2
[PATCH] RFE: support Windows drive letters in virt-ls
It is modelled after virt-cat.
Fixes RHBZ#845234
Maros Zatko (1):
virt-ls: support drive letters on Windows
cat/ls.c | 31 ++++++++++++++++++++++++++++++-
1 file changed, 30 insertions(+), 1 deletion(-)
--
1.9.3
2016 Jun 27
2
query "Data stale" from the cmdline
...id the stale condition, at the expense
> of slightly longer latency for updates. The smaller `pollinterval`
> (seconds between poll cycles) is used for items marked
> "HU_FLAG_QUICK_POLL" in the HID tables:
> https://github.com/networkupstools/nut/blob/master/drivers/apc-hid.c#L301
> and the `pollfreq` value is used for polling the rest.
>
> More information here: http://networkupstools.org/docs/man/usbhid-ups.html
> (I think the interrupt stuff applies to APC models with USB ID 051d:0002)
>
> If needed, we can look at the debug output to see what is going...
2020 Jul 10
2
Understand alias-analysis results
...SetTracker::mergeAliasSetsForPointer`) sets up forwarding for
> `AS.Forward`:
> https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L51,
>
> https://github.com/llvm/llvm-project/blob/release/10.x/llvm/lib/Analysis/AliasSetTracker.cpp#L301
> FWIW, you can use a tracer or manually step through `opt` in a debugger
> to follow the function calls.
>
> > And how to interpret that we have "2 must alias responses"? Where
> > does it come from? And why do we have "0 may alias res...
2020 Jul 09
2
Understand alias-analysis results
Hey Matt,
That's awesome. Thank you very much for all the information and
clarification! Just a few follow up questions. Could you kindly shed some
lights on it? Thank you!
1. I tried to tweak the code in the following way:
- Clang [-> LLVM-IR]: https://llvm.godbolt.org/z/n9rGrs
- [LLVM-IR ->] opt: https://llvm.godbolt.org/z/Uc6h5Y
And i note that the outputs are:
Alias sets for