An operating System (OS) is a basic software whose rule is to intermediate software requisitions for resources and the hardware available, manage input/output, memory allocation/deallocation, file systems, among other basic tasks a device (not necessarily a computer) should do.

learn more… | top users | synonyms (2)

-1
votes
0answers
29 views

Genetic Programming for Operating System in C sharp [closed]

I've been looking genetic programming for simulation operating system like cheddar in ada language or cpuss in C#. Anyone knows of good online resources? Wonder if there is a C# library out there for ...
2
votes
1answer
43 views

Why do interrupts need to be disabled before switching to protected mode from real mode?

I saw in many many oses (and some bootloader), they all disable interrupt (cli) before switch to protected mode from real mode. Why we need do that?
-2
votes
1answer
25 views

Ubuntu get the time when the Operating System was installed for a non root user [closed]

Does anyone know how to get the time or date when the Ubuntu Operating system was installed (Not the uptime)? Thank you
-1
votes
0answers
39 views

How to calculate the size of page table

Assuming pages of 4Kbytes and 32-bit addressing, estimate the maximum size of the page table for each process. I i think this is 2^32? Is there a forumla for this?
-1
votes
1answer
20 views

What is the difference between kernel mode and monitor? [closed]

What is the difference between kernel mode and monitor? How does they differentiate between one another?
0
votes
0answers
11 views

OS The datapath in operation for an R-type

I am studying in Operating System course, and in datapath chaper, there something that I do not understand, please feel free your time to look around this. Datapath in R-type, and complete the ...
0
votes
1answer
30 views

Why they always use while(true) loop for the process in process synchronization chapter?

I am reading the textbook Operating Systems Concepts by Abraham Silberschatz et al. I found that whey almost use while(TRUE) loop for all the processes that need to be synchronized in the the chapter ...
0
votes
0answers
24 views

understanding OS basics: Multitasking, Multiprocessing

I know some of you may think this question as non-constructive, duplicate or want to close it, but still I want to ask it to have a better insight of the topic. I want to know about the famous ...
0
votes
0answers
17 views

Vertical swipes using NSPageController

