View previous topic :: View next topic |
Author |
Message |
kleinishere n00b
Joined: 23 Nov 2003 Posts: 37
|
Posted: Sat Sep 11, 2004 3:12 am Post subject: n00b question - Very EASY! pls help! |
|
|
I need to emerge pcmcia-cs for my wireless, but i can't because it is messing up my kernel directory. i manually downloaded 2.6.8.1 and put that in my /usr/src/. its going and looking in /usr/src/linux and i need it to look in /usr/src/linux-2.6.8.1 . is there a line in a file i need to change or something? Thanks in advance for all help! _________________ Pain is weakness leaving the body. |
|
Back to top |
|
|
MrApples Guru
Joined: 13 Dec 2002 Posts: 511
|
Posted: Sat Sep 11, 2004 3:16 am Post subject: |
|
|
Code: | ln -s /usr/src/linux-2.6.8.1 /usr/src/linux |
_________________ http://www.whatsinyourbox.org -- Technology discussion, news, and more. |
|
Back to top |
|
|
zaleth n00b
Joined: 10 Sep 2004 Posts: 4 Location: Sweden
|
Posted: Sat Sep 11, 2004 3:18 am Post subject: |
|
|
no, you just need to make a symlink:
Code: |
cd /usr/src
ln -s linux-2.6.8.1 linux
|
and you're set ... |
|
Back to top |
|
|
kleinishere n00b
Joined: 23 Nov 2003 Posts: 37
|
Posted: Sat Sep 11, 2004 3:58 am Post subject: |
|
|
thanks a lot, both were helpful, it works! _________________ Pain is weakness leaving the body. |
|
Back to top |
|
|
|