10
votes
5answers
384 views
Why linux is called monolithic kernel
I read that Linux is a monolithic kernel. Does monolithic kernel means compiling the linking the complete kernel code into an executable? If Linux is able to support modules, why not break all the …
2
votes
2answers
88 views
What kind of kernel does MS Windows have?
I saw a question on Linux Kernel. While reading that I had this doubt.
LInk to that post : http://stackoverflow.com/questions/1806585/why-linux-is-called-monolithic-kernel
3
votes
4answers
106 views
Is there a cross-platform way to open a file browser in Python?
I'm thinking something along the lines of the webbrowser module, but for file browsers. In Windows I'd like to open explorer, in GNOME on Linux I want to open nautilus, Konqueror on KDE, etc. I'd …
1
vote
1answer
13 views
Find Vista Language using WIX
I am working on an installer which will be installed on multiple versions of XP/Vista with different languages.
In the installer, I need to find out the language of the OS installed.
I know how to get …
1
vote
2answers
67 views
Difference between interrupt and event.
What is the difference between interrupt and an event ? I am very confused between this two.
Please clarify me.
1
vote
2answers
26 views
How much access should an OS give to web-based scripting?
I've been thinking about the access web-based applications have to an OS.
I'm curious:
What is the best way of determining
this as it currently stands?
Is the trend leaning toward more, or
less …
2
votes
3answers
171 views
Detect 64-bit or 32-bit Windows from User Agent or Javascript?
I want to offer the right version of a download. The versions I have are:
32-bit Windows
64-bit Windows
Linux
Detecting Linux using the User Agent field is easy; but is it possible to reliably …
3
votes
9answers
189 views
Can i execute any c made prog without any os platform???
i googled about it and some where i read ....
Yes, you can. That is happening in the case of embedded systems
As per i think,
NO, its not possible. Any platform must have an operating system. Or …
1
vote
2answers
73 views
When process exit, will the memory that’s left undeleted be returned to OS?
I am wondering if i new some object but forget to delete it, when the process exit, will the leaked memory be returned to the OS?
0
votes
4answers
68 views
Good book teaching OS using Linux
I am preparing for some interviews and I would like to review OS concepts.
I have found this so far.
I dont want a Linux kernel in a nutshell or administration or programming, but a book that goes …
0
votes
3answers
52 views
What will happen if a application is large enough to be loaded into the available RAM memory?
There is chance were a heavy weight application that needs to be launched in a low configuration system.. (Especially when the system has too less memory)
Also when we have already opened lot of …
1
vote
0answers
23 views
Help me in understanding about a research phase ES Operating System by Google?
Hello,
I was googling about the latest Chrome OS by google and encountered an another old research phase OperatingSystem owned Google, its "ECMAScript Operating System" (ES OS) hosted on GoogleCode.
…
0
votes
1answer
32 views
Difference between COM DLL & ActiveX control
Few similarities I know..
Both cannot execute by themself. It needs some program to instantiate it.
COM DLL & ActiveX controls are platform independant.. (Is it so..?)
Both requires to support …
0
votes
5answers
50 views
What form is DLL & what makes it processor dependant
I know DLL contains one or more exported functions that are compiled, linked, and stored separately..
My question is about not about how to create it.. but it is all about in what form it is stored.. …
4
votes
5answers
155 views
how is sleep implemented at OS level?
I am just interested how sleep(time in ms) is implemented in C lib or basically at the os level..
I am guessing ..
1) may be the based on the processor speed you do a while loop of nop's ( not sure …
