similar to: tar exclude command

Displaying 20 results from an estimated 9000 matches similar to: "tar exclude command"

2010 Dec 06
4
http request, which command is good for testing
Hi all I just know there are curl / lwp-request, lynx and elinks Which command is good for http testing? Thank you
2005 Aug 12
4
Remote archiving with tar over ssh
I am trying to create a one line command that will: 1. Find all files ending in .conf 2. tar these over ssh to a remote server. I have reached this point in my trials. a. I can find the files. b. I can tar them locally. c. I can get a simple fileset tar'ed to a remote server over ssh using tar -zvcf - /some/fileset | ssh host.domain.tld "cat > /backup/tarfile.tar.gz d. I cannot
2009 Jan 27
3
DNS
Hi all I am setting dns and trying to ping my domain the 1st reply is ok and solve the ip address but 2nd line to end, it reponses to my upstream info instead of www.mydomain.com What wrong of my dns? Thank you linux ~ # ping www.mydomain.com PING www.mydomain.com (171.203.20.173) 56(84) bytes of data. 64 bytes from 171203020173.upstream.com (171.203.20.173): icmp_seq=1 ttl=43 time=291 ms 64
2010 Jan 22
3
mail program question
Hi ls postfi same as sendmail / exim ? any mail program better to configure/manage Thank you so much Send instant messages to your online friends http://uk.messenger.yahoo.com
2009 Dec 28
9
mkdir this "." directory
Hi I have this . folder under tmp 1/ How they can make it this folder? 2/ How can I remove it? Thank you Send instant messages to your online friends http://uk.messenger.yahoo.com
2005 Dec 30
2
x window can't start. monitor out of range
Hi all I change the monitor to LG LCD but x window couldn't start because of the "out of range" signal in the monitor How can I fix this problem Thank you
2008 Dec 23
3
network interface
Hi all How can I bring up eth0:2 only "ifconfig eth0:2 up" is not working I have to use service network restart But it restarts all network interfaces that I don't want Thank you Send instant messages to your online friends http://uk.messenger.yahoo.com
2010 Feb 04
2
pls help about changing network card but assign to another ethx
Hi I change eth1 from realtek to dlink but the centos is showing eth2 instead of eth1 In another version of linux, I can change 70-persistent-net.rules but I check /etc/udev/rules.d/70-persistent-net.rules but it doesn't have the file 70-persistent-net.rules please help Thank you Send instant messages to your online friends http://uk.messenger.yahoo.com
2010 Mar 14
2
https question
Hi I have question about https I am using mozila to access gmail as https://mail.google.com/mail Why mozilla prompts me the alert box? "You have requested an encrypted page that contains some unencrypted information. Information that you see or enter on this page could easily be read by a third party." How mozilla knows I have data not encrypted? ls https secured? Thank you Send
2010 Dec 03
4
networking printer
Hi all I would like to ask linux can do the networking printer as window Share it to office environment If yes, any brand name and concern Any documentation also Thank you so much
2010 Mar 25
2
generate certiciate help
Hi I try to use "cd /etc/pki/tls/certs; make sendmail.pem" or cd /usr/share/ssl/certs; make sendmail.pem to make certificate but I don't have this path /usr/share/ssl/ I check I have openssl rpm installed How can I do it? Thank you Send instant messages to your online friends http://uk.messenger.yahoo.com
2010 Feb 05
2
directory and file permission help
Hi I move a zip file from window to linux but all permission of folder and files are kept in 700 How can I change it one time? I don't need to change directory under directory to change as folder as 755 and files as 644 Thank you for your help Send instant messages to your online friends http://uk.messenger.yahoo.com
2010 Apr 30
3
need help: about remove space
Hi all I have big file as below and would like to know how many line eg: wc -l file but can't figure out how to know If I type wc -l file, I only get the 1023 but it includes the space When I use cat file | tr -d "\r \n". it gives me "adrian alice......" I need it as fileB and then wc -l fileB. Thank you so much file ==== adrian alice Patrick file B ======
2007 Sep 26
3
remote tar via ssh
Hi all Can I use ssh to have remote tar files from machine A to machine B? ssh from machine A to machine B tar all files in machine B to exact to machine A Thank you ____________________________________________________________________________________ Got a little couch potato? Check out fun summer activities for kids.
2009 Aug 21
4
tar and gunzip help
HI All, I have a directory tree that when the user un-gzips/untars it does into /opt by default. The directory tree is like: ugui | |-- <misc files> |-- source |-----framework |------ <misc files> so when unzipped I want to end it with /opt/ugui and all the stuff below it. How do I do this? Can I also issue one command that will unzip and untar the archive at the same time?
2008 Nov 09
1
only backup selected files
Hi I have number of selected files to backup and it is also in different folders How can I make it easy? eg: tar zcvf select-file.tar.gz from selected file or tar zcvf select-file.tar.gz (from selected files in file.txt)? Thank you for your help --------------------------------- Now with a new friend-happy design! Try the new Yahoo! Canada Messenger
2010 Aug 12
2
tar - ssh - standard out
Hi I have a process that creates 'some data' and outputs this to standard out and i want to 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
2008 Jul 21
2
copy
I want to copy all the following files/folder/subfolders under /usr/local/apache/htdocs to a remote server within this directory /var/www/html/ Am I correct with this command, or far away offff tar zcvf - /usr/local/apache/htdocs | ssh root at 1.2.3.4 "cat > /var/www/html/htdocs.tar.gz" Thanks -- Your search - madunix - did not match any documents. -------------- next part
2006 Feb 08
3
print formula on plot
I estimate some parameters and I want to print them (pretty) on my plot: # somehow estimated parameters z<-c(1.543523e+00, 1.23453e+00, 3.454000e+00) x<-seq(-1,1,length=100) plot(x,z[3]*x^2+z[2]*x+z[3],type="l", main="My nice plot of the estimated function") zs<-format(z,digits=4,scientific=FALSE,trim=TRUE) text(-0.9,7,expression(1.54*x^2)) # is
2005 Dec 07
1
summary[["r.squared"]] gives strange results
I am simulating an ANOVA model and get a strange behavior from the summary function. To be more specific: please run the following code and see for yourself: the summary()[["r.squared"]] values of two identical models are quite different!! ## 3 x 3 ANOVA of two factors x and z on outcome y s.size <- 300 # the sample size p.z <- c(0.25, 0.5, 0.25) # the probabilities of factor z ##