Message boards :
Number crunching :
Blue Screen question
Message board moderation
Previous · 1 · 2 · 3 · 4 · Next
Author | Message |
---|---|
Gary Charpentier Send message Joined: 25 Dec 00 Posts: 30933 Credit: 53,134,872 RAC: 32 |
Time for an example. Apple ][. When it first shipped with 4k Ram did it have an operating system? Yes I'm talking the bare configuration without any Disk ][. When you turned it on, it came up in Basic. Did it have an O/S? |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Yes. Same with the original IBM PC when it booted into ROM BASIC. |
Dena Wiltsie Send message Joined: 19 Apr 01 Posts: 1628 Credit: 24,230,968 RAC: 26 |
operating system noun the software that supports a computer's basic functions, such as scheduling tasks, executing applications, and controlling peripherals. This is where it gets messy. In our unit scheduling task and executing applications is done by other applications needing the service needing the function of the first application. An application is woke up by an interrupt or by a service request by another application. As for controlling peripherals, the application exist to control the peripheral. This is an environment few programmers have seen. You have to be an assembler programmer and rule number one is you don't use code provided by anyone else. At one point an attempt was made to have an operating system/application divide in the unit but it made the unit very unstable because the applications needed to do things like mask the interrupts that interfered with the operating system. When we ripped that code out in the 2.0 version of the code, many of our problems went away. I don't have anything against operating system, but when you have an under powered processor, a limited amount of memory and I/O is not centralized, an operating system is something you can't afford. |
-BeNt- Send message Joined: 17 Oct 99 Posts: 1234 Credit: 10,116,112 RAC: 0 |
operating system What are you programming for. Being in the area I am I know sometimes you can't tell particulars, but what sort of project is this? Especially with the line "This is an environment few programmers have seen." You don't happen to work for Hydra do you? Traveling through space at ~67,000mph! |
Metod, S56RKO Send message Joined: 27 Sep 02 Posts: 309 Credit: 113,221,277 RAC: 9 |
Obviously some of you consider any piece of code that can talk to hardware directly to be an OS. I don't and I'm not the only one. Reason: it's not easy to draw the line between hardware and software these days. Is firmware hardware or software? If software, then is a DSP software an OS? What do you call software that lies between user application and that DSP-containing board? OS running on top of OS? Crazy example: An old-style terminal (such as DEC VT-100 classic), hooked up to a classical Hayes modem. Which part of the whole setup is an OS? Obviously you have I/O (keyboard, video terminal, RS-232, modem chip that answers to commands,...). OK, in extreme view each piece has it's own OS ... I think that's overloading the name. Metod ... |
gizbar Send message Joined: 7 Jan 01 Posts: 586 Credit: 21,087,774 RAC: 0 |
Anybody want to actually get back to helping the OP? ;-) Giz. A proud GPU User Server Donor! |
Iona Send message Joined: 12 Jul 07 Posts: 790 Credit: 22,438,118 RAC: 0 |
Whilst there are, quite clearly, people with knowledge and experience of hardware, software and firmware, these 'retorts' are not really being much help to the OP. For what it may be worth, Idone, I once had similar problems on an old 3.2GHz P4 running XP Pro SP3....it turned out to be, one of the four RAM modules was not quite 100%. Given that the RAM I had, was, OCZ Platinum, it was about the third thing I did a replacement test on. Believe me, I was surprised, but since it got replaced by OCZ, ultimately there was no problem. Don't take life too seriously, as you'll never come out of it alive! |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
operating system Operating System. n. 1. A program of control that defines the functionality, intelligence, and scope of a system or systems of operations. I don't have anything against operating system, but when you have an under powered processor, a limited amount of memory and I/O is not centralized, an operating system is something you can't afford. Just like the original IBM PC. It had an OS too. |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Obviously some of you consider any piece of code that can talk to hardware directly to be an OS. I don't and I'm not the only one. Quite right at that, which is why I'm here trying to expand your views of what an OS is. By the way, an OS isn't just any piece of code that can talk to the hardware. An OS is simply a system of control that defines the parameters of the machine and allows code to execute (and as -BeNt- says, save). Reason: it's not easy to draw the line between hardware and software these days. Is firmware hardware or software? If software, then is a DSP software an OS? Not at all. It's quite easy to draw the line between hardware and software. You have to know how to look at the system clearly. Firmware is software embedded into the hardware. DSP firmware is software embedded into the DSP chip. In a way, it is a confined OS for that chip. What do you call software that lies between user application and that DSP-containing board? OS running on top of OS? A separate OS with different parameters and different interfacing options. The DSP firmware simply defines a single chip's operation. The "user" OS defines the interface between the machine and the user. Crazy example: An old-style terminal (such as DEC VT-100 classic), hooked up to a classical Hayes modem. Which part of the whole setup is an OS? Obviously you have I/O (keyboard, video terminal, RS-232, modem chip that answers to commands,...). OK, in extreme view each piece has it's own OS ... I think that's overloading the name. Not at all. Each piece has it's own system of operations, or operating system. Each piece is designed to work together as a unit for an intended task or operation. An operating system is actually a broad term that isn't meant to be narrowly applied. |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Gizbar wrote: Anybody want to actually get back to helping the OP? ;-) Iona wrote: Whilst there are, quite clearly, people with knowledge and experience of hardware, software and firmware, these 'retorts' are not really being much help to the OP. The OP hasn't chimed-in in a while, and the last report said he was doing further testing. At this point we're just waiting on new information from him in order to offer additional assistance. With apologies to the OP, and to anyone who thinks I'm 'retorting', but I see nothing wrong with off-topic digression so long as the topic is obviously enthralling to those who keep contributing to it. Any good conversation has its twists and turns away from the original topic. |
Iona Send message Joined: 12 Jul 07 Posts: 790 Credit: 22,438,118 RAC: 0 |
Frankly, I'm not surprised that the OP has not "chimed-in", in a while. Even given, that it takes a little time to test things and bearing in mind that swapping memory modules relies on having something to swap with! Someone new to S@H asks for help and they get 'ego trips'?! Don't take life too seriously, as you'll never come out of it alive! |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Frankly, I'm not surprised that the OP has not "chimed-in", in a while. Even given, that it takes a little time to test things and bearing in mind that swapping memory modules relies on having something to swap with! Someone new to S@H asks for help and they get 'ego trips'?! Not everyone sees discussion as 'ego trips'. Some people might even be interested in reading and enlightened by the conversation themselves. Is this what Number Crunching has turned into? The fact that any time people have an intense discussion, we label it as retorts, egos and all sorts of things with negative connotations? Why can't we see discussion for what it is? |
Iona Send message Joined: 12 Jul 07 Posts: 790 Credit: 22,438,118 RAC: 0 |
Since you seem to regard this as helpful to the OP, pray, continue. The guy was asking for help and mainly, there was a 'discussion' about software, hardware and firmware. I'm sure that my experience with Sintered Metals, high temperature, controlled gas atmosphere furnaces (the biggest of it's type in the world) and thermal co-efficients would prove to be just as scintillating - to a Metallurgist. Only to a Metallurgist, but possibly to a company involved in such activities, also. My point being, that the OP is none-the-wiser for his asking. Thats helpful....really helpful. The original posting, was not a discussion - it was a request for help. Why can't a request for help, be treated as just that? A simple request for help; rather than a divergant discussion. Don't take life too seriously, as you'll never come out of it alive! |
Gundolf Jahn Send message Joined: 19 Sep 00 Posts: 3184 Credit: 446,358 RAC: 0 |
Why can't a request for help, be treated as just that? Actually, it wasn't possible to treat it like that, because not even the simplest piece of information was given that would be needed to provide help. And from the following requests to provide that information a discussion has evolved, albeit off topic. I see nothing bad in that. Gruß, Gundolf |
Iona Send message Joined: 12 Jul 07 Posts: 790 Credit: 22,438,118 RAC: 0 |
Check again...."Blue screen after a short while running seti....error was cache_manager". Don't take life too seriously, as you'll never come out of it alive! |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Since you seem to regard this as helpful to the OP, pray, continue. I never said it was helpful, just enlightening. My point being, that the OP is none-the-wiser for his asking. Thats helpful....really helpful. The original posting, was not a discussion - it was a request for help. Why can't a request for help, be treated as just that? A simple request for help; rather than a divergant discussion. And I fully admitted that this is off-topic, yet still interesting. Why does every discussion have to have Discussion Nazi's telling everyone else what they are allowed to discuss? Aren't you contributing to the very 'ego' you're arguing against by continuously arguing about it, and further digressing the discussion? Its times like this that I'm really ashamed to be a part of the community, and one of the many reasons why I've tried to leave, but I keep coming back for discussions like the one I was having. I don't need attitude for trying to share my views, even if they are "off topic". How about this: Everyone else that isn't interested in the discussion stop reading it and stop telling people what they're allowed to do. If the OP is bothered by it, let him speak up. Maybe he doesn't mind the discussion. |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Check again...."Blue screen after a short while running seti....error was cache_manager". Also note that I provided the most accurate help and several options to test. Do I really have to face such persecution for trying to help other people even if it's "off topic" for the thread? |
Iona Send message Joined: 12 Jul 07 Posts: 790 Credit: 22,438,118 RAC: 0 |
Off topic. A discussion Nazi? Thats rich. As far as I'm aware, I've never been a member of a 'nationalistic political party' that advocates discussion, or else! You are quite correct, I am feeding the ego...yours. Thats it, I'm out of here. Don't take life too seriously, as you'll never come out of it alive! |
OzzFan Send message Joined: 9 Apr 02 Posts: 15691 Credit: 84,761,841 RAC: 28 |
Off topic. A discussion Nazi? Thats rich. As far as I'm aware, I've never been a member of a 'nationalistic political party' that advocates discussion, or else! You are quite correct, I am feeding the ego...yours. Thats it, I'm out of here. So you don't advocate discussion? Obviously by your attempts to steer it as you see fit, hence 'discussion nazi'. I wasn't aware that it is 'egoist' to try to express my views and help people whenever and wherever I can. What is it with these harsh feelings and attitudes toward me? Am I really doing something so bad that warrants this? Is having a view and fighting for it really such a disrespectful thing? Just so you know Iona and Dena, I have always held the two of you in high regard, even if I don't always agree. Its very sad to see such a great discussion go down the tubes like this because of harsh feelings, angry words or misunderstood text. |
-BeNt- Send message Joined: 17 Oct 99 Posts: 1234 Credit: 10,116,112 RAC: 0 |
Wow come on people, you're honestly going to let one sad sally mess up an entire, intriguing, thought provoking, conversation. I was enjoying seeing what everyone's view were. So much for the 'forum' aspect of it. Traveling through space at ~67,000mph! |
©2024 University of California
SETI@home and Astropulse are funded by grants from the National Science Foundation, NASA, and donations from SETI@home volunteers. AstroPulse is funded in part by the NSF through grant AST-0307956.