On Sat, Nov 03, 2001 at 10:51:35AM +0530, Rahul Torvi wrote:
> Hi all,
> I was trying to patch the kernel to use the journalling filesystem ext3  in
> 2.4.13 but when i invoke the command
> "unzip < ext3-2.4-0.9.13-2413.gz | patch p1" I get an error "only garbage
> was found in the patch input"
> 
> can any one help me in solving the problem
> 
---end quoted text---

A .gz file cannot be processed by unzip. It needs gunzip or
gzip -d or zcat. "unzip" is for .zip files NOT .gz files.

Try "zcat ext3-x.x.gz | patch p1" or
    "gunzip ext3-x.x.gz | patch p1"

Bish.

--
:
####[ Linux One Stanza Tip (LOST) ]###########################

Sub : Background dialing in wvdial                   LOST #122

To make wvdial dial in the background, and keep terminal free
#wvdial [dialer] > wvdial.log 2>&1 &
To disconnect, put these lines in a script to be run as root:
killall -INT pppd 2>/dev/null
killall -INT wvdial 2>/dev/null
 
####<[EMAIL PROTECTED]>####################################
:

_______________________________________________
linux-india-help mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/linux-india-help

Reply via email to