Linux Final Chapter 1

Your page rank:

Total word count: 1890
Pages: 7

Calculate the Price

- -
275 words
Looking for Expert Opinion?
Let us have a look at your work and suggest how to improve it!
Get a Consultant

You have an executable file named ni that allows you to save a snapshot of your network information with the date and time into a log file. The file is in the /root directory, and the /root is the current working directory. How would you run the executable file? (select two.)

./ni and /root/ni

Which of the following options is the standard shell for most Linux computers

Bourne-again shell (bash)

What would you enter at the command prompt to start a new Bourne-again shell (bash) session?

bash

What command should you enter to see a list of all the commands you recently used at the command prompt?

history

You have the myapp executable file. It is found in the current directory, but not in the command path. What would you enter at the command prompt to start the myapp file and replace the shell with myapp process?

exec ./myapp

What is the result of the uname -a command?

All system information is displayed on the screen

What would you enter at the command prompt to display the present working directory?

pwd

Which of the following commands could you use to search man pages for a specific keyword?

apropos, whatis, man -k

You are working on a Linux system and need more information about the uname command. What would you enter at the command prompt to learn about the uname command syntax and options?

uname –help

What command can be used on most Linux distributions to find the directories where the man pages are kept?

echo $MANPATH

Following is a lost of the four sections typically found in a man page. Which of these shows a list of options available for a Linux command and explain what the options do?

DESCRIPTION

If you are viewing the contents of a man page, which key can you press to get back to the beginning of the page?

Home

Which of the following commands will create a shortcut to the tail -f /var/log/messages command?

Alias sysmesg="tail -f /var/log/messages"

Which command will display a list of the currently defined aliases on the system?

alias

What commonly predefined alias is configured to run the ls -l command?

||

You must do which of the following to define a persistent alias?

Add the command defining the alias to the appropriate shell configuration file.

The user mbrown has a directory named logs in her home directory that is regularly updated with new log files when certain systems events occur. She runs the following commands several times a week to check this directory:
– cd /home/mbrown/logs
– ls -al
She wants a persistent alias named logcheck to be created to run these two commands.
What command would you enter into her shell configuration file to create this persistent
Alias?

Alias logcheck="cd /home/mbrown/logs;ls -al"

You need to set the COMP variable to the value 1745. Which command will set the variable so it is available to other shell programs?

export COMP to 1745

Two users should have identical settings, yet one is having problems with the display on his screen and you suspect there is a difference in their environment variable. Which command will display all the environment variables?

env

Which of the following statements best describes the PATH environment variable?

It contains the directory prefixes used to search for programs and files.

You want the directory /sbin/special to always be a part of the PATH. You also want to keep all the current entries in your PATH statement. Which of the following commands would you use?

PATH=$PATH:/sbin/special

What line must you add to /etc/profile to make sure /sbin/custom is always part of the PATH environment variable for all users, without overwriting the current entries in the PATH statement?

PATH=$PATH:/sbin/custom; export PATH

Which command shows the value of the LANG environmental variable currently set for the language the operating system uses?

echo $LANG

You want to view the number of commands your HISTSIZE environment variable is set to save. You don’t want to have to scroll through all the environment variables. Which command shows you the value for the HISTSIZE variable?

echo $HISTSIZE

Which of the following presents the greatest security risk?

The PATH statement includes . (period)

Which command will display all the environment variables on the system?

set

Which command will display only the environment variables applied to child sessions?

env

You recently used the HOST=FS4 command. What command should you use to make the environment variable to apply to all child sessions?

export HOST

Which environment variable affects the number of past commands used in the current shell session?

HISTSIZE

Which of the following commands will configure the shell to retain 300 recently used commands in the ~/.bash_history file for multiple shell sessions?

HISTFILESIZE=300

All users at your site are using the Bash shell. You want to set a variable that will apply to every user and always have the same value. Which file would you place this variable in?

/etc/profile

A user is requesting that each time she logs in, a particular entry be written to a log file. This will only apply to her and she is using the Bash shell. In which configuration file would you make an entry for this action to take place?

.profile

Which of the following files would you use to create aliases that are applied when a specific user starts a BASH session? (select two)

~/.profile and ~/.bashrc

After a user starts a BASH session and the scripts in /etc/profile are applied, what is the next file that could affect the shell session?

~/.bash_profile

Your default target on your Linux system is set to multi-user mode; however, you want the X Windows System to launch when you log into the system. Which file should you edit?

~/.bash_login

You are trying to debug a shell script called myscript and to aid you in this task you would like to have output of the script be recorded in a text file. Which of the following commands would satisfy your requirements?

myscript >>testfile.txt

