Displaying 11 results from an estimated 11 matches for "wif".
Did you mean:
if
2016 Aug 08
1
slow speeds with Windows 10
Hai,
My advice would be get a cable tester. Or see if you can loan some cable to test, with what your saying im almost sure you have a bad cable/connector/ethernet port somewhere.
And check if you synoligy supports gigabit networks and put in a gigabit swich. Then see if you wifi is still faster then you ethernet.
If you model is a 1xx, what happens when you disable https?
DSM version is?
> But as I said I have 60MB/s speeds over the wire to some Linux OS.
Thats for wire also slow in my opinion, if have a "good" setup, you can get
the 100-115MB/s over gigab...
2015 Sep 29
8
[PATCH 0/7] copy-in/copy-out: Capture errors from tar subprocess (RHBZ#1267032).
Commits 3c27f3d91e1566854747bbe844186783fc84f3a8 and
1b6f0daa9ae7fcc94e389232d0c397816cda973d added an internal API for
running commands asynchronously. It is only used by the copy-in and
copy-out APIs.
Unfortunately this made the command code very complex: it was almost
impossible to redirect stderr to a file, and there were a lot of
long-range dependencies through the file. It was also buggy:
2015 Feb 02
8
[PATCH 0/7 v2] Make copy_in & copy_out APIs, and use copy_in in customize
Hi,
attached there is the second version of the patch series adding
copy_in and copy_out in the library, mostly moving them from guestfish.
It also adds the copy_in usage in virt-customize, as aid in a new image
building.
Thanks,
Pino Toscano (7):
cmd: add a way to run (and wait) asynchronously commands
cmd: add a child-setup callback
cmd: add the possibility to get a fd to the process
2020 Sep 25
0
Re: Help on Meson build Error
...-Wdiscarded-qualifiers -Wdiv-by-zero
-Wduplicated-cond -Wduplicate-decl-specifier -Wempty-body -Wendif-labels
-Wexpansion-to-defined -Wextra -Wformat-contains-nul -Wformat-extra-args
-Wformat-nonliteral -Wformat-security -Wformat-y2k -Wformat-zero-length
-Wframe-address -Wfree-nonheap-object -Whsa -Wif-not-aligned
-Wignored-attributes -Wignored-qualifiers -Wimplicit
-Wimplicit-function-declaration -Wimplicit-int -Wincompatible-pointer-types
-Winit-self -Winline -Wint-conversion -Wint-in-bool-context
-Wint-to-pointer-cast -Winvalid-memory-model -Winvalid-pch
-Wlogical-not-parentheses -Wlogical-op...
2015 Jan 26
6
[PATCH 1/6] cmd: add a way to run (and wait) asynchronously commands
...)
return -1;
if (loop (cmd) == -1)
@@ -624,6 +627,49 @@ guestfs___cmd_run (struct command *cmd)
return wait_command (cmd);
}
+/* Fork, run the command, and returns the pid of the command,
+ * and its stdout and stderr file descriptors.
+ *
+ * Returns the exit status. Test it using WIF* macros.
+ *
+ * On error: Calls error(g) and returns -1.
+ */
+int
+guestfs___cmd_run_async (struct command *cmd, pid_t *pid,
+ int *stdout_fd, int *stderr_fd)
+{
+ finish_command (cmd);
+
+ if (cmd->g->verbose)
+ debug_command (cmd);
+
+ if (run_command (cmd, s...
2016 Aug 07
5
slow speeds with Windows 10
I was transferring a file from a (slow) smbd server running on some NAS.
The transfer speed is only 1MB/s but the NAS uses 100% CPU. Normally the
NAS can handle 60MB/s download (from the NAS).
Could it be that the connection uses encryption or something?
What could be causing this slow speed?
I have internet download speeds over this same connection surpassing
5MB/s. I cannot imagine why
2003 Nov 06
11
USB handsets/headsets??
Anyone got any pointers on where to find USB handsets or headsets that
can be used as the audio device on a softphone?
Later..
2020 Sep 25
2
Re: Help on Meson build Error
On Thu, Sep 24, 2020 at 2:58 PM Ján Tomko <jtomko@redhat.com> wrote:
> On a Thursday in 2020, Wei Wang wrote:
> >Seems it didn't appear on the mailing list, resent it.
> >
> > Hi folks,
> >
> >I'm trying to build libvirt using meson with the latest upstream libvirt,
> >but the compilation fails:
> >(followed on
2005 Jun 28
1
Help - Firewall/Router Configuration
...NG
iptables -P INPUT DROP
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
#Virtual Interface on Internal Information:
ifconfig eth0:1 10.5.5.1 netmask 255.255.255.0
#VARIABLES:
#LAN:
IF0="eth0"
IP0="192.168.0.2"
P0="192.168.0.1"
P0_NET="192.168.0.0"
#WIF:
IF1="eth1"
IP1="<real IP>"
P1="<real IP>"
P1_NET="<real IP>"
#DSL:
IF2="eth2"
IP2="<real IP>"
P2="<real IP>"
P2_NET="<real IP>"
#DMZ:
IF3=''eth3"
IP3="192.168.0.3...
2012 Oct 18
10
[PATCH 0/10] Add a mini-library for running external commands.
Inspired by libvirt's virCommand* internal mini-library, this adds
some internal APIs for running commands.
The first patch contains the new APIs. The subsequent patches change
various parts of the library over to use it.
Rich.
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.