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)

0
votes
0answers
6 views

What is different between “pager” and “Lazy swapper”?

I'm reading a book, operating system concepts (written by abraham silberschatz), in chapter 9 virtual memory, there are terms Lazy swapper and pager. I can figure out what is different between Lazy ...
0
votes
0answers
5 views

missed sidnal in binary semaphore

This is the code of binary semaphore: down(s): is s<=0 : process blocked else s-- up(s): if there are blocked process, wake up one f them else s++ Now, in my summary : "There is ...
-1
votes
0answers
12 views

Steps behind a simple assignment operation in linux

What are the sequence of steps that happen in CPU, cache, TLB, VM, HDD leading to execution of “x = 7” which isn’t present in cache or sysmem nor translation in TLB. It will be great if someone can ...
0
votes
0answers
13 views

Is there a URI or other information source (e.g. book) that demonstrates the creation of boot sector code from scratch? [closed]

I'd really like to write my own bootstrap code and need a tutorial to understand the BIOS functionality and Assembly code necessary to make this happen. Is there a source of information that could ...
1
vote
2answers
40 views

Is cache miss a kind of interrupt/fault

We know that a page miss in memory will bring a page fault, and the page handler must load the page into the physical memory. Here I wonder whether a miss in a cache is also a system fault? If not, ...
0
votes
1answer
33 views

Why does a binary of one OS (Windows) does not run in other ( Linux) for same underlying architecture? [closed]

It may be a trivial question but I have hard time to explain to my little brother that a Windows binary will not run in another different OS like Linux even when both the OS are running in the same ...
0
votes
1answer
49 views

disable all home button and task bar features on Nexus 7

I am building an app that will form part of an exhibition. It will be displayed on a Nexus 7 which will be securely mounted. The app has touchscreen functionality and will display interactive content. ...
2
votes
1answer
24 views

Can the instructions in a thread change during execution? (OS)

I'm currently researching threads in the context of the operating system and I'm unsure if a thread is a set sequence of instructions that can be repeatedly executed or if it is filled and replaced ...
0
votes
1answer
33 views

virtual address page replacement with LRU policy?

How can I use LRU page replacement to the following virtual addresses ?? 0xdeadbeef, 0xcdacdacd, 0xbad2ceed, 0xcdacd123, 0xdeadb341, 0x34312315 How many page fault will be there?? ...
0
votes
1answer
26 views

Detect Mac OS version with PHP

I have created a script to detect OS version of windows with the help of the internet, but Now I am stuck at detecting Mac OS versions. I have no Mac OS to test the code and to find out what to use ...
5
votes
1answer
48 views

Is all program code loaded into the text\code section\segment of memory

I have started to look at c programming and whilst I am not a complete beginner (I have knowledge of java and web development) there are a lot of things I do not understand. My question is about when ...
0
votes
2answers
23 views

Reading /proc/kcore file

I am trying to read the kcore file in the /proc directory using the command cat /proc/kcore but something is coming in unreadable form. Is this possible to read this kcore file ? Thanks in advance.
0
votes
0answers
12 views

difference or similarity between segmented paging and paged segmentation?

i was studying combined paging/segmentation systems and in my book there were two approaches to this : 1.paged segmentation 2.segmented paging i could not make out the difference between the two.i ...
2
votes
3answers
98 views

Why 4 process better than 4 thread?

void task1(void* arg) { static volatile long res = 1; for (long i = 0; i < 100000000; ++i) { res ^= (i + 1) * 3 >> 2; } } 4 threads, working simultaneously, perform ...
0
votes
3answers
23 views

HTML changing from Windows to Mac

So i have written a portfolio website, however i am having some trouble. I wrote the site on a windows 7 machine however, at home i use a mac. The windows machine is a 15" screen and the mac a 13" ...
0
votes
0answers
9 views

xinu clkint.c operarating system

I know that 'tod' counts how many clks where taken from the begining of the program. Is it possible to count how many clks where taken in one second for example ?
-1
votes
0answers
13 views

is buddy allocation and slab allocation used with virtual memory

I have learned some simple memory allocation methods such as fixed equal size partitioning, fixed variable size partitioning, dynamic partitioning, all which used without virtual memory. There are ...
0
votes
1answer
20 views

TLB translation vs cache

I am having a doubt regarding memory management in operating systems.I know that cache is a temporary storage location used to speed up memory accesses whereas TLB is used to speed up translation from ...
1
vote
0answers
19 views

The relation between privileged instructions, traps and system calls

I am trying to understand how a virtual machine monitor (VMM) virtualizes the CPU. My understanding right now is that the CPU issues a protection fault interrupt when a privileged instruction is ...
1
vote
4answers
71 views

Finding the Starting Address of an array

I've been working on the bufbomb lab from CSAPPS and I've gotten stuck on one of the phases. I won't get into the gore-y details of the project since I just need a nudge in the right direction. I'm ...
0
votes
0answers
25 views

Difference between different Unix like OS [closed]

I used Linux for years now and wish to get a better idea of other Unix like OS. This may sounds weird but I'm wondering if someone can provide me a general introduction and/or references about the ...
0
votes
0answers
21 views