What will be the effect of the following command? ls -l /usr/bin >> /tmp/list.txt

The contents of the /usr/bin directory will be redirected into a file called /tmp/list.txt, inserted after previous contents of the file.

You are trying to debug a shell script that has the command ls -s in it. You suspect an error is occuring here and want to send the results of the operation (success or error) to a file named Friday in order to examine it later. Which of the following commands should you use?

ls -s> Friday 2>&1

Which of the following commands will give the same results as cat < turbo?

cat turbo

Which of the following commands sorts the contents of wordlist1 and wordlist2 and sends the result to standard output?

cat /usr/wordlist1 /usr/wordlist2 | sort

Which symbol uses the output of one command as the input of another command?

|

Which command reads from standard input and writes to standard output and files?

tee

Which of the following commands displays the contents of wordlist1 and wordlist2 then sorts the combined contents, then sends the results to the monitor and a file named sortedwordlist?

cat /usr/wordlist1 /usr/wordlist2 | sort | tee sortedwordlist

Which command overcomes the 128 KB shell command size restriction by breaking up long lists of arguments?

xargs

Which of the following commands redirects standard output to standard error?

cat txtfile 1>&2

You need to create the directory /var/oracle/database/9i. Only the directory /var currently exists. From the root of the filesystem, which command will create the directory path?

mkdir -p /var/oracle/database/9i

In the /var directory is a subdirectory called backup. You need to delete the directory backup and any files. You change directory focus to /var. Which command will delete the directory backup and its files?

rm -rf backup

You need to make an expanded listing of all the files in /etc. Which command will produce the listing?

ls -al /etc

You need to view the contents of the /home/jerrys directory. What would you enter at the command prompt to show all the contents, including hidden files and directories?

ls -al /home/jerrys

Which of the following command copies the entire /temp directory with all of its files, sub-directories, and files in the sub-directories to the /home/gshant directory. (Select two)

cp -R /temp /home/gshant and cp -r /temp /home/gshant

The /home/gshant/smp directory is empty and needs to be removed. You change directories to /home/gshant. What would you enter at the command prompt to remove the smp directory?

rmdir smp

The /home/gshant/smp directory contains several files. The directory and files need to be removed. You change directories to /home/gshant. What would you enter at the command prompt to remove the smp directory and the files it contains?

rm -r smp

Which of the following commands combines three files into a single text stream?

cat

You are logged in as root. You have the file, letter.doc, on a CD in the first compact disk drive. Which command will copy the file from the CD to your home directory.

cp /mnt/scd0/letter.doc /root

Which command would you use to rename the /home/pmallory/reports file to reports.bak?

mv /home/pmallory/reports /home/pmallory/reports.bak

Which command would you use to move a file from one location to another?

mv

Which command prints the attributes of a /boot/grub/grub.conf file?

lsattr /boot/grub/grub.conf

Which of the following commands will change the /home/gshants/smile file’s modification and last accessed times to the current time?

touch /home/gshants/smile

What would you enter at the command prompt to display a file’s type?

file

You want to view the contents of a directory, but the output of the ls -l command scrolls beyond the limit of one console window. Which of the following commands would allow you to see the full listing of the directory?

ls -l | less

Which of the following would be the result of the command ln -b ~/file1 /data/file1?

A copy of the file ~/file1 would be replaced in /data.

You previously created symbolic links in your home directory to a set of files in the /data directory using the ln -s command. The system admin has just deleted those files. What happens to the links that you created?

The symbolic links would still exist in your home directory but they would now be broken.

Drag the permission string on the left to the category on the right.

Symbolic Link: lrwxrwxrwx Hard Link: -rwxr-xr-x

Which of the following is not a characteristic of symbolic links?

Valid inode for the file data even if the original file is deleted.

Which of the following is not a characteristic of hard links?

Distinct inode

After using the ls command in the current working directory, you notice the following files:

lrwxrwxrwx 1 root root 4 2010-11-05 myfile – > shantsgems

-rwxr-xr-x 1 root root 382 2010-10-05 shantsgems

What is true about the files?

myfile is a symbolic link to shantsgems

Share This
Flashcard

More flashcards like this

NCLEX 10000 Integumentary Disorders

When assessing a client with partial-thickness burns over 60% of the body, which finding should the nurse report immediately? a) ...

Read more

NCLEX 300-NEURO

A client with amyotrophic lateral sclerosis (ALS) tells the nurse, "Sometimes I feel so frustrated. I can’t do anything without ...

Read more

NASM Flashcards

Which of the following is the process of getting oxygen from the environment to the tissues of the body? Diffusion ...

Read more

Unfinished tasks keep piling up?

Let us complete them for you. Quickly and professionally.

Check Price

Successful message
sending