Displaying 20 results from an estimated 142 matches for "xzf".
Did you mean:
x0f
2006 Dec 07
9
Exec as another user
I''m running puppetd as root and I''m trying to execute tar as the
"puppetd" user
59 define untar ( $source, $dest, $creates, $user = "puppetd" ) {
60 exec { "tar -xzf $source" :
61 cwd => $dest,
62 path => "/bin:/usr/bin",
63 user => $user,
64 creates => $creates,
65 require => [ file[$source], file[$dest] ],
66 alias => "untar-$name"
67...
2010 Aug 12
2
tar - ssh - standard out
...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 -"
Would that work or is there a better wa...
2013 Jul 07
1
[LLVMdev] trying to compile llvm+clang on CentOS 5
...have llvm and clang on a centOS 5 without root permissions.
I tried to do it downloading llvm and clang src packages and trying the
ususal configure, make and make install steps as such:
wget http://llvm.org/releases/3.3/llvm-3.3.src.tar.gz
wget http://llvm.org/releases/3.3/cfe-3.3.src.tar.gz
tar xzf llvm-3.3.src.tar.gz && cd llvm-3.3.src/tools/ && tar xzf
../../cfe-3.3.src.tar.gz
I tried with a newer version of gcc compiled for this 64bit CentOS system,
because the older version wouldn't work (see below). When I try it with the
newer version, I get this:
export LD_LIBRARY...
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
2010 Feb 09
1
Flashing SLOF on IBM JS20 (Thamesblue supercomputer)
...ewer or
identical image
Projected Flash Update Results:
Current T Image: 2b606_470
Current P Image: 2b405_131
New T Image: 2b608_401
New P Image: 2b405_131
Flash image ready...rebooting the system* ...
I used the following procedure to compile the slof-JX-1.4.0-0 on IBM JS20
blade
$ tar xzf slof-JX-1.4.0-0.tar.gz
$ tar xzf slof-JX-1.4.0-0-oco-gcc412.tar.gz
$ cd slof-JX-1.4.0-0-oco-gcc412
$ chmod 777 install-oco.sh
$ $ ./install-oco.sh ../slof-JX-1.4.0-0
$ cd ../slof-JX-1.4.0-0
$ export CROSS="" # native compiler
c06b11:/home/ah/firmware/slof-JX-1.4.0-0 # make -s
********...
2010 Feb 09
1
Flashing SLOF on IBM JS20 (Thamesblue supercomputer)
...ewer or
identical image
Projected Flash Update Results:
Current T Image: 2b606_470
Current P Image: 2b405_131
New T Image: 2b608_401
New P Image: 2b405_131
Flash image ready...rebooting the system* ...
I used the following procedure to compile the slof-JX-1.4.0-0 on IBM JS20
blade
$ tar xzf slof-JX-1.4.0-0.tar.gz
$ tar xzf slof-JX-1.4.0-0-oco-gcc412.tar.gz
$ cd slof-JX-1.4.0-0-oco-gcc412
$ chmod 777 install-oco.sh
$ $ ./install-oco.sh ../slof-JX-1.4.0-0
$ cd ../slof-JX-1.4.0-0
$ export CROSS="" # native compiler
c06b11:/home/ah/firmware/slof-JX-1.4.0-0 # make -s
********...
2007 Jan 25
4
Conditional exec
...'t
change and does not need to be download and extracted if it changes.
The definition I am using now is:
define remote_tar($source, $directory) {
remotefile { "/tmp/$name.tgz":
source => $source,
}
exec { "tar-$name":
command => "tar -xzf /tmp/$name.tgz",
directory => $directory,
creates => "$directory/$name",
require => File["/tmp/$name.tgz"],
}
}
The problem is that this keeps downloading the /tmp/foo.tgz file.
Also, remotefile sucks at downloading large files. One po...
2006 Apr 27
6
Installation oddity on Fedora Core 5 (PR#8814)
...ntly installed FC 5 linux and installed R from source. It installed
fine, but there was an oddity that I want to report. Although I used
./configure --prefix=/usr/local/R-2.3.0
make
it did not seem to recognize the prefix and went ahead and installed it in
the source directory -- I usually ``tar xzf'' it to my home directory
and run the installation scripts from there (as root) to install to
/usr/local/R-2.3.0
This procedure worked fine on earlier versions of Fedora as well as on
debian and other distros. Wonder if this is a gcc-4.1 or GNU make issue.
Any feedback will be much appre...
2016 Dec 04
2
RES: RES: v2.2.27 released
...first thing you ran was configure, right? No autogen.sh or autoconf/automake?
-bash-4.1# cat /etc/redhat-release
CentOS release 6.8 (Final)
-bash-4.1# uname -a
Linux test-centos6.dovecot.net 2.6.32-642.6.1.el6.x86_64 #1 SMP Wed Oct 5 00:36:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
-bash-4.1# tar xzf dovecot-2.2.27.tar.gz
-bash-4.1# cd dovecot-2.2.27
-bash-4.1# ./configure --with-ldap=yes --with-zlib --with-bzlib --with-solr > foo
-bash-4.1# grep 102 foo
-bash-4.1#
> On 4 Dec 2016, at 1.38, Ricardo Machini <ricardomachini at gmail.com> wrote:
>
> From tarball distribution:...
2007 Sep 28
3
[LLVMdev] Bugs in Getting Started Guide
...time the new user is, ahem, 'new', so he can't see the
implications of such a decision.
Maybe a cook-book-receive would be more helpful. Don't present
options to the user, but give him a 'quick' result to work with.
$ wget http://this-file
$ wget http://that-file
$ tar xzf this-file
$ cd blah
$ tar xjf ../that-file
$ cd ..
$ ./configure --prefix=`pwd`/dist --some-more-options
$ make
$ PATH=dist/bin:$PATH
$ # now you can use llvm-gcc etc
Do you want me to work out such a thing?
2014 Mar 27
1
arm64 support
I am trying to generate the config and makefiles using ./autogen.sh on the
mac but get the following error:
Can't exec "aclocal": No such file or directory at
/usr/local/share/autoconf/Autom4te/FileUtils.pm line 326.
autoreconf: failed to run aclocal: No such file or directory
How do I build opus from source? Am I missing some step?
On Thu, Mar 27, 2014 at 11:29 AM, Vinay Nair
2006 Sep 12
4
2.6.9-42.ELsmp kernel and 3ware 9550 tools
I have the latest kernel with the drivers for my 3ware 9550SX built in.
Where
can I find the tools and monitoring apps for this card? Are there rpms
hiding
somewhere, or do I need to build it from source?
--
Bowie
2008 Nov 20
0
Re: Unable to open a connection to the Xen hypervisor/daemon (installation XEN3.3.0 on CentOS5.2 x86_32 - RESOLVED)
...tep:
- [CAUTION] : When installing CentOS do not install Xen or remove previous
Xen.
INSTALLATION EXTENSIONS
- yum install mercurial
- download the latest git (git-1.6.0.tar.gz), otherwise "make world" would
fail
wget http://www.kernel.org/pub/software/scm/git/git-1.6.0.1.tar.gz
tar xzf git-1.6.0.1.tar.gz
cd git-1.6.0.1
make && sudo make install
INSTALLATION HYPERVISOR, TOOLS and KERNEL-XEN
- su (change to root mode)
- cd /usr/src
- There are 2 alternatives for downloading the Xen 3.3 (it''s up to you which
do you choose the 1st or the the 2nd)
1. /usr/bin/...
2005 Nov 28
1
No Rmath.h when making just standalone library
When making only the standalone math library, include/Rmath.h
is not there, so compilation fails. A solution is to go to
src/include/ and just say `make Rmath.h' there first.
This is with R-2.2.0 on GNU/Linux on i686. The failing steps
are:
tar xzf ../R-2.2.0.tar.gz
./configure
cd src/nmath/standalone
make
Would be nice if this worked, or if the issue were just
mentioned in src/nmath/standalone/README.
2017 Jan 31
3
Unexpected EOF in R-patched_2017-01-30
...both those in src/base-prerelease and those from ETHZ. Also, is it not "tar -xfz" when reading a compressed file?
>
> -pd
>From <https://stat.ethz.ch/R/daily/>
Also, while passing z is not in the instructions given in Installation
and Administration [1], I tried passing -xzf and it did not work. I
believe f has to be last if the file name follows immediately.
[1] <https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Getting-the-source-files>
Thanks,
Avi
>> I get the following error:
>>
>> C:\R>tar -xf R-patched_2017-01-30.tar.gz...
2013 Sep 13
1
glusterfs-3.4.1qa2 released
RPM: http://bits.gluster.org/pub/gluster/glusterfs/3.4.1qa2/
SRC: http://bits.gluster.org/pub/gluster/glusterfs/src/glusterfs-3.4.1qa2.tar.gz
This release is made off jenkins-release-42
-- Gluster Build System
2016 Dec 04
0
RES: RES: RES: v2.2.27 released
This happens on configure, I only ran ./configure.
This error is logged to stderr:
[root at host1 dovecot]# wget https://dovecot.org/releases/2.2/dovecot-2.2.27.tar.gz
[root at host1 dovecot]# tar xzf dovecot-2.2.27.tar.gz
[root at host1 dovecot]# cd dovecot-2.2.27
[root at host1 dovecot-2.2.27]# ./configure --with-ldap=yes --with-zlib --with-bzlib --with-solr > foo
configure: error: conditional "SSL_VERSION_GE_102" was never defined.
Usually this means the macro was only invoked co...
2015 Sep 29
2
Build R with MKL and ICC
On Wed, Sep 9, 2015 at 11:26 PM, Nathan Kurz <nate at verse.com> wrote:
>
> As a short and simple approach, I just compiled the current R release
> on Ubuntu with ICC and MKL using just this:
>
> $ tar -xzf R-3.2.2.tar.gz
> $ cd R-3.2.2
> $ CC=icc CXX=icpc AR=xiar LD=xild CFLAGS="-g -O3 -xHost" CXXFLAGS="-g
> -O3 -xHost" ./configure --with-blas="-lmkl_rt -lpthread" --with-lapack
> --enable-memory-profiling --enable-R-shlib
> $ make
> $ sudo make install...
2007 Sep 28
0
[LLVMdev] Bugs in Getting Started Guide
...ew', so he can't see the
> implications of such a decision.
>
> Maybe a cook-book-receive would be more helpful. Don't present
> options to the user, but give him a 'quick' result to work with.
>
> $ wget http://this-file
> $ wget http://that-file
> $ tar xzf this-file
> $ cd blah
> $ tar xjf ../that-file
> $ cd ..
> $ ./configure --prefix=`pwd`/dist --some-more-options
> $ make
> $ PATH=dist/bin:$PATH
> $ # now you can use llvm-gcc etc
>
> Do you want me to work out such a thing?
Well, I kinda think its important to indicate...
2013 Jan 09
1
samba-tool not working as i'd expect
...word settings
samba3upgrade - Upgrade from Samba classic (NT4-like) database to
Samba AD DC database.
ERROR: No such subcommand 'provision'
####
A little background. Here is how i got to this point:
####
wget http://download.samba.org/samba/ftp/samba4/samba-4.0.0beta8.tar.gz
tar xzf samba-4.0.0beta8.tar.gz
cd samba-4.0.0beta8
cd source4
./configure
make
make install
####
Ta,
--
-Andrew Galdes
Managing Director
RHCSA, LPI, CCENT
AGIX Linux
Ph: 08 7324 4429
Mb: 0422 927 598
Site: http://www.agix.com.au
Twitter: http://twitter.com/agixlinux
LinkedIn: http://au.linked...