• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/18

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

18 Cards in this Set

  • Front
  • Back
Why is Linux popular?
Linux is portable, is based on standards, is written in C, has a kernel
programming interface, can support many users, and can run multiple
tasks simultaneously
Why is it popular in academia?
The source code for the operating system is readily available so students
can understand more easily how Linux works and can modify the code
further to understand its operation and change the way it works.
What is the Free Software Foundation/GNU?
The Free Software Foundation (www.fsf.org) is the principal
organizational sponsor of the GNU Project. GNU developed many of the
tools, including the C compiler, that are part of the Linux operating
system.
Linux is the name of the operating system kernel developed by Linus
Torvalds, which has since been expanded and improved by thousands of
people on the Internet.
Torvalds’s kernel and GNU’s tools work together as the Linux operating
system.
What is a utility program?
A utility (program), sometimes referred to as a command, performs a task
that is frequently related to the operating system. A utility is simpler than
an application program, although there is no clear line separating the two.
Linux distributions, such as Red Hat Linux, include many utilities. You
can also download many utilities from the Internet.
Examples of utilities are cp (copies a file), ls (lists information about files),
ssh (securely connects to a remote computer), and df (lists information
about free space on system devices such as hard disks).
How can you use utility programs and a shell to create your own
applications?
You can write a shell script, also called a shell program, or a batch file
under DOS. A shell script is one or more command lines contained in a
file. Make the file executable and give the name of the file as a command.
The shell then executes the commands in the file as though you had typed
each command individually. (You may need to give the command as
./command.)
What is the difference between a multiprocessor and a multiprocessing system?
Multiprocessor (having more than one processor) refers to a system with
two or more processors or CPUs.
Multiprocessing (supporting multiple processes) refers to a system that can
process one or more tasks at a time.
Approximately how many people wrote Linux? Why is this unique?
Many thousands of people have contributed to the Linux operating system
using the Internet. This project is unique because a project of this
magnitude, using free software, had never been attempted before.
What is Free software List 3 characteristics
You are Free to Study it, redistribute it and modify it.
What are Multiuser Systems, Why are they successful.
Systems that allow the users to use all of the systems resources at the same time.

The use of costly resources can be maximized and the cost per user can be minimized. **ITS CHEAP**
In what language is Linux written? Why is that important?
C, C is a higher level portable language and is machine independent.
What is a shell?
the shell—the command interpreter—acts as an interface
between you and the operating system
How does a shell work with the kernel?
The shell interprets the command and calls the program you want.
GNU Project was Started when and by Who?
Richard Stallman 1983
Who created Linux?
Linus Torvalds
Why is Linux File system referred to as Hierarchical.
Each user has one home directory and then as many sub directories as needed.
Why would you want to use a multiprocessing system?
It allows you to be more efficient and productive because you can do multiple jobs at the same time.
What are the key terms of the GNU public Liscense?
You have the right to copy, modify and redistribute the code.
How does the shell work with the user?
Provides the user with access to hundreds of utilities, a programming language and job control.