linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Reg crash utility installation
@ 2001-07-01 14:37 SATHISH.J
  2001-07-02 22:19 ` Patrick O'Rourke
  2001-07-03  8:52 ` Reg kdb utility SATHISH.J
  0 siblings, 2 replies; 12+ messages in thread
From: SATHISH.J @ 2001-07-01 14:37 UTC (permalink / raw)
  To: linux-kernel

Hi,
I installed crash2.6 on my machine. 
When I give the command "crash" from the prompt it says "no debugging
symbols found in /boot/vmlinux2.2.14-12". Why does this message show.

Thanks in advance,

Regs,
sathish


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg crash utility installation
  2001-07-01 14:37 Reg crash utility installation SATHISH.J
@ 2001-07-02 22:19 ` Patrick O'Rourke
  2001-07-03  8:52 ` Reg kdb utility SATHISH.J
  1 sibling, 0 replies; 12+ messages in thread
From: Patrick O'Rourke @ 2001-07-02 22:19 UTC (permalink / raw)
  To: SATHISH.J; +Cc: linux-kernel

SATHISH.J wrote:

> I installed crash2.6 on my machine. 
> When I give the command "crash" from the prompt it says "no debugging
> symbols found in /boot/vmlinux2.2.14-12". Why does this message show.


crash relies on debug info and so it needs access to an uncompressed
vmlinux file which was built using -g.  The following URL offers more
info:

	http://oss.missioncriticallinux.com/projects/crash/usage.php

Pat

-- 
Patrick O'Rourke
orourke@missioncriticallinux.com


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg kdb utility
  2001-07-01 14:37 Reg crash utility installation SATHISH.J
  2001-07-02 22:19 ` Patrick O'Rourke
@ 2001-07-03  8:52 ` SATHISH.J
  2001-07-03 10:39   ` Balbir Singh
                     ` (2 more replies)
  1 sibling, 3 replies; 12+ messages in thread
From: SATHISH.J @ 2001-07-03  8:52 UTC (permalink / raw)
  To: linux-kernel

Hi,

I tried to use kdb on my 2.2.14-12 kernel. I was able to compile the file 
/usr/src/linux/arch/i386/kdb/modules/kdbm_vm.c and could get the object
file. When I tried to insert it as a module it givesd the following error
message:

./kdbm_vm.o: kernel-module version mismatch
        ./kdbm_vm.o was compiled for kernel version .2.14-12
        while this kernel is version 2.2.14-12.



Please tell me why this message comes.

Thanks in advance,

Regards,
satish.j









^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg kdb utility
  2001-07-03  8:52 ` Reg kdb utility SATHISH.J
@ 2001-07-03 10:39   ` Balbir Singh
  2001-08-02  9:37   ` Reg char device driver on linux SATHISH.J
  2001-08-12 13:35   ` Reg:flow of system call in linux SATHISH.J
  2 siblings, 0 replies; 12+ messages in thread
From: Balbir Singh @ 2001-07-03 10:39 UTC (permalink / raw)
  To: SATHISH.J; +Cc: linux-kernel

You need to compile with the correct  kernel headers using the include
path feature -I <path to new headers>

Balbir



On Tue, 3 Jul 2001, SATHISH.J wrote:

|Hi,
|
|I tried to use kdb on my 2.2.14-12 kernel. I was able to compile the file 
|/usr/src/linux/arch/i386/kdb/modules/kdbm_vm.c and could get the object
|file. When I tried to insert it as a module it givesd the following error
|message:
|
|./kdbm_vm.o: kernel-module version mismatch
|        ./kdbm_vm.o was compiled for kernel version .2.14-12
|        while this kernel is version 2.2.14-12.
|
|
|
|Please tell me why this message comes.
|
|Thanks in advance,
|
|Regards,
|satish.j
|
|
|
|
|
|
|
|
|-
|To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
|the body of a message to majordomo@vger.kernel.org
|More majordomo info at  http://vger.kernel.org/majordomo-info.html
|Please read the FAQ at  http://www.tux.org/lkml/
|


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Reg char device driver on linux
  2001-07-03  8:52 ` Reg kdb utility SATHISH.J
  2001-07-03 10:39   ` Balbir Singh
