search for: xvzf

Displaying 20 results from an estimated 69 matches for "xvzf".

Did you mean: xvf
2007 Apr 10
4
how to install asterisk on redhat ?
Hi....asterisk users... how to install asterisk on redhat ? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070410/0e647e89/attachment-0001.htm
2013 Aug 02
1
Building klibc on 64-bit Ubuntu
Hi, I am trying to build Klibc on a 64-bit Ubuntu on a x86 machine. Here are the steps I followed: 1. Got the source wget https://launchpad.net/ubuntu/+archive/primary/+files/klibc_2.0.1.orig.tar.gz tar xvzf klibc_2.0.1.orig.tar.gz wget https://launchpad.net/ubuntu/+archive/primary/+files/klibc_2.0.1-3.1ubuntu1.debian.tar.gz tar xvzf klibc_2.0.1-3.1ubuntu1.debian.tar.gz<https://launchpad.net/ubuntu/+archive/primary/+files/klibc_2.0.1-3.1ubuntu1.debian.tar.gz> Applied all the patches from the ab...
2008 Jun 12
1
broken pipe when working on open files (?), MacOS X, 3.0.2/3.0.3pre2
...my laptop hard disk, destination a USB attached external drive. If I stop Firefox for instance all runs smoothly. This is how I built rsync: #!/bin/bash # VERSION=3.0.2 VERSION=3.0.3pre2 DIR="rsync-$VERSION" PATCH="rsync-patches-$VERSION" sudo rm -rf $DIR tar xvzf $DIR.tar.gz tar xvzf $PATCH.tar.gz cd $DIR patch -p1 < patches/fileflags.diff patch -p1 < patches/crtimes.diff ./prepare_source patch -p1 < patches/backup-dir-dels.diff ./configure make sudo make test cd .. This is how I run rsync: sudo /Users/ar/work/rsync/rsync...
2003 Jun 24
3
Patching Festival
I just wanted to try out Festival, but I can't get it patched. I'm thinking that there is something missing from the steps listed at http://www.marko.net/asterisk/archives/0209/0389.html. >>tar xvzf festival-1.4.2-release.tar.gz >>patch -p0 </usr/src/asterisk-ng/festival-1.4.2-diff >> (or wherever the patch is located) When I run the patch command, I get the following: [root@Computer src]# patch -p0 </usr/src/asterisk/festival-1.4.2.diff can't find file to patch at in...
2011 Oct 13
1
Database `default' couldn't be opened
Hello., I configured Xapain in local machine (ubuntu 11.04). The configurations which i did are as follows Xapian Installation - 1) Xapian-core-1.2.7 - tar xvzf xapian-core-1.2.7.tar.gz - cd xapian-core-1.2.7 - ./configure --prefix=/usr/local - make - make install 2) Xapian-binding-1.2.7 - tar xvzf xapian-binding-1.2.7.tar.gz - cd xapian-binding-1.2.7 - ./configure --prefix=/usr/local XAPIAN_CONFIG=/usr/local/bin/xapian-config - make - make install 3) Xa...
2003 Nov 19
1
fritz pci / chan_capi / australia setup
...ctions from stuart hirsts email of Jun 28: -> Thanks for your info but I think I have it working at last. Below are the steps I took which might help others. 1) Download the PCI AVM drivers from ftp://ftp.avm.de/cardware 2) Download the Chan_capi from http://www.junghanns.net/asterisk/ 3) tar -xvzf fcpci-suse8.0-03.09.10.tar.gz which creates a directory called "fritz" 4) edit the file fritz/src.drv/tools.c and put "//" in front of the following lines to exclude them : #include <linux/string.h> #include <linux/vmalloc.h> #include <linux/kernel.h> #include...
2014 Sep 05
3
New to Asterisks, Couple of Questions
...k and I have a couple of questions. 1. After installing asterisk using the following instructions; a. sudo mkdir /usr/src/asterisk &amp;&amp; cd /usr/src/asterisk b. sudo wget http://downloads.asterisk.org/pub/telephony/asterisk/releases/asterisk-1 1.2.1.tar.gz c. sudo tar -xvzf asterisk-11.2.1.tar.gz d. cd ./asterisk-11.2.1 e. sudo make clean f. sudo ./configure g. sudo make h. sudo make install i. sudo make samples j. sudo make config k. sudo service asterisk start The astDB did not automatically initialize. i.e. performing the following commands...
2005 Sep 22
2
production environment
So I''m getting ready to setup a production environment on my boxen (running Fedora Core 3), what are my options? I''ve seen a number of posts about FastCGI, SCGI, etc. and am completely lost as to what I should be setting up on my box (that I hopefully won''t have to touch for a while). I need to run Collaboa, Typo and probably 3 or 4 other apps on this, so
2011 Mar 30
7
XCP XenAPI fencing script (clustering support)
...st tar ball can be downloaded from the following URL:- http://code.google.com/p/fence-xenserver/downloads/list Once extracted a test can be performed as follows (the following will just list all the VM''s and their current state, it will not turn reboot a machine so is safe):- cd /tmp tar xvzf fence-xenserver-0.8.tar.gz cd fence-xenserver-0.8 ./fence_cxs_redhat.py -o list -s http://192.168.1.1/ -l root -p <passwd> That should be enough to test if it is functioning properly. Appreciate any feedback. Thanks, Matt. _______________________________________________ Xen-users mailing...
2011 Dec 16
0
[LLVMdev] LLVM+Clang as a shared library
Hi, I have downloaded version 3.0 of LLVM and Clang and built them as shared libraries (on Windows, Linux and Mac OS X) using the following steps: cd <WHERE-llvm-3.0.tar.gz-IS> tar xvzf llvm-3.0.tar.gz cd llvm-3.0.src/tools tar xvzf ../../clang-3.0.tar.gz mv clang-3.0.src clang cd ../.. mkdir build cd build ../llvm-3.0.src/configure --disable-docs --enable-shared --enable-targets=host make Everything is fine when I test LLVM on its own within my Qt-based application. Howe...
2005 Aug 23
1
Process build properly after applying patchs to 3.0.20
...ave Samba 3.0.20 src installed. I have applied two patches from SVN (9484, 9481). I have run autoconf. Poking around after "configure", I discovered I needed to run "autoheader" as well. This is fine, but I am wondering if I have missed any other steps? My steps... tar -xvzf samba-3.0.20.tar.gz cd samba-3.0.20 <download patches> patch -p2 -i svn_9481.patch patch -p2 -i svn_9484.patch autoconf autoheader ./configure --prefix=/usr/local/samba-3.0.20p1 make .... Should
2008 Oct 09
1
Samba 3.4.2 Installation Issue
> All, > > I'm having difficulty installing samba v3.2.4 on my CentOS 5 box. I've > downloaded the samba-3.2.4.tar.gz file to /usr/tmp (svn gave a timeout > so I decided to download the gz file instead). I ran tar xvzf > samba-3.2.4 to unpack it. Then I followed the directions here: > <http://svnanon.samba.org/samba/docs/man/Samba-HOWTO-Collection/compil > ing.html>, beginning in the Verifying Samba's PGP Signature section. > Everything compiles and runs w/out issue. But when I run smbclient...
2014 Jan 07
2
[LLVMdev] Build/Install of LLVM without root access
...learly. I have a machine on which I have placed the tarballs - but no internet access. How do I use the *src.tar.gz files from the llvm 3.4 downloads page? I understand the layout produced by the svn actions, but if I have just the tarballs, do I simply replace "svn co" with "tar -xvzf" in the sequence? How do the names of the tarballs map to the names of the svn projects? -- Bryan -----Original Message----- From: John Leidel (jleidel) [mailto:jleidel at micron.com] Sent: Tuesday, January 07, 2014 11:51 AM To: Bryan Ewbank Cc: Renato Golin; llvmdev at cs.uiuc.edu Subject...
2000 Dec 29
4
vorbis.com
Form the vorbis.com homepage: "Ogg Vorbis does not compromise quality for freedom. Its stunning quality is coupled with aggressive features like fast bitrate scaling, surround channels, and fast sample-granularity seek and decode." This makes me wonder... -- What is "fast bitrate scaling"? -- I've never seen anything in the source supporting surround channels. -- I
2006 Mar 28
3
compiling php with fcgi on tiger
...d compile it from source and rename the stock OSX ruby and irb to ruby.bak and irb.bak so you don''t end up using them on accident. __________________________________________________ ______________ Get Ruby1.8.2 curl -O http://rubyforge.org/frs/download.php/2338/ruby-1.8.2.tar.gz tar xvzf ruby-* cd ruby-1.8.2 ./configure make make test sudo make install __________________________________________________ ______________ Get Ruby gems curl -O http://rubyforge.org/frs/download.php/3700/rubygems-0.8.10.tgz tar xvzf rubygems* cd rubygems* sudo ruby setup.rb _________________...
2010 Mar 03
3
dahdi and oslec
...echo.o' > /usr/src/dahdi/drivers/staging/echo/Kbuild # cd /usr/src/dahdi # make # make install # cd /usr/src # tar zxvf dahdi-tools-2.1.0.2.tar.gz # cd /usr/src/dahdi-tools-2.1.0.2 # ./configure # make # make install # wget http://www.rowetel.com/ucasterisk/downloads/oslec-0.2.tar.gz # tar xvzf oslec-0.2.tar.gz # cd oslec-0.2 # make # insmod kernel/oslec.ko when i restart /etc/init.d/dahdi service it gives me following error in /var/log/message Mar 3 11:06:37 server1 kernel: echo: exports duplicate symbol oslec_hpf_tx (owned by oslec) Mar 3 11:06:37 server1 modprobe: WARNING: Error in...
2012 Mar 25
3
attempt to access beyond end of device and livelock
Hi Dongyang, Yan, When testing BTRFS with RAID 0 metadata on linux-3.3, we see discard ranges exceeding the end of the block device [1], potentially causing dataloss; when this occurs, filesystem writeback becomes catatonic due to continual resubmission. The reproducer is quite simple [2]. Hope this proves useful... Thanks, Daniel --- [1] attempt to access beyond end of device ram0: rw=129,
2011 Jul 17
1
ODBC MySql DB: sqlQuery empty
.... What am I doing wrong I tried nearly everyting, but nothing seems to work. Thanks, Henri ---1: INSTALL mysqlOdbc libraries $ wget http://dev.mysql.com/get/Downloads/Connector-ODBC/5.1/mysql-connector-odbc-5.1.8-linux-glibc2.3-x86-64bit.tar.gz/from/http://ftp.gwdg.de/pub/misc/mysql/ $ tar xvzf mysql-connector-odbc-5.1.8-linux-glibc2.3-x86-64bit.tar.gz ---2: unixODBC setup $ more ~/.odbc.ini [MySQL-data] Description = MySQL test database Trace = Off TraceFile = stderr Driver = /home/me/opt/mysql-connector-odbc/lib/libmyodbc5.so Setup = /home/me/opt/mysql-connect...
2013 Jun 06
2
memdisk and iso
...are from syslinux-5.10 >> >> Precompiled from kernel.org, your distro or did you happen to run make >> at all? If you ran make, please be precise on what you executed. >> > > wget > https://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-5.10.tar.gz > tar xvzf syslinux-5.10.tar.gz > cd syslinux-5.10 > make installer > make install > Packet capture: http://pastebin.ca/2390779 Thanks, -- upen, emerge -uD life (Upgrade Life with dependencies)
2006 May 20
2
FATAL: Could not open ''System.map''
Hello all, I downloaded the linux-2.6.16.16.tar.bz2 (www.kernel.org) and xen-3.0.2-src.tgz. I tried on Debian: # tar -xvzf xen-3.0.2-src.tgz # tar -xvjf linux-2.6.16.16.tar.bz2 # cd xen-3.0.2-2 # mkbuildtree ../../linux-2.6.16.16 # cd ../../linux-2.6.16.16 # make menuconfig (I made a basic configuration) # make-kpkg --append-to-version=-686-xen --revision=1.0 -us -uc kernel_image However near of the compilation end,...