Displaying 20 results from an estimated 46 matches for "czf".
Did you mean:
cz
2010 Aug 12
2
tar - ssh - standard out
...shift this data over ssh to a remote box without
ever writing anything locally. I have been experimenting with tar to
create the archive as the i dont know what the contents of 'some data'
might be so i just need to capture it and output it on the other side.
I have been trying with
$ tar czf - . | ssh -q 192.168.122.2 "tar xzf -"
and this works fine to create an archive of this '.' directory and
pipe that over to the other side but i want to take standard out
so....
$ tar czf - `the thing that generates standard out here` | ssh -q
192.168.122.2 "tar xzf -"...
2015 Sep 26
6
Hidden files problem in R CMD check
...Great!
> |
> | I have googled COPYFILE_DISABLE and found the following site which does
> | explain the issue with tar on Mac OS X, see:
> | http://unix.stackexchange.com/questions/9665/create-tar-archive-of-a-directory-except-for-hidden-files
> |
> | Instead of doing:
> | $tar czf xps_1.29.2.tar.gz xps
> |
> | I did now:
> | $COPYFILE_DISABLE=1 tar czf xps_1.29.2.tar.gz xps
> |
> | Running:
> | $R CMD check xps_1.29.2.tar.gz
> | now leaves only '.BBSoptions' as hidden file.
>
> No, still wrong. As Simon said, we all are supposed to use '...
2015 Sep 26
2
Hidden files problem in R CMD check
...much for your help, it did solve my problems!! Great!
I have googled COPYFILE_DISABLE and found the following site which does
explain the issue with tar on Mac OS X, see:
http://unix.stackexchange.com/questions/9665/create-tar-archive-of-a-directory-except-for-hidden-files
Instead of doing:
$tar czf xps_1.29.2.tar.gz xps
I did now:
$COPYFILE_DISABLE=1 tar czf xps_1.29.2.tar.gz xps
Running:
$R CMD check xps_1.29.2.tar.gz
now leaves only '.BBSoptions' as hidden file.
However, I must admit that I do not understand it.
Since more than ten years I am running the 'tar' command...
2002 Mar 10
1
Hungarian codepage problem using smbmount
....monthly
# biztonsagi mentesek
# min hour dom mon dow user command
# Laci-1700 gep mentese
00 13 * * * root /usr/bin/smbmount //LACI-1700/sapientia2002 /mnt/winmentes1/aktual -o credentials=/etc/samba/passwd ip=192.168.0.93 iocharset=ISO8859-2 codepage=852
01 13 * * * root /bin/tar -czf /mnt/winmentes2/Laci/Laci.tgz /mnt/winmentes1/aktual
59 13 * * * root /usr/bin/smbumount /mnt/winmentes1/aktual
# Tibor-1700 gep mentese
00 14 * * * root /usr/bin/smbmount //TIBOR-1700/UJSAG /mnt/winmentes1/aktuat -o credentials=/etc/samba/passwd ip=192.168.0.94 iocharset=ISO8859-2 codepag...
2009 Nov 19
2
rsync of STDIN to a file.
Hi,
I am hoping that rsync may be able to improve an existing network backup I've got:
tar czf - --files-from $FILE_LIST | ssh -i $AUTH -l $USER $HOST "cat > ${DEST}/${SOURCE}_${FILE}.tgz"
You can see that this backup uses tar to create a single compressed archive and store it on a remote host using ssh. It occurred to me that it might be possible to use rsync. I'm hoping r...
2007 May 29
8
Building XEN with different config PROBLEM
Hello.
Up to version 3.0.4, I did the following to get two xen kernels (dom0 and
domU) with my own config:
wget http://www.cl.cam.ac.uk/Research/SRG/netos/xen/downloads/...
make xen
make tools
make docs
make linux-2.6-xen0-config CONFIGMODE=menuconfig
make linux-2.6-xen0-build
make linux-2.6-xen0-install
make linux-2.6-xen0-dist
make linux-2.6-xenU-config CONFIGMODE=menuconfig
make
2016 Dec 12
2
[PATCH] v2v: tests: avoid '..' in member names for tar
...rmats.ovf disk1.vmdk disk1.mf
;;
zip)
- zip -r test ../test-v2v-i-ova-formats.ovf disk1.vmdk disk1.mf
+ zip -r test test-v2v-i-ova-formats.ovf disk1.vmdk disk1.mf
mv test.zip test-$format.ova
;;
tar-gz)
- tar -czf test-$format.ova ../test-v2v-i-ova-formats.ovf disk1.vmdk disk1.mf
+ tar -czf test-$format.ova test-v2v-i-ova-formats.ovf disk1.vmdk disk1.mf
;;
tar-xz)
- tar -cJf test-$format.ova ../test-v2v-i-ova-formats.ovf disk1.vmdk disk1.mf
+ tar -cJf te...
2015 Sep 26
0
Hidden files problem in R CMD check
...help, it did solve my problems!! Great!
|
| I have googled COPYFILE_DISABLE and found the following site which does
| explain the issue with tar on Mac OS X, see:
| http://unix.stackexchange.com/questions/9665/create-tar-archive-of-a-directory-except-for-hidden-files
|
| Instead of doing:
| $tar czf xps_1.29.2.tar.gz xps
|
| I did now:
| $COPYFILE_DISABLE=1 tar czf xps_1.29.2.tar.gz xps
|
| Running:
| $R CMD check xps_1.29.2.tar.gz
| now leaves only '.BBSoptions' as hidden file.
No, still wrong. As Simon said, we all are supposed to use 'R CMD build xps'
to create the tarbal...
2015 Sep 27
0
Hidden files problem in R CMD check
...| I have googled COPYFILE_DISABLE and found the following site which does
>> | explain the issue with tar on Mac OS X, see:
>> | http://unix.stackexchange.com/questions/9665/create-tar-archive-of-a-directory-except-for-hidden-files
>> |
>> | Instead of doing:
>> | $tar czf xps_1.29.2.tar.gz xps
>> |
>> | I did now:
>> | $COPYFILE_DISABLE=1 tar czf xps_1.29.2.tar.gz xps
>> |
>> | Running:
>> | $R CMD check xps_1.29.2.tar.gz
>> | now leaves only '.BBSoptions' as hidden file.
>>
>> No, still wrong. As Simon...
2015 Sep 27
0
Hidden files problem in R CMD check
...| I have googled COPYFILE_DISABLE and found the following site which does
>> | explain the issue with tar on Mac OS X, see:
>> | http://unix.stackexchange.com/questions/9665/create-tar-archive-of-a-directory-except-for-hidden-files
>> |
>> | Instead of doing:
>> | $tar czf xps_1.29.2.tar.gz xps
>> |
>> | I did now:
>> | $COPYFILE_DISABLE=1 tar czf xps_1.29.2.tar.gz xps
>> |
>> | Running:
>> | $R CMD check xps_1.29.2.tar.gz
>> | now leaves only '.BBSoptions' as hidden file.
>>
>> No, still wrong. As Simon...
2009 May 25
4
Can I copy my .wine??
I tried doing scp between two machines on my LAN. It whizzed
along at great speed for a long time, mostly displaying messages over and
over saying either something about permission (denied, I presume), or
else about too many levels of symlinks.
What I use it for is GPS/map software -- legacy proprietary stuff
from Garmin and Maptech, to which I have added a lot of personal data
collected
2015 Jan 11
1
Thoughts on samba backup script for DCs
Hello,
possibly the author of the samba backup script will read this.
I customized the script myself due to some things:
1. At the end the script looks for samba4_* files to rotate the backups. But only backups of the private folder get this prefix with the original script. sysvol and etc backups will remain.
2. The wiki of backup and restore advises to restore on the same version of samba the
2015 Apr 01
2
Couldn't set transaction log view (seq 9..13)
Hello,
I'm using 2.2.13 on Debian stable, and I perform regular dsync
backups. Typically if there is an error, dsync can recover from it the
next time it is run, but I've been encountering a new error that doesn't
seem to self-heal:
# /usr/bin/dsync -u gae backup ssh -i /root/.ssh/id_rsa backmaildir at internal.example /usr/bin/dsync -u micah
dsync-remote(micah): Error:
2016 Jun 16
2
Re: libguestfs can't communicate over network while creating VM
Hello Pino,
I am still getting the same error however from libguestfs log (when creating VM) seems that DHCP has been found - no 'DHCP can't be found' or whatever error it was. So there is some progress but the issue persists :-/
This is what I have done
apt-get purge dhcpcd5*
apt-get install isc-dhcp-client
echo isc-dhcp-client >
2015 Jun 01
1
GlusterFS 3.7 - slow/poor performances
...> /proc/sys/vm/drop_caches)
# time (echo 3 > /proc/sys/vm/drop_caches; du -sh linux-4.1-rc5/; echo 3 > /proc/sys/vm/drop_caches)
# time (echo 3 > /proc/sys/vm/drop_caches; find linux-4.1-rc5/|wc -l; echo 3 > /proc/sys/vm/drop_caches)
# time (echo 3 > /proc/sys/vm/drop_caches; tar czf linux-4.1-rc5.tgz linux-4.1-rc5/; echo 3 > /proc/sys/vm/drop_caches)
# time (echo 3 > /proc/sys/vm/drop_caches; rm -rf linux-4.1-rc5.tgz linux-4.1-rc5/; echo 3 > /proc/sys/vm/drop_caches)
And here are the process times:
---------------------------------------------------------------
|...
2008 Jul 16
1
Mails "invisible" (index corrupted?)
Hi,
I got a complaint from a user today, that a few mails "disappeared" from her
Inbox, both when accessing via IMAP with Thunderbird and in the IMAP Webmail
client (RoundCube Webmail, caching deactivated).
Searching (in Subject or From header) within the Inbox turned up the missing
messages though.
After checking all relevant client settings (filter rules etc.), restarting
2016 May 23
0
[PATCH 5/5] mllib: add a new run_command helper
...t run () =
run_command cmd in
let delta_t = timed_run run in
@@ -594,9 +594,9 @@ let main () =
let copy_in (g : Guestfs.guestfs) srcdir destdir =
let desttar = Filename.temp_file ~temp_dir:tmpdir "virt-dib." ".tar.gz" in
- let cmd = sprintf "tar czf %s -C %s --owner=root --group=root ."
- (quote desttar) (quote srcdir) in
- run_command cmd;
+ let cmd = [| "tar"; "czf"; desttar; "-C"; srcdir; "--owner=root";
+ "--group=root"; "." |] in
+ if run_comman...
2023 Mar 04
3
Trying to diagnose incomplete file transfer
...gz.ab now exists on the
local system, has been removed from the remote, but is incomplete.)
Additional notes:
To my knowledge I do not know if the 'gzip' '--rsyncable' option is
being used (but I do not think so--I suspect the file is created using a
command similar to 'tar czf foo.tgz ...').
The rsync commands may be launched from command-line or cron, but use
the same format and options in either case. As a result, there may be
multiple rsync processes pulling files from the same remote path to the
same local path.
I know that when rsync transfers a file (ex.:...
2016 Jul 26
1
how to backup samba ad domain
...to backup*
*backup_files="/etc/samba /var/lib/samba"*
*# Where to backup to*
*dest="/BACKUP"*
*# Create archive filename*
*day=$(date +%Y_%m_%d_%H%M)*
*hostname=$(hostname -s)*
*archive_file="$hostname-$day.tgz"*
*# Backup the files using tar*
*tar --acls --xattrs -czf $dest/$archive_file $backup_files*
*# Start Samba*
*/etc/init.d/samba start*
Anderson Hoffmann do Carmo
MCP | MTA | MCDST | MCTS | MCSA | MS | MOS |
ITIL-F | ISFS | CLOUDF | CI-SCS | VCA-DCV |
2016-07-26 12:01 GMT-03:00 Jules Houantonon <juleshoueto at gmail.com>:
> Hi all,
>
&...
2016 Aug 03
0
[PATCH] dib: rework run of extra-data.d hooks (RHBZ#1362354)
...d g hook scripts
with Not_found -> "" in
- run_hook_host "extra-data.d";
-
let copy_in (g : Guestfs.guestfs) srcdir destdir =
let desttar = Filename.temp_file ~temp_dir:tmpdir "virt-dib." ".tar.gz" in
let cmd = [ "tar"; "czf"; desttar; "-C"; srcdir; "--owner=root";
@@ -608,18 +628,6 @@ let main () =
g#tar_in ~compress:"gzip" desttar destdir;
Sys.remove desttar in
- let copy_preserve_in (g : Guestfs.guestfs) srcdir destdir =
- let desttar = Filename.temp_file ~temp_dir:...