Skip to main content

Give a brief introduction to UNIX.

#RHL-1.1

1. Give a brief introduction to UNIX.

Ans. 
1. In 1969, Ken Thompson, Dennis Ritchie and the researchers at AT&T bell laboratories developed the UNIX Operating system.

2. They designed the system for the needs of a research environment, designing it run on a minicomputers.

3. UNIX was an affordable and efficient multiuser and multi-tasking operating system.

4. UNIX gradually grew from one person’s tailored design to a standard software product distributed by many different vendors, such as Novell and IBM.5. Throughout the 1970’s Bells lab began issuing official versions of UNIX and licensing the system to different users.

6. Berkeley added many new features to the system that later became standard in 1975 Berkeley released its own version of UNIX known by its distribution arm, Berkeley Software Distribution (BSD).

7. This BSD version of UNIX became a major contender to the AT&T bell lab’s version called ‘system3’, this was later followed by ‘SystemV’, which became a supported commercial software product.

8. In 1983, Berkeley released a powerful version of UNIX called BSD release 4.2, this release included sophisticated file management as well as Internet network protocols- the same protocols are now used for internet.

9. Several other companies like IBM, Harvard Packard created their own standard versions of UNIX.10. Two commercial standard versions of UNIX existed then the Open software foundation (OSF) and SystemV.

Comments

Popular posts from this blog

Explain the tools used to monitor system security.

12.Explain the tools used to monitor system security. Ans. 1. People who, for purpose of larceny or to amuse themselves, like to break into computers, they are called ‘crackers’. 2. If there is a vulnerability in a system they will find it and use it against you. 3. Preventing use of your machine for nefarious purpose and guarding against intrusion are, in the end, your responsibility alone. 4. Red hat equips you with tools to detect and deal with unauthorised access of many kinds. 5. You need to configure those tools and understand how to sense the warning they provide. 6. Fortunately Linux is development community is quick to find potential exploits and to create ways of slamming the doors before crackers can enter in your system. 7. Red hat is careful enough to making available new, patched version in which potential exploits have been found. 8. You should make sure to download and install the repaired package. 9. This line of defence...

Explain the file systems supported by Linux.

21.Explain the file systems supported by Linux. Ans. 1. Linux can read/write to several file system that originated with other operating system much different from Linux. 2. One reason that Linux supports so many file systems is the design of its virtual file system (VFS) layer, its provides a fairly universal forms of file support, file systems supported by Linux are as follows: 3. ext3: • Ext3 stands for third extended file system. • Starting from Linux Kernel 2.4.15 ext3 was available. • The main benefit of ext3 is that it allows journaling. • Journaling has a dedicated area in the file system, where all the changes are tracked. • When the system crashes, the possibility of file system corruption is less because of journaling. (If no journaling, then fsck command (file system consistency check) is used to check for the corrupted file and to repair that file). • ext3 keeps a record of uncommitted file transactions and applies only those transactions when the sy...

Explain the rc script and how they can be managed by manually.

18.Explain the rc script and how they can be managed by manually. Ans. 1. ‘rc’ scripts are stored in ‘/etc/rc.d’ directory, rc scripts are used to stop and start services for runlevels. 2. In ‘/etc/rc.d’ directory we have some additional directories rc0.d, rc1.d, rc2.d, rc3.d, rc4.d, rc5.d and rc6.d, the numbers in directory name corresponds to the runlevel and contains the scripts for runlevels. 3. For example let’s take runlevel 5, init program looks in the ‘/etc/rc.d/rc5.d/’ directory for the processes to start and stop. 4. All the scripts in the rc5.d directory are symbolic like to the actual scripts that are located in the ‘/etc/rc.d/init.d/’ directory. The use of symbolic link means that the runlevel can be modified by adding or removing symlinks or changing the order the script run. 5. rc scripts contains symbolic links which can be modified to change the runlevels. 6. Symbolic links begins with a ‘k’ and a number or an ‘s’ and a number. Example: S25netfs -...