Displaying 20 results from an estimated 42 matches for "sha512sums".
Did you mean:
sha512sum
2008 Mar 11
3
Automatically send CTRL-D
Hi,
Sorry for the little bit off-topic.
I have a script that has to performe a hash over a password.
Problem is that sha512sum expects CTRL-D to be pressed to return to the
command prompt.
I've searched all over Google, but either I didn't do the right search or
there is nothing relevant about this.
Bottom line is that I need this command to print the password hash and
returns to the
2017 Feb 07
1
Re: [PATCH v2 1/7] mllib: factorize code to add Checksum.get_checksum function
On Tue, Feb 07, 2017 at 04:14:16PM +0100, Cédric Bosdonnat wrote:
> Getting checksum involves the same code than verifying them. Create
> a get_checksum function and use it in verify_checksum.
> ---
> mllib/checksums.ml | 25 ++++++++++++++++---------
> mllib/checksums.mli | 9 +++++++++
> 2 files changed, 25 insertions(+), 9 deletions(-)
>
> diff --git
2017 Feb 07
0
[PATCH v2 1/7] mllib: factorize code to add Checksum.get_checksum function
Getting checksum involves the same code than verifying them. Create
a get_checksum function and use it in verify_checksum.
---
mllib/checksums.ml | 25 ++++++++++++++++---------
mllib/checksums.mli | 9 +++++++++
2 files changed, 25 insertions(+), 9 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index 1009e131c..bee829085 100644
--- a/mllib/checksums.ml
+++
2017 Feb 10
0
[PATCH v3 01/10] mllib: factorize code to add Checksum.get_checksum function
Getting checksum involves the same code than verifying them. Create
a get_checksum function and use it in verify_checksum.
---
mllib/checksums.ml | 25 +++++++++++++++----------
mllib/checksums.mli | 9 +++++++++
2 files changed, 24 insertions(+), 10 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index 1009e131c..000214703 100644
--- a/mllib/checksums.ml
+++
2012 Sep 03
1
[PATCH] daemon: provide list of checksum commands
While adding the list of external commands I missed the
various checksum tools.
Signed-off-by: Olaf Hering <olaf at aepfle.de>
---
WARNING: not compile tested ...
diff --git a/daemon/checksum.c b/daemon/checksum.c
index f2e040d..f16a7c0 100644
--- a/daemon/checksum.c
+++ b/daemon/checksum.c
@@ -31,24 +31,31 @@
GUESTFSD_EXT_CMD(str_find, find);
GUESTFSD_EXT_CMD(str_xargs, xargs);
2015 Jul 28
0
[PATCH 02/10] builder: create and use a new Checksums module
Introduce a new Checksums module to handle the check of checksums,
moving part of the Sigchecker code to it.
Adapt the rest of virt-builder to this new module.
---
builder/Makefile.am | 2 ++
builder/builder.ml | 2 +-
builder/checksums.ml | 51 +++++++++++++++++++++++++++++++++++++++++++++++++
builder/checksums.mli | 29 ++++++++++++++++++++++++++++
builder/index_parser.ml | 4
2006 Dec 08
2
1 file of 16000 always being updated
Hi all!
I'm trying rsync synchronizing some directories with about 16.000 files.
After the first synchronization, the others are transfering just the
changed files, as it is expected to be, except for 1 single file, that
is not changed (size or time) and is being transfered in all
synchronization.
The file is called JSPWiki.war, and is a java war file.
I checked the size and times on both
2010 Dec 17
15
Centos 5.5 - Kernel Panic while booting.
Dear centos community,
I was in the process of loading the latest 5.5 release of centos in a VMWARE ESX 4.1 host as my first virtual machine, suddenly while booting I got a panic error with the following on screen. Can someone point me in the right direction. This machine has 24 cores and I allocated 1 for Centos to use with 1024MB of memory. Any clues or workaround to solve this problem? Thank
2016 Sep 30
6
[PATCH 0/4] Consolidate Checksums as common code
Hi,
this small series moves the OCaml Checksums module from virt-builder to
mllib, adding more features to use it also for v2v.
Thanks,
Pino Toscano (4):
mllib: move Checksums from builder
mllib, builder: add and use Checksums.of_string
mllib: add SHA1 support in Checksums
v2v: -i ova: use Checksums
builder/Makefile.am | 2 --
builder/builder.ml | 6 +++-
2018 Mar 08
1
Fwd: Re: [Gluster-Maintainers] [gluster-packaging] glusterfs-4.0.0 released
Forwarding to the devel and users groups as well.
We have tagged 4.0.0 branch as GA, and are in the process of building
packages.
It would a good time to run final install/upgrade tests if you get a
chance on these packages (I am running off to do the same now).
Thanks,
Shyam
-------- Forwarded Message --------
Subject: Re: [Gluster-Maintainers] [gluster-packaging] glusterfs-4.0.0
released
2010 Dec 17
4
using rsync to keep squeeze amd64 image freshened.
Hi all,
? ? ? I tried to get my query of how to use rsync by the mailing list
debian-user at lists.debian.org but the answers were not satisfactory.
You can see the whole thread starting from
http://lists.debian.org/debian-user/2010/12/msg00651.html
What I want to do is to keep the weekly amd64 squeeze build , from t
its
2016 Sep 30
0
[PATCH 1/4] mllib: move Checksums from builder
Move the Checksums module from virt-builder mostly as it is; the only
change is that on checksum mismatch an exception is raised rather than
invoking "error" directly: this way users of verify_checksum &
verify_checksums can do their own handling of the situation.
---
builder/Makefile.am | 2 --
builder/builder.ml | 6 +++++-
builder/checksums.ml | 57
2011 Sep 06
1
Inconsistent md5sum of replicated file
I was wondering if anyone would be able to shed some light on how a file
could end up with inconsistent md5sums on Gluster backend storage.
Our configuration is running on Gluster v3.1.5 in a distribute-replicate
setup consisting of 8 bricks.
Our OS is Red Hat 5.6 x86_64. Backend storage is an ext3 RAID 5.
The 8 bricks are in RR DNS and are mounted for reading/writing via NFS
automounts.
2015 Jul 28
0
[PATCH 03/10] builder: add SHA256 support in Checksums
---
builder/checksums.ml | 4 ++++
builder/checksums.mli | 1 +
2 files changed, 5 insertions(+)
diff --git a/builder/checksums.ml b/builder/checksums.ml
index 73d541f..25b3328 100644
--- a/builder/checksums.ml
+++ b/builder/checksums.ml
@@ -24,17 +24,21 @@ open Utils
open Printf
type csum_t =
+| SHA256 of string
| SHA512 of string
let string_of_csum_t = function
+ | SHA256 _ ->
2016 Nov 04
0
[PATCH 1/5] mllib: compute checksum of file inside tar
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
mllib/checksums.ml | 10 ++++++++--
mllib/checksums.mli | 2 +-
2 files changed, 9 insertions(+), 3 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index dfa8c3a..9fcff2f 100644
--- a/mllib/checksums.ml
+++ b/mllib/checksums.ml
@@ -45,7 +45,7 @@ let of_string csum_type csum_value =
| "sha512" ->
2016 Nov 12
0
[PATCH v2 1/5] mllib: compute checksum of file inside tar
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
mllib/checksums.ml | 11 +++++++++--
mllib/checksums.mli | 2 +-
2 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index dfa8c3a..0907499 100644
--- a/mllib/checksums.ml
+++ b/mllib/checksums.ml
@@ -45,7 +45,7 @@ let of_string csum_type csum_value =
| "sha512"
2016 Dec 07
0
[PATCH v3 1/6] mllib: compute checksum of file inside tar
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
---
mllib/checksums.ml | 11 +++++++++--
mllib/checksums.mli | 7 +++++--
2 files changed, 14 insertions(+), 4 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index dfa8c3a..a6c995b 100644
--- a/mllib/checksums.ml
+++ b/mllib/checksums.ml
@@ -45,7 +45,7 @@ let of_string csum_type csum_value =
|
2017 Jan 03
0
[PATCH 2/5] mllib: factorize code to add Checksum.get_checksum function
Getting checksum involves the same code than verifying them. Create
a get_checksum function and use it in verify_checksum.
---
mllib/checksums.ml | 20 +++++++++-----------
mllib/checksums.mli | 3 +++
2 files changed, 12 insertions(+), 11 deletions(-)
diff --git a/mllib/checksums.ml b/mllib/checksums.ml
index dfa8c3ae7..3efc764b9 100644
--- a/mllib/checksums.ml
+++ b/mllib/checksums.ml
@@
2023 Jul 07
1
Asterisk Release 20.3.1
Le 07/07/2023 à 12:49, Joshua C. Colp a écrit :
> On Fri, Jul 7, 2023 at 6:40 PM Jean-Denis Girard <jd.girard at sysnux.pf
> <mailto:jd.girard at sysnux.pf>> wrote:
>
> There seems to be a problem with the tar.gz archive on github. It's
> correct on downloads.asterisk.org <http://downloads.asterisk.org>.
>
>
> Can you be more specific?
2015 Jul 28
19
[PATCH 00/10] RFC: builder: first support for Simple Streams metadata
Hi,
this series adds a basic support for Simple Streams v1.0 metadata
files. This makes it possible to create a repository .conf files with
[cirros]
uri=http://download.cirros-cloud.net
format=simplestreams
to read the latest version of each CirrOS image.
TODO items:
- a bit more testing: listing and creating images works, so the
current metadata is correct
- handle revisions, so newer