Delete operating systems and start from scratch [migrated]

I am on a Dell XPS 200 desktop computer. The computer originally came with Windows XP, but I upgraded it to Windows 7. I also installed Ubuntu 12.10 on here so whenever the computer starts up, you can ...
0
votes
2answers
46 views

Forcing program to create coredump on freebsd

In my project I added a new module and now my process is being terminated by signal 11 . I want to track and understand the problem but no coredump file is generated by freebsd. I set sysctl like : ...
-3
votes
0answers
21 views

The most optimal operating system [closed]

I have a laptop Toshiba Satellite A505 with following features: Intel Core i3 processor 8kB L1 cache, 64 kb L2 cache, 256kB L3 cache 4 GB RAM 500 GB HDD I have used many operating systems on it. ...
1
vote
0answers
96 views

Computer memory and operations [closed]

I have been reading C++ book by jarne Stroustrup and found following statement "More philosophically, I am among the large group of computer professionals who are of the opinion that if you lack a ...
0
votes
1answer
40 views

handling multiple login systems

I would like to make an authentication system where users or an administrator can choose which login system they prefer. The problem is that different systems have different Login-Systems and ...
1
vote
1answer
20 views

What file system for Mac OS X and Linux [closed]

I recently purchased a Raspberry Pi and I would like to use it as a small file server. The raspberry Pi is conected to an external USB Hard Drive. I would like to use that hard drive to store files, ...
-3
votes
1answer
32 views

Is it possible to dual boot two OS's at the same time? [closed]

I want something like run server distribution of linux on one hard disk and windows 7 on the second hard disk. But I want to have only one cpu ram graphic and motherboard. For linux I do not need to ...
0
votes
1answer
70 views

How virtual addresses work on computers without virtual memory?

I am reading memory management schemes in Operating System.I got confused from this Question How virtual addresses work on computers without virtual memory? Is this possible virtual address can work ...
-1
votes
1answer
49 views

Does the output of a program depend on the OS and the compiler? [duplicate]

#include<stdio.h> void main() { int i = 5; printf("%d\n",i++ + ++i); printf("%d\n",i++ + ++i + i++ + i++); printf("%d\n",++i + i++ + ++i + i++); } i++ + ++i = 5+7 =12. i++ + ++i + ...
1
vote
1answer
42 views

How to tell if process is responding in Python on Windows

I am writing a python script to keep a buggy program open and I need to figure out if the program is not respoding and close it on windows. I can't quite figure out how to do this.
2
votes
1answer
78 views

Java dining philosophers monitors

I have a problem in my Java code that should simulate dining pholosophers problem, which is described here: http://en.wikipedia.org/wiki/Dining_philosophers_problem I want to output the current state ...
0
votes
0answers
15 views

How to trace out whether stack memory allocated to a particular process is freed or not

We used to allocate 10KB of memory while creating a dynamic process. But I don't know that memory gets freed or not after the kill on the process. Is there any chance that the memory will not be ...
0
votes
0answers
20 views

Can the iOS App Read the query string parameter for the Distimo App Download Campaign

iI am interested in passing parameters to the download link in the iOS app store. From what I've read, it seems that the parameters are only passed to the application if it was already installed, and ...
0
votes
0answers
20 views

Heuristic to automatically detect thrashing [closed]

I was trying to understand memory management strategies and was going through paging and thrashing . I wanted to know whethere : It is possible to design a heuristic that will automatically detect ...
0
votes
0answers
14 views

Operations Required for moving one file from one directory to another

I have an OS exam and this is the question from previous exam. I am not sure what would be the answer for this. Could you help me? What steps/operations must a file system execute in order to move a ...
1
vote
1answer
29 views

determine os architecture and bitness in java

I want to be able to dynamically determine the OS, architecture, and bit-ness in my Java application. For example, I would like my application to know when it is on a Solaris 32-bit sparc machine or ...
-1
votes
0answers
30 views

Redirecting TCP traffic from remote host to localhost [closed]

I have CentOS and I would like to redirect all TCP traffic from outside world on port 25000 to localhost on port 18000. Is this possible and if it is, how?
-1
votes
0answers
10 views

How is a time limit exceeding concept implemented in an OS? [closed]

I am reading Operating Systems by William Stallings 6th edition and I came across the concept of time limit exceeding. I am trying to understand how would a scheduler identify if the time limit has ...
0
votes
0answers
9 views

peterson's algorithm -what is the flag arr and turn

I try to understand what is the meaning of flag[i] and turn and what is the meaning of what is inside the while. //flag[] is boolean array; and turn is an integer flag[0] = false; flag[1] = ...
-3
votes
0answers
27 views

Comparison between time-slice scheduling and preemptive scheduling? [closed]

In the case of single-cpu, between time-slice scheduling and preemptive scheduling I want to make a comparison of their degree of autonomy and sheduling cost? Which of them does Java use ? Or in ...
-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
41 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
38 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
23 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
14 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 ...

1 2 3 4 5 72