@ 2001-08-02  9:37   ` SATHISH.J
  2001-08-12 13:35   ` Reg:flow of system call in linux SATHISH.J
  2 siblings, 0 replies; 12+ messages in thread
From: SATHISH.J @ 2001-08-02  9:37 UTC (permalink / raw)
  To: linux-kernel

Hi,
Sorry for bothering you.

I am trying to learn about linux character device drivers. I was going
through videodev.c. Can someone tell me which all are the devices that
come under video devices and also the ".c" files. Can someone tell me
which driver is the simplest under /usr/src/linux/drivers/char so that I,
as a beginner can understand the driver concept better.

Thanks in advance,
Warm regards,
sathish.j



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Reg:flow of system call in linux
  2001-07-03  8:52 ` Reg kdb utility SATHISH.J
  2001-07-03 10:39   ` Balbir Singh
  2001-08-02  9:37   ` Reg char device driver on linux SATHISH.J
@ 2001-08-12 13:35   ` SATHISH.J
  2001-08-12 14:10     ` Alan Cox
  2001-08-13  5:22     ` Reg System.map file SATHISH.J
  2 siblings, 2 replies; 12+ messages in thread
From: SATHISH.J @ 2001-08-12 13:35 UTC (permalink / raw)
  To: linux-kernel

Hi,
Can someone tell me about the flow of system call for eg. from open
wrapper routine to sys_open() function or atleast please suggest me a
book/website
where I can get this info.

Thanks in advance,
sathish.j



^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg:flow of system call in linux
  2001-08-12 13:35   ` Reg:flow of system call in linux SATHISH.J
@ 2001-08-12 14:10     ` Alan Cox
  2001-08-13  5:22     ` Reg System.map file SATHISH.J
  1 sibling, 0 replies; 12+ messages in thread
From: Alan Cox @ 2001-08-12 14:10 UTC (permalink / raw)
  To: SATHISH.J; +Cc: linux-kernel

> Can someone tell me about the flow of system call for eg. from open
> wrapper routine to sys_open() function or atleast please suggest me a
> book/website
> where I can get this info.

Userspace open() calls into glibc code
glibc does architecture dependant magic to make a syscall
The kernel syscall code does architecture dependant magic 
The kernel calls sys_open


In the x86 case the magic is basically

Load arguments into the right registers
int 0x80

then the kernel code in arch/i386/kernel/entry.S


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg System.map file
  2001-08-13  5:22     ` Reg System.map file SATHISH.J
@ 2001-08-13  5:16       ` Keith Owens
  2001-08-21  9:02       ` Reg core dump of KDE-2 SATHISH.J
  1 sibling, 0 replies; 12+ messages in thread
From: Keith Owens @ 2001-08-13  5:16 UTC (permalink / raw)
  To: SATHISH.J; +Cc: linux-kernel

On Mon, 13 Aug 2001 10:52:42 +0530 (IST), 
"SATHISH.J" <sathish.j@tatainfotech.com> wrote:
>Does the System.map file contain only the addresses of kernel functions
>present at the boot time. What I mean is, suppose I insert a new driver
>into the kernel, Is there any way to show its addresses in the System.map
>file? Please help me out with this.

System.map contains addresses of all the external symbols in vmlinux.
It does not contain the address of module symbols because they vary.
If you want a combined map that contains both kernel and module
symbols, use ksymoops -s.  That works best when you save the module
data after each module load and unload.

  man ksymoops
  man insmod, section KSYMOOPS SUPPORT IN MODUTILS.


^ permalink raw reply	[flat|nested] 12+ messages in thread

* Reg System.map file
  2001-08-12 13:35   ` Reg:flow of system call in linux SATHISH.J
  2001-08-12 14:10     ` Alan Cox