I'm using NSPageController to to horizontal swipes. I would also like to be able to use Vertical swiping to do a different function but I can't figure out how to do it (prior to using NSPageController ...
-8
votes
0answers
42 views

how to create a program creating/handling multiple threads. Each thread is to sort a character array an alphabetical order [closed]

You will create a program creating/handling multiple threads (in C program). Each thread is to sort a character array in an alphabetical order. The array is a shared variable among all threads; it is ...
-4
votes
0answers
23 views

Mlearning for Operating System: Memory management [closed]

i just wanna ask for an algorithm that could be used in memory management of OS? im taking up my thesis and our thesis will be a mobile learning app about Operating System Subject.. and our module ...
2
votes
0answers
26 views

Development environment/process for systems (OS) programming? [closed]

What is a typical development environment/process used for operating systems programming. I am currently taking an OS course through my university where we are playing around in the MINIX OS (e.g. ...
0
votes
1answer
20 views

how to start massive concurrent client on the same machine

I run a daytime server on my own computer, it's a mac air laptop. I want to test it's capability of concurrency. So I want to start massive concurrent client connecting to the daytime server. But ...
-4
votes
1answer
52 views

What was the First Windows Written in? [closed]

when Bill Gates and Paul Allen made The first Windows how did they do it? what exactly was it coded in? i was just wondering because i was thinking about early computer coding and such then i ...
0
votes
0answers
25 views

Multi OS boot & snapshotting without using VM? [closed]

I have a couple of machines that I want to use for app testing (including install/uninstall, etc across multiple OS). Ideally I'd just slap a VM hypervisor on the machine and be able to setup multiple ...
-5
votes
1answer
24 views

Logical memory instead of virtual memory [closed]

I was reading the article http://www.ualberta.ca/CNS/RESEARCH/LinuxClusters/mem.html In figure 1, I think 'virtual memoroy' should be 'logical memory'. Can any body please clarify?
1
vote
0answers
35 views

What's a good board for deveoping OS? [closed]

I have been developing my own OS for quite sometime now. Not kernel hacking Linux - A operating system written from scratch. However I was mostly doing it on emulators. Recently I feel the need to ...
1
vote
1answer
35 views

reduction in the lifetime of a hard drive from using os.walk

Is there any problem with running the following script on a timer over a whole external disk drive? EXTERNAL_DRIVE_DIRECTORY = "E:\Files" # get all of the files in a top level directory of a hard ...
0
votes
3answers
48 views

Opening Files From Any Directory (Python)

Im writing this basic code that runs files on my computer but right now it can only open files from the directory it is in. is there a way to open files from anywhere on my computer or would i have to ...
0
votes
0answers
73 views

calling python from C++

I have a C++ application that generates some files and I want to call a series of scripts on those files. Specifically, within the C++ application I run generate file_1 and file_2 then I run ...
0
votes
1answer
47 views

Create audio player for firefox os

I'm thinking of creating a local audio mp3 player for firefox you but instead of showing the songs and albums you shuffle one of the songs in your library. Please respond and if they feel that this ...
1
vote
1answer
35 views

Decimal to binary using sign, exponent, magnitude

I have an operating systems final later today and i'm looking over my past exams. Anyways long story short I got it wrong, this isn't a HW problem I'm just unsure how to do it. "Suppose we use 32 ...
1
vote
2answers
48 views

Access permission to execute a script

I understand that three types of permissions to a file (read, write, execute) can be set independently, hence there are eight possibilities per file per user (superuser, group, normal user). Based on ...
0
votes
2answers
53 views

Inability of Linux Kernel to support 1GB physical memory and the HIGHMEM solution

I have been reading [1] to have an idea about the HIGHMEM. The article says that "If the kernel wishes to be able to access the system's physical memory directly, however, it must set up page tables ...
0
votes
0answers
13 views

Interrupt inhabiting in semahore's wait and signal operations

It was discussed that Semaphore’s Wait and Signal operations must be executed atomically and this Critical Section problem can be solved in a variety of ways including software, hardware and OS ...
0
votes
0answers
17 views

GruntyOS filesystem implementation

I am trying to implement filesystem of GruntyOs in my test OS, which I am developing using COSMOS kit in Visual Studio 2010. There are so many OSs like noobs envyos, etc., that have already ...
0
votes
1answer
49 views

basic keyboard handler in C

I am trying to develop a basic OS using assembly and C and I am kind of stuck in developing the keyboard driver. I use the following two functions to get a line from the user through the keyboard ...
9
votes
1answer
177 views

Why is [@“” class] != NSClassFromString(NSStringFromClass([@“” class])) on OS X?

if([@"" class] == NSClassFromString(NSStringFromClass([@"" class]))) printf("foo"); else printf("bar"); Output on iOS: foo Output on OS X: bar Why is this behaving that strange on OS X?
-3
votes
2answers
29 views

Can't boot into windows 7 or any Linux distribution, only xp is normal [closed]

I have my computer repaired recently, And now my PC can not boot into windows 7 or any Linux distribution, only xp is normal. What can led to this problem?
1
vote
4answers
63 views

Heap memory clearance when application closes abruptly

As we know the heap is used for dynamic allocation of memory for an application. How is the heap memory cleared(and hence avoiding memory leaks) in case of abnormal application termination? Consider ...
1
vote
2answers
46 views

How to distinguish between different operating system distros in node.js?

In node you have access to process.os() and process.platform, which give you one of 5 values: 'darwin' 'freebsd' 'linux' 'sunos' 'win32' But how do you print out the specific distro, such as one of ...
0
votes
0answers
29 views

What is the effect of increasing/decreasing the size of ready queue?

This is one of my hw questions for my OS class but I'm not sure what the answer is. From what I've read, having an unbounded ready queue could potentially overload your CPU and cause a crash which is ...
0
votes
0answers
31 views

MINIX vs PINTOS vs NACHOS for learning operating system design [closed]

I am interested in developing an operating system from scratch. Since this is my first approach in designing an OS, I am confused which one to start with- MINIX or PINTOS or NACHOS as a starter. And ...
0
votes
1answer
42 views

What is a thread-specific os.chdir and mkdir in python?

I have several threads each of which is changing working directories and occasionally creating new ones in specific working directories, copying/moving files etc in these directories. Think e.g.: def ...
-3
votes
1answer
74 views

How do i get started in Network Programming? [closed]

I would like to get started in Network Programming on anything like Web, Window App, Apple device, Android device but i don know where to start all these thing...and i also have a good solid ...
0
votes
3answers
61 views

Performance Gain with Specifically Built OS [closed]

Let's take a trivial CPU bound program, such as brute forcing prime numbers, which perhaps occasionally saves them to an SD card. Inefficiencies in today's programs include interpretation and virtual ...
0
votes
2answers
86 views

how to find the implementation of a function in linux?

Sometimes, I want to know the implementation of a c function. My editor is vim. I have try ctags and cscope, and man. man 2|3 only tell me how to use a function. both ctags and cscope can just find ...
0
votes
0answers
17 views

Getting OS X Instruments to work with custom (green) threads

We have a piece of software that implements a custom version of cooperative (green) multitasking. It works great on OS X, but we can't get Instruments to work properly to profile memory -- Instruments ...
0
votes
0answers
22 views

Calculating bits

I'm looking over some exam papers for Operating Systems and I have come across a question which I simply cannot figure out. I'm not looking for the exact answer (although I wouldn't mind it), I just ...
0
votes
1answer
42 views

Minimum Required SDK - Percentages

Does anyone know what percentage of consumers use each operating system for Android? When choosing the minimum required SDK, you of course want to target the largest audience possible, but lose as ...
0
votes
1answer
35 views

How do I get the information shown in vmmap programatically?

As anyone who has watched the Mark Russovich talk "Mysteries of Memory Management Revealed" knows, the vmmap tool can show you things that count against your process limit (2GB on vanilla 32 bit ...
-1
votes
0answers
32 views

Semaphores in Operating Systems [closed]

Semaphores are used to synchronize procesess within an operating system. My question is: how do semaphores work and why are they a necessary part of an OS?
-1
votes
0answers
37 views

How to start to implement Sandbox for Windows?

I want to build a Contest Management System, where participants can submit code in different programming languages. And my system will compile it and run it. So I need to implement a Sandbox system to ...
0
votes
0answers
78 views

Is Windows Auto Logon using .Net possible? [closed]

I just want to do Proof of concept regarding Auto logon the Windows Os using .Net. My requirement is, I need to write an installable application which automatically detects my finger print and do ...
0
votes
0answers
8 views

Mac OS and system use/history [migrated]

Someone had access to my machine while I was away on vacation and I'd like to know what was installed or copied to my hard drive during a limited 3 day timeframe. Is this system info available? I ...
0
votes
2answers
50 views

If PHP is running on Linux; how to get the specific distribution(Ubuntu, fedora, etc..)?

I have a PHP script that interacts with OS's CLI, and I'm expecting this script to run on different Linux distributions, so I have to interact with different Linux falvours differently to achieve ...
1
vote
2answers
49 views

What exactly is a kernel thread and how does it work with processes?

From my understanding, a user thread is created by the user from library and managed in user space. A process can contain one or more user threads and the kernel is not aware of them. So what is a ...
1
vote
0answers
10 views

Aestiva HTMLOS debugging

I've recently inherited a project with a lot of Aestiva/HTMLOS code. I know this is a pretty old and this probably is a reach, but I'm wondering if anyone could offer advice for debugging this type of ...
-2
votes
0answers
66 views

Calculating How Many Bits are Used in Paging [closed]

I'll level with you from the start and say this is part of an assignment BUT(!!!!) I am not after 'answers', I am after an understanding. I have met with my lecturer/tutor but still am struggling. ...
3
votes
1answer
219 views

How “Hello World” gets printed? - a complete life cycle [closed]

I took compiler, operating system, computer architecture course in graduate school. But I want to see those concepts in a simple but real example (not too theoretical). HelloWorld is a good choice ...

1 2 3 4 5 72