Search the web
Sign In
New User? Sign Up
linux · This is a mailing list for Linux
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 51960 - 51989 of 56688   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
51960
I want to create a tar file consists of only *.h, *.cpp, and Makefile when i use this command: # tar cvzf test.tar.gz *.h *.cpp Makefile in the directory that...
Yenny Suryadi
yennys@...
Send Email
Nov 3, 2006
12:15 am
51961
I have a server thats been serving me well for about 2-1/2 years. It's been running Debian Stable, Sendmail, Dovecot for pop3 & imap, SquirrelMail for webmail....
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
5:47 am
51962
... This command will help you find the files you want your tar command to package: find . *.h *.cpp Makefile...
Michael Sullivan
msulli1355
Offline Send Email
Nov 3, 2006
9:10 am
51963
... find -name '*.c' -o -name '*.h' -o -name 'Makefile' | tar -cf archive.tar --files-from - -- Neil Bothwick I yam Popeye o'de Borg. Preparez ta be...
Neil Bothwick
wirenetuk
Offline Send Email
Nov 3, 2006
10:03 am
51964
... Hash: SHA1 On Thu, 02 Nov 2006 17:02:46 +0700, Yenny Suryadi <yennys@...> ... $ tar -czf projects.tar.gz Project[1-4]/{*.{cpp,h},Makefile} You need...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
10:38 am
51965
... Hash: SHA1 ... Yes, check the mail log. If there is nothing there, check the web server log, and the error logs in particular. - -- Michael Kjörling,...
Michael Kjorling
sm0yby
Offline Send Email
Nov 3, 2006
11:23 am
51966
... That will pick up Project1/src.c but not Project1/dir1/src.c -- Neil Bothwick Did you know that eskimos have 17 different words for linguist? [Non-text...
Neil Bothwick
wirenetuk
Offline Send Email
Nov 3, 2006
11:35 am
51967
... Hash: SHA1 On Fri, 3 Nov 2006 11:32:23 +0000, Neil Bothwick <neil@...> ... There is no Project1/dir1/src.c according to the OP's postulate. The ...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
11:50 am
51968
... <snip> How 'bout just using tar's --recursion option? -- -jdr-...
Jim Reimer
jdreimer
Offline Send Email
Nov 3, 2006
12:38 pm
51969
... All the OP said was "2. All of the project 1 till 4 have *.h, *.cpp and Makefile in it". He did not specify whether or not there were sub-directories....
Neil Bothwick
wirenetuk
Offline Send Email
Nov 3, 2006
1:09 pm
51970
... Hash: SHA1 On Fri, 3 Nov 2006 12:04:35 +0000, Neil Bothwick <neil@...> ... Precisely. People trying to help shouldn't have to make assumptions....
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
1:18 pm
51971
... That's an assumption. Nothing was specified either way, you assumed that the lack of mention of sub-directories meant that none existed. The reason I...
Neil Bothwick
wirenetuk
Offline Send Email
Nov 3, 2006
4:31 pm
51972
... Doesn't that just recurse into whatever is specified on the command line? By that time, the glob patterns have already been expanded by the shell anyway....
Neil Bothwick
wirenetuk
Offline Send Email
Nov 3, 2006
4:38 pm
51973
On Fri, 3 Nov 2006 11:12:46 +0000 ... I've been so frustrated that I didn't even think of looking at the web logs. One of the puzzling things is that the mail...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
4:52 pm
51974
... Hash: SHA1 On Fri, 3 Nov 2006 08:51:37 -0800, Raquel <raquel@...> ... If mail logs aren't being written then it's fairly safe to assume that ...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
5:09 pm
51975
On Fri, 3 Nov 2006 08:51:37 -0800 ... I watched syslog while trying to send email via SquirrelMail and saw: Nov 3 09:29:36 missy sendmail[20847]: NOQUEUE:...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
5:46 pm
51976
On Fri, 3 Nov 2006 18:04:17 +0100 ... Safe mode is set "Off". Because of the previous email I sent, I think that it may be a permissions problem. Looking...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
5:57 pm
51977
... Did you check to make sure that your system logger is running?...
Michael Sullivan
msulli1355
Offline Send Email
Nov 3, 2006
6:12 pm
51978
... Hash: SHA1 On Fri, 3 Nov 2006 09:37:32 -0800, Raquel <raquel@...> ... What are the permissions on your sendmail binary? On my Linux system I ...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
6:12 pm
51979
... Is whatever user your webserver uses (probably apache unless you're using suphp) in the smmsp group?...
Michael Sullivan
msulli1355
Offline Send Email
Nov 3, 2006
6:21 pm
51980
On Fri, 3 Nov 2006 19:03:07 +0100 ... On the machine in question, it's: lrwxrwxrwx 1 root root 26 Nov 1 18:19 sendmail -- Raquel ...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
6:32 pm
51981
On Fri, 03 Nov 2006 11:49:09 -0600 ... Apache running as www-data on Debian. Let me check that out on my other machines (not servers but also running Debian...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
6:36 pm
51982
On Fri, 3 Nov 2006 10:29:50 -0800 ... Three other machines running Debian Stable have the same permissions. One of those machines is where I do development...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
6:58 pm
51983
... Hash: SHA1 On Fri, 3 Nov 2006 10:29:50 -0800, Raquel <raquel@...> ... That's not the binary. Note the "l" in the first column indicating that ...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
7:19 pm
51984
... Ok, Apologies for the late reply. Well, it looks like jabber is working, and here is how I did it (just for documentation). [I wrote it as a debug to send...
Ajay Gautam
ajaygautam
Online Now Send Email
Nov 3, 2006
7:49 pm
51985
On Fri, 3 Nov 2006 20:10:56 +0100 ... Aha! Smart man! -rwxr-sr-x 1 root dovecot 706732 Aug 29 16:18 sendmail This makes sense regarding the error I'm being...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
8:12 pm
51986
... Hash: SHA1 On Fri, 3 Nov 2006 11:29:10 -0800, Raquel <raquel@...> ... It definitely is. You need to change dovecot's GID to smmsp and chgrp...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
8:31 pm
51987
... Hash: SHA1 On Fri, 3 Nov 2006 21:25:12 +0100, Godwin Stewart ... Sorry, my mistake. Theoretically, all you have to to is chgrp the sendmail binary back to ...
Godwin Stewart
grschinon
Offline Send Email
Nov 3, 2006
8:47 pm
51988
On Fri, 3 Nov 2006 21:42:55 +0100 ... If I'm understanding correctly, that should solve my mail log problem too because it is set with the same group...
Raquel
RaquelRice
Offline Send Email
Nov 3, 2006
9:01 pm
51989
... Hash: SHA1 ... That's not the binary, that's a symbolic link. Find where it points to and find the permissions of that file. By the way, please also trim...
Michael Kjorling
sm0yby
Offline Send Email
Nov 3, 2006
9:08 pm
Messages 51960 - 51989 of 56688   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help