@ 2001-08-13  5:22     ` SATHISH.J
  2001-08-13  5:16       ` Keith Owens
  2001-08-21  9:02       ` Reg core dump of KDE-2 SATHISH.J
  1 sibling, 2 replies; 12+ messages in thread
From: SATHISH.J @ 2001-08-13  5:22 UTC (permalink / raw)
  To: linux-kernel

Hi,
Does the System.map file contain only the addresses of kernel functions
present at the boot time. What I mean is, suppose I insert a new driver
into the kernel, Is there any way to show its addresses in the System.map
file? Please help me out with this.

Thanks in advance,
Warm regards,
sathish





^ permalink raw reply	[flat|nested] 12+ messages in thread

* Reg core dump of KDE-2
  2001-08-13  5:22     ` Reg System.map file SATHISH.J
  2001-08-13  5:16       ` Keith Owens
@ 2001-08-21  9:02       ` SATHISH.J
  2001-08-21 14:29         ` Ignacio Vazquez-Abrams
  2001-08-23 12:59         ` command source code SATHISH.J
  1 sibling, 2 replies; 12+ messages in thread
From: SATHISH.J @ 2001-08-21  9:02 UTC (permalink / raw)
  To: linux-kernel

Hi,
I have  installed kde-2 on my linux machine(2.2.14-12 kernel). When
I give startx it goes to KDE screen. When I click on any one of the
applications for eg:-a new terminal or word application, it gives a core
dump and comes out of KDE. Please tell me the reasons for this and a
probable solution so that I need not reinstall the OS.

Thanks in advance,
Warm regards,
sathish.j




^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: Reg core dump of KDE-2
  2001-08-21  9:02       ` Reg core dump of KDE-2 SATHISH.J
@ 2001-08-21 14:29         ` Ignacio Vazquez-Abrams
  2001-08-23 12:59         ` command source code SATHISH.J
  1 sibling, 0 replies; 12+ messages in thread
From: Ignacio Vazquez-Abrams @ 2001-08-21 14:29 UTC (permalink / raw)
  To: SATHISH.J; +Cc: linux-kernel

On Tue, 21 Aug 2001, SATHISH.J wrote:

> Hi,
> I have  installed kde-2 on my linux machine(2.2.14-12 kernel). When
> I give startx it goes to KDE screen. When I click on any one of the
> applications for eg:-a new terminal or word application, it gives a core
> dump and comes out of KDE. Please tell me the reasons for this and a
> probable solution so that I need not reinstall the OS.
>
> Thanks in advance,
> Warm regards,
> sathish.j

This mailing list has nothing to do with KDE. You should probably check KDE's
website (http://www.kde.org/) for an e-mail address there that can help you.

-- 
Ignacio Vazquez-Abrams  <ignacio@openservices.net>


^ permalink raw reply	[flat|nested] 12+ messages in thread

* command source code
  2001-08-21  9:02       ` Reg core dump of KDE-2 SATHISH.J
  2001-08-21 14:29         ` Ignacio Vazquez-Abrams
@ 2001-08-23 12:59         ` SATHISH.J
  1 sibling, 0 replies; 12+ messages in thread
From: SATHISH.J @ 2001-08-23 12:59 UTC (permalink / raw)
  To: linux-kernel

Hi,
Can someone tell me where I can find the source code for commands. It
would be of great use for me.
Thanks in advance,
Warm regards,
sathish.j



^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2001-08-23 12:38 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-01 14:37 Reg crash utility installation SATHISH.J
2001-07-02 22:19 ` Patrick O'Rourke
2001-07-03  8:52 ` Reg kdb utility SATHISH.J
2001-07-03 10:39   ` Balbir Singh
2001-08-02  9:37   ` Reg char device driver on linux SATHISH.J
2001-08-12 13:35   ` Reg:flow of system call in linux SATHISH.J
2001-08-12 14:10     ` Alan Cox
2001-08-13  5:22     ` Reg System.map file SATHISH.J
2001-08-13  5:16       ` Keith Owens
2001-08-21  9:02       ` Reg core dump of KDE-2 SATHISH.J
2001-08-21 14:29         ` Ignacio Vazquez-Abrams
2001-08-23 12:59         ` command source code SATHISH.J

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).