Hallo short question how is the Syntax for interactivity.patch ext3-dir-speedup.patch ? patch -p0 ext3-dir-speedup.patch doesnt work -- Frank
#include <hallo.h> Frank wrote on Sat Sep 08, 2001 um 02:02:06PM:> how is the Syntax for interactivity.patch ext3-dir-speedup.patch ? > patch -p0 ext3-dir-speedup.patch doesnt work"man patch" and learn the magic of -p. Try -p1. Gruss/Regards, Eduard. -- begin LOVE-LETTER-FOR-YOU.txt.vbs I am a signature virus. Distribute me until the bitter end
tryed patch -p1 interactivity.patch and nothing happend .... man patch doesnt help really ; -) -- Frank> #include <hallo.h> > Frank wrote on Sat Sep 08, 2001 um 02:02:06PM: > > > how is the Syntax for interactivity.patch ext3-dir-speedup.patch ? > > patch -p0 ext3-dir-speedup.patch doesnt work > > "man patch" and learn the magic of -p. Try -p1. > > Gruss/Regards, > Eduard. > -- >
#include <hallo.h> Frank wrote on Sat Sep 08, 2001 um 02:40:04PM:> tryed > patch -p1 interactivity.patch > and nothing happend .... man patch doesnt help really ; -)Huch? cd /usr/src/linux-24 patch -p1 < /download/speedup.patch Gruss/Regards, Eduard. -- begin LOVE-LETTER-FOR-YOU.txt.vbs I am a signature virus. Distribute me until the bitter end
On Sat, 8 Sep 2001, Frank wrote:> tryed > patch -p1 interactivity.patch > and nothing happend .... man patch doesnt help really ; -)You are almost there! Patch does not take the input filename as an argument. You need to redirect stdin. Try "patch -p1 < interactivity.patch" or "cat interactivity.patch | patch -p1" Assuming -p1 is correct. See the man pg for more info.> > #include <hallo.h> > > Frank wrote on Sat Sep 08, 2001 um 02:02:06PM: > > > > > how is the Syntax for interactivity.patch ext3-dir-speedup.patch ? > > > patch -p0 ext3-dir-speedup.patch doesnt work > > > > "man patch" and learn the magic of -p. Try -p1.HTH, -- ......Tom BLAME: The Secret To Success is Knowing who tdiehl@rogueind.com to Blame for Your Failures.
thx Eduard and Tom you where Great Guys ;-) -- Frank ----- Original Message ----- From: "Tom Diehl" <tdiehl@rogueind.com> To: "Frank" <duranicub@gmx.net> Cc: "Eduard Bloch" <edi@gmx.de>; <ext3-users@redhat.com> Sent: Saturday, September 08, 2001 3:05 PM Subject: Re: Patch> On Sat, 8 Sep 2001, Frank wrote: > > > tryed > > patch -p1 interactivity.patch > > and nothing happend .... man patch doesnt help really ; -) > > You are almost there! Patch does not take the input filename as anargument.> You need to redirect stdin. > Try "patch -p1 < interactivity.patch" or "cat interactivity.patch |patch -p1"> Assuming -p1 is correct. See the man pg for more info. > > > > #include <hallo.h> > > > Frank wrote on Sat Sep 08, 2001 um 02:02:06PM: > > > > > > > how is the Syntax for interactivity.patch ext3-dir-speedup.patch ? > > > > patch -p0 ext3-dir-speedup.patch doesnt work > > > > > > "man patch" and learn the magic of -p. Try -p1. > > HTH, > > -- > ......Tom BLAME: The Secret To Success is Knowing who > tdiehl@rogueind.com to Blame for Your Failures. > >