Questão 1
Questão
What kind of hardware is represented by the device name /dev/hda?
Responda
-
IDE Hard Drive
-
SCSI Hard Drive
-
SATA Hard Drive
-
Sound Card
Questão 2
Questão
What file should you query to determine whether there is an IRQ conflict on your system?
Responda
-
/proc/interrupts
-
/proc/cpuinfo
-
/proc/meminfo
-
/proc/irqstatus
Questão 3
Questão
Which of the following are arguments you can pass to the kernel at boot time
to tell it to start in runlevel 1 (single-user mode)? (Select two)
Questão 4
Questão
Which process is referred to as the “mother of all processes” and always has PID 1?
Responda
-
init
-
mother
-
admin
-
administrator
Questão 5
Questão
Which logfile should you examine for information about the hardware that the kernel initialized at boot time?
Responda
-
/var/log/messages
-
/var/log/lastlog
-
/var/log/wtmp
-
/var/log/cron
Questão 6
Questão
If you want to change your system’s default boot device from the hard drive to the CD-ROM drive, where would you make that configuration change?
Questão 7
Questão
What command line would reboot a running Linux system immediately, forcing an fsck of every drive on reboot?
Responda
-
/sbin/shutdown –r –F now
-
/sbin/shutdown –h –F now
-
/sbin/shutdown
-
/sbin/shutdown –r –f now
Questão 8
Questão
Which of the following are valid ways to interactively switch a running system to runlevel 3? (Select two)
Responda
-
init 3
-
telinit 3
-
runlevel 3
-
init -3
Questão 9
Questão
If you have created your own script that you wish to run every time your system boots, but it must run after all other processes have completed, where is the best place to reference it?
Questão 10
Questão
Which command is used to display the current mounted partitions, their mount points, and the available free space on each?
Questão 11
Questão
Which partition is designed to hold data that changes often and is writable by all users?
Questão 12
Questão
What does MBR stand for?
Responda
-
Master Boot Record
-
Main Booting Runlevel
-
Main Block Record
-
Master Boot Resource
Questão 13
Questão
Which of the following lines in /boot/grub/grub.conf would tell GRUB to use the first partition of the first hard drive as the root partition?
Responda
-
root (hd0,0)
-
boot (hd0,0)
-
root (hd1,1)
-
boot (hd1,1)
Questão 14
Questão
What file contains a list of directories that are searched to find shared libraries when a binary program is executed?
Responda
-
/etc/ld.so.conf
-
/etc/loader.conf
-
/etc/library/conf
-
/etc/ld.so.cache
Questão 15
Questão
For distributions that use the Debian package management system, what command will download and update all installed packages to the latest available version?
Responda
-
apt-get update
-
apt-get install
-
apt-cache update
-
dpkg –i
Questão 16
Questão
If I download a .deb package (package.deb) and wish to install it, what’s the best command to use?
Questão 17
Questão
For distributions that use the Red Hat package management system, what command will list all packages currently installed?
Responda
-
rpm –qa
-
rpm –i
-
rpm –Uvh
-
rpm –list
Questão 18
Questão
For distributions that use the Red Hat package management system, what command will download and update all installed packages to the latest available version?
Responda
-
yum update
-
yum install
-
yum config
-
yum list available
Questão 19
Questão
What option(s) to rpm will instruct rpm to run a verification check on all packages installed on the system? (Select two)
Responda
-
rpm –verify –all
-
rpm –Va
-
rpm –qa
-
rpm –check
Questão 20
Questão
What command is used to display a list of directories the shell will search in to find a command that has been entered?
Responda
-
echo $PATH
-
echo $MYPATH
-
setenv
-
set $PATH
Questão 21
Questão
Which file(s) does the bash shell read at login to set environment variables?
Responda
-
All of the above
-
/etc/bashrc
-
~/.bashrc
-
None of the above
Questão 22
Questão
What commands can be used to view a list of the last commands typed into the shell?
Responda
-
All of the above
-
history
-
<Ctrl-R>
-
<up arrow>
Questão 23
Questão
If my current directory is /opt and I wish to run the command /opt/runme, what
command(s) could I type (assuming /opt is not in your $PATH)? (select two)
Responda
-
/opt/runme
-
/runme
-
opt/runme
-
~/runme
Questão 24
Questão
Which of the following commands will redirect the standard output of /bin/ls to /dev/null, while allowing standard error to display on the screen?
Questão 25
Questão
Which of the following command(s) will display the first 5 lines of the file /etc/passwd? (Select two)
Questão 26
Questão
Which commands can be used to perform a search and replace on a file or a text stream? (Select two)
Questão 27
Questão
What command(s) can be used to copy data to and from raw devices, bypassing the filesystem? (Select two)
Questão 28
Questão
What option can be passed to /bin/ls to display every file in a directory that ends in .txt?
Responda
-
ls * txt
-
ls *txt*
-
ls [txt]
-
ls +.txt
Questão 29
Questão
What option can be passed to /bin/ls to display every file that starts with the letters a, b, or c?
Responda
-
ls [abc]*
-
ls abc*
-
ls a*b*c*
-
ls ^abc
Questão 30
Questão
Which file extensions are common for files or directories that have been concatenated with tar and then compressed with bzip2?
Responda
-
All of the above
-
.tar.bz2
-
.tbz2
-
.tbz
Questão 31
Questão
What device should you redirect output to if you do not want to see it or save it?
Responda
-
/dev/null
-
/dev/nothing
-
/dev/empty
-
/dev/zero
Questão 32
Questão
Which of the following commands would list the contents of the directory /tmp, store that list in the file /root/tmp.txt, and display the list a screen at a time?
Responda
-
ls –l /tmp | tee /root/tmp.txt | more
-
ls –l /tmp | xargs /root/tmp.txt | more
-
ls –l /tmp | more | tee /root/tmp.txt
-
tee /root/tmp.txt | ls –l /tmp | more
Questão 33
Questão
What character is used after a command line to indicate that the command should run in the background and return shell control to the user?
Questão 34
Questão
What command is used at the beginning of a command line to detach the process from a terminal, allowing it to continue running after the user has logged out?
Responda
-
nohup
-
hangup
-
detach
-
background
Questão 35
Questão
What command will display a full-screen, updated list of all running processes?
Questão 36
Questão
If a running process is not responding to a standard terminate signal from the /bin/kill command, what option can you pass to force the process to terminate immediately?
Responda
-
kill -9
-
kill -1
-
kill --HUP
-
kill --stop
Questão 37
Questão
What command can be used to kill processes by name, rather than process ID?
Responda
-
killall
-
killproc
-
killname
-
kill –name
Questão 38
Questão
Which command line would start the program /usr/bin/top with the highest priority possible?
Responda
-
nice --20 /usr/bin/top
-
nice 20 /usr/bin/top
-
nice 19 /usr/bin/top
-
nice -20 /usr/bin/top
Questão 39
Questão
Which command is used to modify the priority of a process already running?
Questão 40
Questão
Which command(s) would display every line in /tmp/file.txt that begins with the letter h and ends with the letter t?
Responda
-
grep –E "^h.*t$" /tmp/file.txt
-
grep "^h.+t$" /tmp/file.txt
-
grep –E "^h.+t$" /tmp/file.txt
-
grep –E "$h.+t^" /tmp/file.txt
Questão 41
Questão
Which command(s) would display every line in /tmp/file.txt that contains at least one letter of the alphabet? (Select Two)
Responda
-
grep " [a-zA-Z] " /tmp/file.txt
-
grep " [:alpha:] " /tmp/file.txt
-
grep " [:letters:] " /tmp/file.txt
-
grep " (a-zA-Z) " /tmp/file.txt
Questão 42
Questão
In the vi editor, what command sequence given in command mode will save the current file and quit the editor?
Responda
-
:wq
-
:WQ
-
:pq
-
None of the above
Questão 43
Questão
In the vi editor, what command sequence given in command mode will make a copy of the current line?
Questão 44
Questão
In the vi editor, what command sequence given in command mode will quit a file without saving, even if changes have been made?
Questão 45
Questão
Which of the following are examples of journaling filesystems? (Select two)
Questão 46
Questão
What command will create an ext3 partition on the first partition of the first SCSI hard drive?
Responda
-
mkfs –t ext3 /dev/sda1
-
fdisk –t ext3 /dev/sda1
-
fsck –t ext3 /dev/sda1
-
mkfs –s ext3 /dev/hda1
Questão 47
Questão
What command is used to convert an existing ext2 partition (/dev/sda1) to an ext3 (journaled) partition?
Responda
-
tune2fs –j /dev/sda1
-
dumpe2fs –j /dev/sda1
-
fsck –j /dev/sda1
-
mkfs.ext2 –j /dev/sda1
Questão 48
Questão
What command is used to display the number of free inodes on an ext2 or ext3 partition?
Responda
-
dumpe2fs
-
showe2fs
-
fsck
-
fdisk
Questão 49
Questão
Which file defines what partitions are mounted at boot time?
Responda
-
/etc/fstab
-
/etc/partitions
-
/etc/mount
-
/etc/mtab
Questão 50
Questão
Which command will mount all partitions of type nfs defined in /etc/fstab?
Responda
-
mount –a –t nfs
-
mount –a nfs –t
-
mount –nfs
-
mountall –nfs
Questão 51
Questão
If you would like to give a normal (nonroot) user the ability to mount a device, what option should you define for that device in /etc/fstab?
Questão 52
Questão
Which option to chmod would assign read/write permission to the file owner, read-only permission to the group owner, and read-only permission to everyone else?
Responda
-
chmod 644 file.txt
-
chmod 755 file.txt
-
chmod 466 file.txt
-
chmod 777 file.txt
Questão 53
Questão
Which option to umask would set my default file permissions such that files are created with these permissions: user has read/write, group has read/write, and everyone else has read only?
Responda
-
umask 022
-
umask 200
-
umask 220
-
umask 775
Questão 54
Questão
Which command can be used to quickly tell you if an executable command is in any directory defined in your $PATH environment variable?
Questão 55
Questão
Which directory, according to the Filesystem Hierarchy Standard, is designed to hold essential system binaries?
Responda
-
/sbin
-
/bin
-
/usr/bin
-
/opt/bin
Questão 56
Questão
According to the Filesystem Hierarchy Standard, what directory (or directories) must hold the system kernel? (Select Two)
Questão 57
Questão
What command is used to maintain the filesystem index that the command /usr/bin/locate searches?
Responda
-
updatedb
-
update
-
updatelocate
-
locate –update
Questão 58
Questão
Use find to search for bash:
Responda
-
$ find / -name bash
-
$ find / -linux bash
-
$ find / -time bash
-
$ find / -chown bash
Questão 59
Questão
If you created a new partition in the previous exercises, check it with fsck and observe the output:
Questão 60
Questão
Check on the status of filesystems using df:
Responda
-
$ df -h
-
$ df -w
-
$ df -z
-
$ df -gg