Red Octane Xplorer guitar...trying to install

Questions about applications and software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
garda

Re: Red Octane Xplorer guitar...trying to install

Post by garda »

make modules -C /usr/src/linux-headers-2.6.22.14-generic SUBDIRS=/root
make: *** /usr/src/linux-headers-2.6.22.14-generic: No such file or directory. Stop.
The makefile does not work because it has a reference (or references) to /usr/src/linux-headers-2.6.22.14-generic directory, which definitely is not present in your installation. Try to replace all references to the aforementioned directory with the one you have on your system. Enter this code in the Terminal to see what you do have:

Code: Select all

ls /usr/src/linux-headers-*
This is actually just a blind shot attempt, so please keep that in mind.
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
garda

Re: Red Octane Xplorer guitar...trying to install

Post by garda »

cliff@cliff-desktop ~ $ sudo apt-get install linux-headers-'uname -r' build-essential
[sudo] password for cliff:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Couldn't find package linux-headers-uname -r

Any Idea why I would get this? (the green text)
You got that error message because you made a typo. The command should have been:

Code: Select all

sudo apt-get install linux-headers-`uname -r` build-essential
Notice the back ticks (lowercase character of the tilde key) in place of single quotes that enclose uname -r. Anyway, I am glad to know you have managed to get around the obstacles yourself.
Locked

Return to “Software & Applications”