Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Missing Modules After Compiling Kernel Post 303036396 by Azrael on Tuesday 25th of June 2019 01:24:04 AM
Old 06-25-2019
After my first post I tried this guide too. I followed the steps word for word, but the kernel produced was not bootable saying the image was not found.

I did try the 'make modules' command with the steps in the first link I used. That generated a few more modules after booting back in, but not nearly what I need.

I'm not opposed to trying a static kernel, but it seems every link I find is missing steps, outdated or just garbage. If someone could just point me to steps that actually work, that's probably what I need.
 

10 More Discussions You Might Find Interesting

1. SuSE

How do I load kernel modules so BestCrypt will work

I'm using SuSE 9.2 Pro and trying to use a program call BestCrypt. I get it installed and type bctool and it says "Kernel modules not loaded". If you need to know anymore about it you can find it at http://www.jetico.com/linux/bcrypt-help/index.htm linux:/home/chris/Desktop/Xtheater-0.9.2 #... (6 Replies)
Discussion started by: CTroxtell21
6 Replies

2. HP-UX

Information about kernel modules

Hi all, what do kernel modules libaudit, klog and strlog do? Specifically I want to determine if it was possible for us to determine if kernel level auditing is enabled at all? regards (0 Replies)
Discussion started by: slash_blog
0 Replies

3. Solaris

cc not found error in compiling perl modules

:rolleyes:make cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xO3 -xdepend -DVERSION="2.121\" -DXS_VERSION=\"2.121\" -KPIC -I/usr/perl5/5.6.1/lib/sun4-solaris-64int/CORE Dumper.c make: cc: Command not found make: *** Error 127 cc -c -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8... (0 Replies)
Discussion started by: priyophan
0 Replies

4. UNIX for Advanced & Expert Users

Kernel Modules Not geting built

I installed in VM the Mandriva Linux with 2.6.27 kernel. But presently when I fire make the modules .ko does not get built. I get the following output on firing command in the kernel module folder. $ make Building first_driver.c ... make: Entering directory... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

5. Programming

Debugging Linux Kernel Modules

I am aware of debugging linux applications using gdb and ddd. Now I have written a simple kernel module having init_module, exit _module and some functions for tasklets and workqueues. I want to debug these kernel modules like I used to debug applications setting breakpoints etc. How can I debug... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

6. Emergency UNIX and Linux Support

Linux: passing parameters to kernel modules

Hi, I need to set qlogic qla2xxx parameters in /etc/modprobe.conf (Oracle Linux Server release 5.7, almost equal to RedHat 5.7) two questions: how can I pass this parameters to the module while it is loaded (fibre channel luns are in use), if possible at all and how can I check the... (3 Replies)
Discussion started by: funksen
3 Replies

7. Web Development

<Apache>error when compiling CPP modules

Hi, I am working on Linux Platform. I am just trying to port a CPP module to apache as a module. When I try to build the Apache , it throws an error as follows libtool: unrecognized option `-DLINUX=2' Later I did some search and changed the config_vars.mk file under the "build" directory of... (0 Replies)
Discussion started by: ashabb
0 Replies

8. UNIX for Dummies Questions & Answers

Linux kernel modules makefiles doubts

This query is regarding the makefiles of linux kernel modules. I saw at some sites on net it is suggesting to include the following path: KERNEL_SOURCE := /usr/src/linux... while at some places it is askibg to include /lib/modules path: KERNEL_SOURCE := /lib/modules/2.6.27-7-generic/build... (0 Replies)
Discussion started by: rupeshkp728
0 Replies

9. Hardware

Linux Kernel Modules

Hey everyone. I have a question, doing an lsmod gives me a list of all the loaded modules for my system. But how did they know to load? my /etc/modules files is empty, so how did these modules know to load themselves on boot time? If I were to take this hard drive to another computer with a... (6 Replies)
Discussion started by: Lost in Cyberia
6 Replies

10. Linux

Disable loading kernel modules

Hi, I am running CentOS 6.5 and I want to remove auto loading 8021q and garp modules, but there are no configure files in /etc/modprobe.d define bot modules. I even added both module names to /etc/modprobe.d/blacklist.conf, both of them are still loaded after the reboot. How can I disable... (2 Replies)
Discussion started by: hce
2 Replies
Jifty::Manual::RequestHandling(3pm)			User Contributed Perl Documentation		       Jifty::Manual::RequestHandling(3pm)

NAME
Jifty::Manual::RequestHandling - Jifty's request handling process DESCRIPTION
This document outlines some of Jifty's inside in order to help you to understand what happens during the request processing phase. THE HANDLER
As soon as a HTTP request (whatever the method might be, like GET, POST, PUT, ...) arrives at Jifty's border, the request is forwarded to a handler. By default, "Jifty->handler" points to a Jifty::Handler object that is responsible for handling an incoming request. The handler receives a CGI object on which it operates. The major steps in the request handling process are: refresh eventually modified modules in develop mode This allows a perl developer to change perl modules being used in a Jifty application without the need to restart the server which would otherwise become necessary. This is never done on a live environment. build a stash The stash is a storage area that can be reached by simply accessing "Jifty->handler->stash->{some_key}". The stash will start fresh with every request and lives for the entire lifetime of a request. Using the stash, transporting data between otherwise unconnected modules will become possible. construct a request and response object Using the CGI object, a Jifty::Request object is constructed and its data is populated with the CGI object's data. The request can be reached later using "Jifty->web->request". The request holds information about all actions involved, all page fragments, contains state variables and arguments (usually GET/POST parameters). Also, an empty Jifty::Response object is constructed that contains one or more Jifty::Result objects, each of which holds one Jifty::Action's result. The response object can be retrieved with the "Jifty->web->response" method. setup plugins For every registered Jifty::Plugin, some kind of per-request initialization is performed allowing the actions provided by each plugin to run. handle static content If the requested URI points to some existing static content being housed in a "static" directory, this content is handled. setup the session Based on a cookie that is sent with every HTTP response, the current user is assigned a unique session. The session is stored in a Jifty::Web::Session object and can be accessed using the "Jifty->web->session" method. return from a continuation if requested If there is an open continuation on the stack (e.g. from a "Jifty->web->tangent" link) and the return has been requested (e.g. by a "Jifty->web->return" link), the return will execute at this stage. handle dynamic request unless already served First, the user is given a cookie containing the session-id. Then, the request is forwarded to "Jifty->handler->dispatcher", a Jifty::Dispatcher object to handle the request. The dispatcher works through the following steps: setup In this stage, all rules in the dispatcher that are marked with the word "before" are run. run the actions involved Every Jifty::Action that is registered in a form or involved in a link or button is run in this stage. run dispatching rules This stage is responsible for working through all rules marked by words like "under", "on", "when" and so on. This is a point where based on the URI or parameters the template to get displayed may still be modified, data get retrieved, additional actions run or the template's parameters get adjusted. show the page Here, the template displaying the page is run. cleanup This final stage of the dispatcher will run all rules marked with the word "after". cleanup several things Finally, the eventually modified session-record is flushed and some internally allocated structures get deallocated. SEE ALSO
Jifty::Handler, Jifty::Dispatcher, Jifty::Request, Jifty::Response perl v5.14.2 2010-12-08 Jifty::Manual::RequestHandling(3pm)
All times are GMT -4. The time now is 04:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy