What is the basic difference between unix and windows
operating systems?
Answers were Sorted based on User's Feedback
Answer / prasanth verkot-accel frontlin
Unix is an free s/w but windows is not.
Is This Answer Correct ? | 70 Yes | 21 No |
Answer / rakesh
unix has a interface between user and kernal(hardware)
called as shell . Which is very important and this is why
we dont here any virus attacks on unix but in windows we
dont have any shell user can directly communicate to
hardware and hence virus occurs
Is This Answer Correct ? | 57 Yes | 12 No |
Answer / muthu
In Unix, a shared object (.so) file contains code to be used
by the program, and also the names of functions and data
that it expects to find in the program. When the file is
joined to the program, all references to those functions and
data in the file's code are changed to point to the actual
locations in the program where the functions and data are
placed in memory. This is basically a link operation.
In Windows, a dynamic-link library (.dll) file has no
dangling references. Instead, an access to functions or data
goes through a lookup table. So the DLL code does not have
to be fixed up at runtime to refer to the program's memory;
instead, the code already uses the DLL's lookup table, and
the lookup table is modified at runtime to point to the
functions and data.
In Unix, there is only one type of library file (.a) which
contains code from several object files (.o). During the
link step to create a shared object file (.so), the linker
may find that it doesn't know where an identifier is
defined. The linker will look for it in the object files in
the libraries; if it finds it, it will include all the code
from that object file.
In Windows, there are two types of library, a static library
and an import library (both called .lib). A static library
is like a Unix .a file; it contains code to be included as
necessary. An import library is basically used only to
reassure the linker that a certain identifier is legal, and
will be present in the program when the DLL is loaded. So
the linker uses the information from the import library to
build the lookup table for using identifiers that are not
included in the DLL. When an application or a DLL is linked,
an import library may be generated, which will need to be
used for all future DLLs that depend on the symbols in the
application or DLL.
Is This Answer Correct ? | 43 Yes | 11 No |
Answer / nazneen
Unix is more secure as compared to windows. Unix uses File
encrytion FAP and login with a password
Is This Answer Correct ? | 32 Yes | 7 No |
Answer / simrati sharma
unix supports multithreading.where as wincows doesnot
supports multithreading.
Is This Answer Correct ? | 96 Yes | 72 No |
Answer / vishal
Unix is hierarchical relationship . each process becomes
child of other process.
UNIX uses daemons, Windows has service processes
Is This Answer Correct ? | 24 Yes | 5 No |
Answer / shubh
Unix Window
* It is hierachile model. It is a flat model.
* It is CUI. It is a GUI.
* It is command base. It is menu base.
* It is not event driven. It is event driven.
* It is multi-processor. It is not multiprocessor
* Free sourced OS. Licensed OS.
* It doesn't have registry It is having registry
concept. concept.
Is This Answer Correct ? | 19 Yes | 1 No |
Answer / akshita
1. unix has inbuilt mail subroutine called " sendmail"
whereas there is no such inbuilt utility in windows
environment..
2. it is little difficult for a novice user to work in unix
environment as it requires its user to learn commands
but if we see it in case of windows,even a layman can
operate easily..as it is more user friendly...
Is This Answer Correct ? | 21 Yes | 4 No |
Where can I get the free download of Unix by Yeswant Kanetkar?
What does grep v do?
what is the use of ls -l command & what is the information it gives about user ?
29. How to display top 10 users Who | head -10 | wc –w
What is s and g in sed command?
what is the difference between SED and GREP ? Which one is more better and why?
What does sed command do in unix?
How to view the hidden files in /etc directory?
Describe the usage and functionality of the command rm –r * in unix?
How to display no of records in oracle using unix command?
What do you mean by zambie process?
Give the command for finding the current date.