• 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/49

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;

49 Cards in this Set

  • Front
  • Back
Open Source Software (OSS) is freely developed and continuously improved by a large community of software development
True
Linux is merely one product of open source development
True
The term hacker refers to someone who illegally uses computers for personal benefit or to cause damage
True
Software that consist of a series of software components used to control the hardware of your computer is known as application software
False
Services that are used on the local computer are referred to as server serviecs
False
A(n) __________ is a piece of software that tells the operating system how to use a specific hardware device.
Device driver
The _________ stipulates that the source code of any software published under its license must be freely available.
GNU General Public License
Solaris, HP-UX and AIX are all ______ of Unix.
Flavors
A _____ is merely a compressed archive of files that usually contain scripts that install the software contents to the correct location of the system.
tarball
A production kernel refers to a kernel whose:
minor number is even
Many types of software are available today. Which type of software does Linux represent?
Open Source Software
It is important to ensure that a computer meets the maximum hardware requirements before performing an installation
False
System Rescue can be use to repair a Linux system that cannot be started.
True
A swap partition contains a file system
False
In Linux, the administrator account is called top
false
Linux requires a minimum of three partitions to be created
False
During Linux installation, you need to configure a minimum of ____ user account
two
Hard disks can contain a maximum of _____ major partitions
4
The ____ file system is compatible with Windows FAT file system
VFAT
The shell that is used by default in Linux is the _____ shell.
BASH
______ are specific letters that start with a dash ("-")
Options
Can you have more than four SCSI hard disks within a system.
Yes
Do all commands have either man pages or info pages?
No
What equivalent to the man command generally provides an easier-to-read description of the queried command and also contains links to other related information?
info
What command can use to safely shut down the Linux system immediately?
halt
How can you protect a metacharacter (such as the $ character) from shell interpretation?
Preccede is with a \.
Which prompt does the root user receive when logged in to the system?
#
Linux uses a logical directory tree to organize files into different folders.
True
It is acceptable to use shell metacharacters when naming files.
False
Files names can include up to 200 characters.
False
The Three characters following a period in a file name are referred to as the file extension
True
When you first open the vi editor, you are placed in edit mode.
False
The _____ command will confirm the system directory that you are currently in.
pwd
the ____ metacharacte can also be used to refer to the current user's home directort
~
To move from the /home/jot/test/ data to the /home/joe directory, use the ____ command
cd ../..
The ____ command can be used to provide a long listing for each file in a certain directory.
ls -l
Using wildcard metacharacters, how can one indicate a number is either 1,2,3, or 4
[1-4]
Which of the following is an absolute pathname?
/home/resume
If a user's current directory is /home/mary/project1, which command could she use to move to the etc directory under the root
cd /etc
After typing the ls -F command, you notice a filename that ends with an * asterisk character? What does it mean.
It is an executable file
You can use wildcard metacharacters with the find command.
True
The SGID allows regular users to execute a binary compiled program and become a member of a group that is attached to the file.
True
In the FHS, the ____ directory contains most system commands and utilities.
/bin
The ____ command takes a list of arguments specifying the absolute or relative pathnames of files to remove.
rm
The ____ section of a file system is the section that contains information about the file system in general.
Superblock
To create a hard link, you must use the _____ command
ln
When using the chmod command for a specific file, the ____ argument would add read permission and remove write permission for the group permissions.
g+r-w
Do symbolic links share the same inode and inode number?
No
Which of the following commands will change the user ownership and group ownership of file 1 to user1 and root respectively
Chown user1:root file 1