Displaying 20 results from an estimated 99 matches for "tarfil".
Did you mean:
tarfile
2015 Sep 08
1
[PATCH] build: improve maintainer-check-extra-dist target
...-)
diff --git a/Makefile.am b/Makefile.am
index 8f0bb1b..f4916a1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -573,13 +573,15 @@ maintainer-tag:
maintainer-check-extra-dist:
zcat $(PACKAGE_NAME)-$(VERSION).tar.gz | tar tf - | sort | \
sed 's,^$(PACKAGE_NAME)-$(VERSION)/,,' > tmp/tarfiles
- git ls-files | sort > tmp/gitfiles
- diff -ur tmp/tarfiles tmp/gitfiles | \
- grep '^\+' | \
- grep -v '^\+intltool-.*\.in' | \
- grep -v '^\+.gitmodules' | \
- grep -v '^\+.gnulib' ||:
- rm tmp/tarfiles tmp/gitfiles
+ git ls-files | \
+ grep -v '...
2001 Mar 14
1
What's needed in tarfile? (fwd)
fyi, is this a FAQ?
-------------- next part --------------
An embedded message was scrubbed...
From: Markus Friedl <Markus.Friedl at informatik.uni-erlangen.de>
Subject: What's needed in tarfile?
Date: Wed, 14 Mar 2001 11:02:57 +0100 (MET)
Size: 2650
Url: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/20010314/74884144/attachment.mht
2008 Jul 02
0
[PATCH] update tboot tarfile to latest version
This patch updates the tboot tarfile used by the optional tboot-* build
targets to be the latest one in the Trusted Boot SourceForge site.
Please include this patch in 1.3.
Joe
# HG changeset patch
# User Joseph Cihula <joseph.cihula@intel.com>
# Date 1215027500 25200
# Node ID 1877486e4c371c9d3fe52671cdcb0a13feafefa7
# Paren...
2010 May 19
2
Error in untar2(tarfile, files, list, exdir) : unsupported entry type ‘x’
Hi R gurus,
I'm getting the following error when trying to build and install an R package:
Error in untar2(tarfile, files, list, exdir) : unsupported entry type ?x?
I build the package like so:
R --no-init-file CMD build mypackage
Then try to install it:
sudo R --no-init-file CMD INSTALL mypackage.tar.gz
...which dies with the above error. I can extract the archive fine
with tar -zxf, so I don't think t...
2005 Aug 28
0
thanks for changing the name of the alpha tarfile!
Its much easier to build RPM:s now, thanks :)
--
Joakim Verona
www.verona.se
2012 Jan 16
1
[PATCH] generator: Add an explicit Cancellable flag
...t likely to change. *)
[["mkdir"; "/download"];
@@ -2815,7 +2817,8 @@ To get the checksum for a device, use C<guestfs_checksum_device>.
To get the checksums for many files, use C<guestfs_checksums_out>.");
- ("tar_in", (RErr, [FileIn "tarfile"; Pathname "directory"], []), 69, [],
+ ("tar_in", (RErr, [FileIn "tarfile"; Pathname "directory"], []), 69,
+ [Cancellable],
[InitScratchFS, Always, TestOutput (
[["mkdir"; "/tar_in"];
["tar_in"; &quo...
2010 Dec 17
2
installing package from source with Linux
...e exact cause of the problem.
I am trying to install a R package from source as it is not yet
available under Cran (Rssa, downloaded here: https://github.com/asl/rssa).
Running
sudo R CMD INSTALL asl-rssa-6f458e4.tar.gz
from the console however gives me these error messages:
Warnung in untar2(tarfile, files, list, exdir) :
checksum error for entry 'pax_global_header'
Fehler in untar2(tarfile, files, list, exdir) : unsupported entry type ?g?
Does anybody have any hints on how to solve this? Do I have the wrong
packing program installed?
I am trying this with Ubuntu 9.10 and the fo...
2020 Jul 06
2
Re: [PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...em B<file=>PATH_INSIDE_TAR
> +
> +The path of the file inside the tarball to serve. This parameter is
> +required. It must exactly match the name stored in the tarball, so
> +use S<C<tar tf filename.tar>>
However, I'm a bit worried about how it would work if the tarfile itself
includes a file named 'exportname' in the top directory of the tarfile.
A quick test confirms my worry:
$ cd /tmp
$ touch exportname
$ tar cf f.tar exportname
$ tar tf f.tar
exportname
$ LANG=C tar --no-auto-compress -tRvf f.tar exportname
block 0: -rw-rw-r-- eblake/eblake 0...
2011 Apr 01
1
"R CMD check" accepts but "R CMD INSTALL" rejects a tar ball.
I have somehow managed to made a source tar ball which "R CMD check" accepts but "R CMD INSTALL" rejects with:
------------------
Warning in untar2(tarfile, files, list, exdir) :
checksum error for entry 'pax_global_header'
Error in untar2(tarfile, files, list, exdir) : unsupported entry type ?g?
------------------
This happens with both R 2.12.2 (x86 linux) and R svn (x86_64 linux). Since R CMD check does install as part of the check proc...
2020 Jun 28
5
[PATCH nbdkit 0/2] tar: Rewrite the tar plugin (again), this time in C.
For context see these threads:
https://lists.gnu.org/archive/html/qemu-discuss/2020-06/threads.html#00053
https://lists.gnu.org/archive/html/qemu-block/2020-06/threads.html#01496
Rich.
2015 Jul 15
1
[PATCH 1/2] actions: tar_out: add xattrs and selinux optargs
...s.ml b/generator/actions.ml
index 16aeb4b..b336f56 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -4824,7 +4824,7 @@ compression types)." };
{ defaults with
name = "tar_out"; added = (1, 0, 3);
- style = RErr, [String "directory"; FileOut "tarfile"], [OString "compress"; OBool "numericowner"; OStringList "excludes"];
+ style = RErr, [String "directory"; FileOut "tarfile"], [OString "compress"; OBool "numericowner"; OStringList "excludes"; OBool "xat...
2020 Jun 28
0
[PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...lt;inttypes.h>
+#include <string.h>
+#include <unistd.h>
+#include <fcntl.h>
+#include <assert.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+
+#include <nbdkit-plugin.h>
+
+#include "cleanup.h"
+#include "utils.h"
+
+static char *tarfile; /* The tar file (tar= parameter). */
+static const char *file; /* File within tar (file=). */
+static uint64_t offset, size; /* Offset and size within tarball. */
+
+static void
+tar_unload (void)
+{
+ free (tarfile);
+}
+
+static int
+tar_config (const char *key, const char *...
2020 Jul 06
0
Re: [PATCH nbdkit 2/2] tar: Rewrite the tar plugin (again), this time in C.
...0 Red Hat Inc.
>
> Interesting change in dates.
I think that was a copy/paste error effectively. I copied the
Makefile from an existing C plugin, rather than attempting to rewrite
the old Perl-based one.
> >+static int
> >+tar_config_complete (void)
> >+{
> >+ if (tarfile == NULL || file == NULL) {
> >+ nbdkit_error ("you must supply the tar=<TARFILE> and file=<FILENAME> "
> >+ "parameters");
> >+ return -1;
> >+ }
> >+
> >+ return 0;
> >+}
> >+
> >+#defin...
2007 Jul 30
3
Tar with smbclient
Just created a new backup server using CentOS 5.0. I am using a auth file
to access windows shares for backups. When connecting like this
smbclient //server/share -A=/auth/file
it works.
When I try to tar with smbclient like this
smbclinet //server/share -A=/auth/file -Tc /backup/tarfile.tar
I get the following message.....
session_setup_failed : NT_STATUS_LOGON_FAILURE
Am I doing something wrong? This worked just find with the older versions
of Fedora and CentOS.
--
Bo Lynch
Systems Administrator
RedHat Academy Instructor
Energy Manager
Amelia County Public Schools
2002 May 02
3
Building own packages on Windows 2000!
...* checking whether `INDEX' is up-to-date ... OK
* checking whether `data/00Index' is up-to-date ... OK
* removing junk files
* building `masspec_0.1.tar.gz'
something wrong!!!!!!!!!!
tar: Unknown option "-hXf"
Usage: tar -{crtux}[lpmovwzU[0-7[lmh]]] [-b blocks]
[-f tarfile] [-V volpattern] [file [-C pathname] ...]
masspec_0.1.tar: No such file or directory
even i have the tools for windows installed.
I really want to build and install my own packages! I am out of ideas now!
Can anyone give me a hint?
(is there a mailing list for R-Ms Windows?)
Sinerely Eryk...
2012 Aug 14
7
[PATCH 0/7] Add tar compress, numericowner, excludes flags.
https://bugzilla.redhat.com/show_bug.cgi?id=847880
https://bugzilla.redhat.com/show_bug.cgi?id=847881
This patch series adds various optional arguments to the tar-in and
tar-out commands.
Firstly (1/7) an optional "compress" flag is added to select
compression. This makes the calls tgz-in/tgz-out/txz-in/txz-out
deprecated, and expands the range of compression types available.
2016 Oct 21
3
NFS help
On Fri, Oct 21, 2016 at 11:21 AM, <m.roth at 5-cent.us> wrote:
> Larry Martell wrote:
>> We have 1 system ruining Centos7 that is the NFS server. There are 50
>> external machines that FTP files to this server fairly continuously.
>>
>> We have another system running Centos6 that mounts the partition the files
>> are FTP-ed to using NFS.
> <snip>
2009 Sep 20
1
degrading performance
...re's the weird part. I only got the good speed with ocfs2 on
the first write. If I deleted all the files on that partition, then
extracted the tar file again, the time went up to 8 minutes. I deleted
them all again, then unmounted and fsck'ed the partition, then mounted
and extracted the tarfile for the third time, and it took 19 minutes.
hope this may help a little.
2010 Oct 04
2
For help on Open .tar.gz file in R under Windows
Hey All,
I am new in R. Need help on code that can open the .tar.gz file in R under
Windows. Can any one help.
Thanks in Advance.
Wayne
[[alternative HTML version deleted]]
1997 Aug 13
0
Incomplete backups with tar option of smbclient.
We use the tar option of smbclient (Samba 1.9.16p9, SunOS 4.1.3) to
backup Windows 95 PCs:
smbclient "\\${server}\backup" -U COMPUTING -d 1 -D "\" -Tc tarfile >! logfile
backup is set as a share of c:\
The backups are incomplete (as shown by the logfile and gzip -tf tarfile).
Typically, only very roughly 5700 of 6600 files get copied.
I expect I've got a bad configuration or command line option wrong so
can someone help me? Also, is anyone ge...