Displaying 9 results from an estimated 9 matches for "mv2".
Did you mean:
m32
2013 Jun 14
3
[PATCH 0/2] Fix inspection of Fedora guests (RHBZ#974489).
Here is a preliminary fix for this bug.
I'm running the test suite on this now.
Rich.
2006 Jun 16
2
--remove-sent-files to remove "synced" files
I was looking through the documentation on -remove-sent-files and it
seems it will only remove files actually sent across the connection. Am
I correct in assuming this and is there any patch/method for removing
synced files from the source regardless of whether they were necessary
to transfer over or not?
Thanks,
Matt Breedlove
-------------- next part --------------
HTML
2007 Feb 16
1
ASUS M2V mobo issues
...ed
ASUS in Louisville, KY and they advised that I get a new BIOS chip. The
conversation seemed to indicate this was not a new phenomenon. I ordered a
new chip for each machine with their newest BIOS. I inserted a new chip in
one of the systems and fired it up. Low and behold, the chip is not an MV2
BIOS as before, but an American Megatrends BIOS (2.45.x). It works much
better and there are more appropriate settings in the BIOS now for ACPI.
The plug and play drivers in CentOS 4.4 may work better with this BIOS as
well since there are no onboard LAN settings in the BIOS setup. I'm hoping...
2006 Jun 16
8
DO NOT REPLY [Bug 3845] New: Add --remove-source-files
...c@gmail.com
QAContact: rsync-qa@samba.org
Let's have a --remove-source-files option that works like --remove-sent-files
but removes from the source everything in the file list, not just transferred
files. Then I could use rsync for my primary move command (via a wrapper
called "mv2") as well as my primary copy command ("cp2").
--
Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.
2010 Nov 25
1
Problem starting puppetd for the first time (Could not create resources ...)
Hi,,,
I have a strange problem when installing puppet client 2.6.3 on a
node.
I have installed facter-1.3.8-4 and ruby-1.8.6-8.
When I start puppetd as a normal user everything behaves normally.
A .puppet directory is installed under $HOME and ssl key is installed
under $HOME/.puppet/ssl.. I sign the certificat on the puppet master
and the client is working fine.
However I cannot change
2018 Jul 31
0
[PATCH nbdkit 3/4] Add map filter.
...ariant that
+ * no intervals in the array may overlap, and therefore we have to
+ * split existing intervals as required. Earlier mappings are
+ * discarded where they overlap with later mappings.
+ */
+
+/* Compare entries by rq_start. */
+static int
+mapping_compare (const void *mv1, const void *mv2)
+{
+ const struct mapping *m1 = mv1;
+ const struct mapping *m2 = mv2;
+
+ if (m1->rq_start < m2->rq_start)
+ return -1;
+ else if (m1->rq_start > m2->rq_start)
+ return 1;
+ else
+ return 0;
+}
+
+/* Return true if two mappings overlap in the request range. */
+sta...
2004 Aug 06
0
Majordomo results: Hi
...3v5zwdedyh129k5q' not recognized.
>>>> F1CEHDLLjbpgP3UD3q5iUUzk2Yx4SCxEuDbZCDQ3dkfGUE/YDbCNnQhShYvDdk1zCYpjxgUTZmik
**** Command 'f1cehdlljbpgp3ud3q5iuuzk2yx4scxeudbzcdq3dkfgue/ydbcnnqhshyvddk1zcypjxgutzmik' not recognized.
>>>> 9EBqwP8MHUgEOtGNWe7XO/Md+QYxoab3Bw+Mv2/ID6hIBrj7DI34vVPDBRFc2kTkk+1mFA1dmwpe
**** Command '9ebqwp8mhugeotgnwe7xo/md+qyxoab3bw+mv2/id6hibrj7di34vvpdbrfc2ktkk+1mfa1dmwpe' not recognized.
>>>> 0o21oe6oEWUSc4uFov308YbJweACRrk0BZ8j0Ba2WIoTCtdA2FmJh3RgQHQeGE2J7zc7ZNkKcmX5
**** Command '0o21oe6oewusc4ufov308ybjweacrrk0b...
2018 Jul 31
7
[PATCH nbdkit 0/4] Add truncate and map filters.
This patch series proposes two new filters.
* truncate: This can truncate, extend, round up or round down the size
of a plugin/device. A typical usage is to fix the qemu problem that
it can only handle devices which are a multiple of 512-bytes:
nbdkit --filter=truncate random size=500 round-up=512
This will serve a virtual device with size 512 bytes. Reading from
the last 12 bytes will
2017 Feb 18
8
[PATCH 0/6] generator: Split up generator/actions.ml
Split up the huge generator/actions.ml into several smaller files.
Rich.