clacker
Group: Members
Posts: 570
Joined: June 2004 |
|
Posted: Jan. 16 2006,22:58 |
|
paku, do you have the patch command on your system? You might have to load the dsl-dpkg.dsl extension from the repository and then run the following in an xterminal:
sudo apt-get update sudo apt-get install patch
My guess is that you'll need libncurses5-dev as well:
sudo apt-get install libncurses5-dev
I was creating a /usr/src directory and placing both the patch and the linux kernel source in there:
sudo mkdir /usr/src sudo chown dsl /usr/src chgrp /staff /usr/src cd /usr/src ### copy and untar the files here###
now apply the patch from the /usr/src using:
patch -p1 -d linux-2.4.31 < knoppix.patch
|