Operating systems (8) Flashcards
What command-line utility can help identify what DNS server the computer relies on?
nslookup
netstat
ping
nslookup
The utility nslookup will query the DNS server the computer is currently configured to use. The utility can be used to perform a variety of DNS queries
In Linux, what is the name of the interpreter between the user and the operating system?
Terminal
GUI
Shell
Shell
The shell is the interpreter between the user and operating system. The most popular shell for Linux today is Bash (an acronym for Bourne Again Shell), but csh (C-shell), ksh (Korn shell), and a number of others are also in use. The terminal is used to enter commands and interface with the shell
A user types in her username and password into a workstation that is configured in a domain. Which type of server examines her information and determines whether she gets access to network resources?
Authentication server
Proxy server
File server
Authentication server
An authentication server is a device that examines the credentials of anyone trying to access the network, and it determines whether network access is granted. Said another way, they are gatekeepers and critical components to network security. A common term that you will hear in the Microsoft world is domain controller, which is a centralized authentication server
On your network, a few users have been accessing material on inappropriate websites. What type of server can you install to block content from a list of prohibited websites?
DNS server
Proxy server
Web server
Proxy server
A proxy server makes requests for resources on behalf of a client. Proxy servers are known for three things. One, the proxy server can cache the information requested, speeding up subsequent searches. Two, the proxy can act as a filter, blocking content from prohibited websites. Three, the proxy server can modify the requester’s information when passing it to the destination, blocking the sender’s identity and acting as a measure of security; the user can be made anonymous
Which type of server on a network is responsible for listening for inbound traffic on ports 80 and 443?
DNS server
Mail server
Web server
Web server
Whenever you visit a web page, you are making a connection from your device (the client) to a web server. To be more specific, a connection is requested by your Internet software (generally a web browser) using the Hypertext Transfer Protocol (HTTP) of the TCP/IP protocol suite. Your client needs to know the IP address of the web server, and it will make the request on port 80. Secure web connections are made using Hypertext Transfer Protocol Secure (HTTPS) and port 443
You are working on a Linux file server. Which command would you use to see the amount of free disk space on a volume?
fsck
df
du
df
The df (disk free) command is used to show free and used disk space on a volume. The du (disk usage) command is used to show disk usage per directory
In your web browser, you type www.google.com and press Enter. Which type of server identifies the owner of that name and tells your computer the IP address of the server you want to communicate with?
Proxy server
DHCP server
DNS server
DNS server
DNS has one function on the network, and that is to resolve hostnames to IP addresses. For a computer or phone to open a website, it needs to know the IP address of that website. The URL www.google.com means nothing to it. When a user enters the URL, the computer needs to figure out what the address is. The DNS server provides the answer, “That is 72.14.205.104.” Now that the computer knows the address of the website that the user wants, it’s able to go find it
You wish to create a script that maps a drive. What command allows you to map a network drive to either a computer name or IP address?
net user
net use
netstat
net use
Mapping a network drive can be done at the command prompt by using the net use command
Which piece of software on a mobile phone manages all wireless communication for the phone?
PRI
PRL
Baseband OS
Baseband OS
Most mobile phones have three operating systems. The first is the primary OS, such as iOS or Android. Second, there is the baseband OS that manages all wireless communication, which is actually handled by a separate processor. Third, a subscriber identity module (SIM) OS manages all data transfers between the phone and the SIM chip, which is a small memory chip that stores user account information, phone identification, and security data, and it is generally tied to a specific carrier. Some people will call the wireless communications chips in a mobile phone the radio or the modem. Consequently, you might hear about radio firmware, a radio firmware update, or a modem update. The last two terms are interchangeable with baseband update, which simply means an update of the baseband OS
You have a MacBook running MacOS Yosemite on your network. You want to create a backup of critical operating system files in case the system crashes and is unable to locate the hard drive. What should you create?
Recovery disk
Image
Snapshot
Recovery disk
Mac OS X Yosemite has the ability to create a recovery disk using the Recovery Disk Assistant. This can be used to boot the system in the event of a hard drive problem and to attempt to recover the hard drive
A user recently left the company, and you need to change ownership of his files on the Linux server to a new user. Which command should you use to do this?
chown
chmod
chperm
chown
The chown (change owner) command is used to change ownership of files in Linux
One of your network users has a MacBook Pro running OS X Yosemite. Where should this user go to see whether there are any OS updates available?
Open the App Store and click Updates in the toolbar.
Open Safari and click Updates in the toolbar.
Open System Preferences and click Updates in the toolbar.
Open the App Store and click Updates in the toolbar.
Updates to MacOS Yosemite can be found at the App Store. Open it, and click Updates in the toolbar to see which updates are available. There will be an Install button to begin the installation. In System Preferences, there is generally a Software Update icon to help with updates as well
Which two commands are used in Linux to check or modify network configuration settings? (Choose two.)
ipconfig
ifconfig
iwconfig
inconfig
ifconfig
iwconfig
The ifconfig command is used to view and change network settings, whereas iwconfig is used to view and change wireless network settings. The ipconfig command is used in Windows
You want to enable data synchronization for your iPhone. Which two statements are true regarding Wi-Fi synchronization? (Choose two.)
You must enable Sync over Wi-Fi within iTunes.
You can sync to iCloud only over Wi-Fi.
The iPhone should be plugged into a USB port.
The iPhone and computer must be on the same network SSID.
You must enable Sync over Wi-Fi within iTunes.
The iPhone and computer must be on the same network SSID.
There are two ways to sync an iPhone: using Wi-Fi and using a USB connection. If you are going to use Wi-Fi, it must first be enabled in iTunes. The device should not be plugged into a USB port because that will take precedence over the Wi-Fi connection. Both devices must be on the same network SSID
In Linux, the command to add a user is useradd. What is the equivalent command-line utility on a Microsoft Windows platform? (Choose two)
adduser
netadd user
net user
net users
net user
net users
Both the commands net user and net users will perform the function to add or remove a user account on a Microsoft Windows system