CompTIA Linux+ 2014 Powered By LPI: LX0-104 Security, Data, and Accessibility Flashcards
You want to set a memory limit for user bbyrne of 200000 MB. Complete the command to do this.
linuxoro0:~ # _____ 200000 bbyrne
ulimit -m
Which command do you use to display a new field with data in SQL?
A) MySQL
B) select
C) insert into
D) show columns
B) select
You want to group data returned from a select statement by state and count the numbers of customers in each state.
Complete the command to do this.
mysql> select state, _____ from customers group by state;
count(customers.customername)
You need to sort data returned from a select statement by customer name.
Complete the command to do this.
mysql> _____ from customers order by customername;
select customername
Which command do you use to display open files within a given subdirectory path?
A) lsof | more
B) lsof -D
C) lsof -u
D) fuser -v -n
B) lsof -D
You want to configure keyboard accessibility.
Click the System Settings icon that you use to access these settings.
Universal Access
You’ve been asked to create a report displaying all records and all fields from the employees table.
mysql> _____ employees;
select * from
There are various commands to identify users who have logged in or who are currently logged in to the system.
Match each command with what it does.
1) Verify which users last logged in to the machine
2) Identify which users have currently logged in to the system and from where
3) Display the IP address information
4) Display who is logged in to the system and identify what they are working on
A) who
B) last
C) last -i
D) w
1) B
2) A
3) C
4) D
There are various commands used to select data by joining two or more tables.
Match each command to a description of what it does.
1) Display the structure of the tables
2) Launch the MySQL database prompt
3) View the required tables
4) Use the database
A) show tables command
B) mysql command
C) show columns statement
D) use command
1) C
2) B
3) A
4) D
You are exporting the public key to a file on the root of the file system and specifying a delivery e-mail address using GnuPG.
linux-oroO:~ # _____ /dbyrne pubkey.gpg –export dbyrr.e@skillsoft.com
gpg –output
What are examples of features that can be configured using Orca Screen Reader?
A) Flash support
B) Speed the language is spoken at
C) Speed of web download
D) Language
E) Braille display
F) Screen magnifier
B) Speed the language is spoken at
D) Language
E) Braille display
F) Screen magnifier
You are exporting the public key to a file on the root of the file system and specifying a delivery e-mail address using GnuPG.
linux-oroO:~ # _____ /dbyrne pubkey.gpg –export dbyrr.e@skillsoft.com
gpg –output
You want to set the maximum password aging interval for user bbyrne to 60. Complete the command to do this.
linuxoro0:~ # _____ bbyrne
chage –maxdays 60
You want to generate an rsa-matching public and private key pair for the currently logged in user.
Complete the command to start this process.
root@debian:~# _____ -t rsa
ssh-keygen
You need to run graphical apps from a remote SSH server and have them display locally on this host.
root@debian:~# ______ root@192.168.1.106
ssh -X