*BSD This forum is for the discussion of all BSD variants.
FreeBSD, OpenBSD, NetBSD, etc. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
06-02-2007, 10:21 AM
|
#1
|
|
Member
Registered: Aug 2006
Location: Asia
Distribution: Ubuntu
Posts: 59
Rep:
|
Geany, Codeblocks, PCMan, Firefox often crash in FreeBSD
Im using FreeBSD 6.2.
When i use those programs, sometimes they close suddenly, generating a *.core file in my home directory.
For examples, with PCMan file manager, sometimes when i double click on an icon it doesnt response (doesnt get high lighted), then the program closes, creating a pcmanfm.core file in my home directory.
(Native) Firefox sometimes crash when playing flash (7). Linux Firefox always crash
Codeblocks crashes when i built a project. From then on, it crashes everytime i open a project. I removed it  .
For Geany, i have no idea. But since i upgraded it, this problem hasnt showed up yet.
The files are usually many MBs, containing binary content.
I dont know if this problem relates to each separate program or it's FreeBSD. FreeBSD should be stable right? Have any of you experienced the same problem? I use -O2 -pipe CFLAGS, with CPU type being pentium3. There should be no problem right?
How do i know where to fix this problem?
Thank you 
|
|
|
|
06-02-2007, 10:40 AM
|
#2
|
|
Member
Registered: Jan 2006
Location: pl_PL.lodz
Distribution: FreeBSD
Posts: 370
Rep:
|
Quote:
|
Originally Posted by Mr_Shameless
I dont know if this problem relates to each separate program or it's FreeBSD. FreeBSD should be stable right? Have any of you experienced the same problem? I use -O2 -pipe CFLAGS, with CPU type being pentium3. There should be no problem right?
|
switch to -O2 -fno-strict-aliasing -pipe minimum,
I use -O2 -fno-strict-aliasing -pipe -s -funroll-loops for ports all the time without any problems
|
|
|
|
06-02-2007, 09:32 PM
|
#3
|
|
Member
Registered: Jun 2005
Location: Indiana, USA
Distribution: OpenBSD, Ubuntu
Posts: 892
Rep:
|
Quote:
|
Originally Posted by Mr_Shameless
When i use those programs, sometimes they close suddenly, generating a *.core file in my home directory.
|
I don't use all of these programs, but the ones that I do give me problems as well. Geany crashed the X server, and Firefox just doesn't dies sometimes. Most of these programs are geared to GNU/Linux and are ported (probably imperfectly) to FreeBSD, and any idiosyncrasies that may be working just fine in GNU/Linux cause a crash in BSD-land. Unfortunately, that's just the way things are. I stopped using Firefox on FreeBSD in favor of Opera (which is much more stable in my experience), and I despise most graphical editors anyway (I favor both GNU Emacs and Vim). Sorry, there's probably not much to be done about this, unless you can get down and dirty with the code (build with debugging symbols and hit the GDB) and find out where the problem lies.
Quote:
|
Originally Posted by Mr_Shameless
The files are usually many MBs, containing binary content.
|
These are the contents of the program's allocated memory at the time of death. That's why they're so large, and why they're not ASCII text. Given a binary with debugging symbols and the core file, you can analyze the program from within a debugger like GDB (that's why they're generated for you, in case you want to debug the program). I know you can turn core dumping off somehow, but I don't remember offhand if its a sysctl knob or a shell option (or maybe both).
|
|
|
|
06-02-2007, 11:53 PM
|
#4
|
|
Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Geany crashed on me quite a lot as well. I compiled the latest version from source (not through ports) and it doesn't crash. The only time linux-firefox crashes on me is when I try and use Flash 9.
|
|
|
|
06-03-2007, 03:50 PM
|
#5
|
|
Senior Member
Registered: Feb 2006
Location: Siberia
Distribution: Slackware & Slamd64. What else is there?
Posts: 1,705
Rep:
|
Quote:
|
Originally Posted by Mr_Shameless
Im using FreeBSD 6.2.
When i use those programs, sometimes they close suddenly, generating a *.core file in my home directory.
For examples, with PCMan file manager, sometimes when i double click on an icon it doesnt response (doesnt get high lighted), then the program closes, creating a pcmanfm.core file in my home directory.
(Native) Firefox sometimes crash when playing flash (7). Linux Firefox always crash
Codeblocks crashes when i built a project. From then on, it crashes everytime i open a project. I removed it  .
For Geany, i have no idea. But since i upgraded it, this problem hasnt showed up yet.
The files are usually many MBs, containing binary content.
I dont know if this problem relates to each separate program or it's FreeBSD. FreeBSD should be stable right? Have any of you experienced the same problem? I use -O2 -pipe CFLAGS, with CPU type being pentium3. There should be no problem right?
How do i know where to fix this problem?
Thank you 
|
I had pretty regular crashes in CodeBlocks like you experienced but mine happened when I pasted a line in the editor. I finally got a newer version from subversion and patched GTK and it's never crashed again. I haven't checked in a long time and I don't know which version is in the FreeBSD package tree, last time I checked they were behind pretty far but the CodeBlocks team doesn't put out a lot of releases, everybody seems to use the nightly builds. If you haven't already done it go hang out on the forums. They're a good bunch of guys and you will find your answers.
I disabled flash everywhere because it hurts my eyes  Now I'm happy and I don't have many browser crashes. Firefox seems the least stable of the popular browsers, but they all suck (see the browser thread)
FreeBSD should be stable but all these apps come from different places and FreeBSD doesn't have any control over those groups. Some products are better than others. I personally feel that Mozilla (incl. firebox, thunderbird (the thunder you hear is the sound of it crashing), etc) needs a good kick in the arse and to stop putting out rubbish. Each new release has more and more features and all the old bugs never get fixed.
|
|
|
|
08-20-2009, 10:00 PM
|
#6
|
|
LQ Newbie
Registered: Aug 2009
Posts: 1
Rep:
|
using codeblocks, pcmanfm
hi for the record im using sourcemage linux. codeblocks locked up entire pc, possibly video driver related, mesa,nvidia. when u click in the code it crashes, particularly related to the object drop downs function locking something up?. i have the nvidia driver installed not sure what i configured for the codeblock compile including its dependants. ill be recompiling it in the near future.
as for pcmanfm "version 0.5.1" when navigating around folders it randomly decides to crash or not. and this is present on many difrent distrobutions including debian and sourcemage from what ive seen.
Last edited by ccssnet; 08-20-2009 at 10:03 PM.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 04:16 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|