This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

1.6.15 - Segmentation Fault on Start

Old posts that have not been replied to for several years.
Locked
f
floodjuh

1.6.15 - Segmentation Fault on Start

Post by floodjuh »

xxx@xxx:~/eggdrop$ ./eggdrop xxx.conf

Eggdrop v1.6.15 (C) 1997 Robey Pointer (C) 2003 Eggheads
[17:50] --- Loading eggdrop v1.6.15 (Sun Jul 20 2003)
[17:50] Listening at telnet port 4747 (all)
[17:50] Can't load modules dns: /home/xxx/eggdrop/modules/dns.so: failed to map segment from shared object: Permission denied
[17:50] Can't load modules channels: /home/xxx/eggdrop/modules/channels.so: failed to map segment from shared object: Permission denied
[17:50] Tcl error in file 'xxx.conf':
[17:50] invalid command name "channel"
while executing
"channel add #xxx {
chanmode "+nt-likm"
idle-kick 0
stopnethack-mode 0
revenge-mode 1
ban-time 120
exempt-time 6..."
(file "xxx.conf" line 461)
[17:50] * CONFIG FILE NOT LOADED (NOT FOUND, OR ERROR)
What to do about this error? Re-compiling doesn't fit the error.

Kind Regards..
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

That's not a segmentation fault, it's a config file error. You're using the "channel" command before you have channels.mod loaded.
f
floodjuh

Post by floodjuh »

I'm pretty sure I just use the channel command after loading the channel module.

So that can't be it ... must be something else ...
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

No, it isn't somthing else.

Re-read your output.
[17:50] Can't load modules channels: /home/xxx/eggdrop/modules/channels.so: failed to map segment from shared object: Permission denied
[17:50] Tcl error in file 'xxx.conf':
[17:50] invalid command name "channel"
It fails to load the module.

Because it failed to do this, the "channel" command is not available.

You need to find out why you are getting this failure to "Map segment from shared object"
Locked