1/27
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
1.6 Windows 10 Control Panel Utility
Internet Option
Configure default Internet browser options.
Device and printers
Add, remove and administer printers, scanners, cameras and other devices.
Program and features
reinstall, uninstall programs and windows features
Network and sharing center
check and administer nic
System
check computer specifications, rename computer, join domain workgroup.
1.6 Windows 10 Control Panel Utility
Window Defender firewall
check and change firewall setting, Can open ports
add, remove, or repair mailboxes. Mostly used by Microsoft Outlook
Sound
use to setup speaker or mics on a computer
User Accounts
use to change, add, or remove local user accounts
1.6 Windows 10 Control Panel Utility
Device Manager
check if devices are functioning correctly (update or rollback drivers)
Indexing options
check what is being indexed on a system
Administrative Tools
set of commonly used utilities to manage the system
Ease of Access
make the system easier to use for persons with disabilities
File explorer options
show hidden files
Hide extensions
General options
View options
1.6 Windows 10 Control Panel Utility
Power options
hibernate (copies everything in the computers RAM and stores it in HDD/SDD)
Power plans
Sleep/suspend (goes into a lower power saver mode that keeps the RAM/machine running at a very low power saving mode)
Standby
Choosing what closing the lid does
Turn on fast startup
USB selective suspend
1.7 Workgroup vs Domain
Workgroup
decentralized setup used in SOHO
Uses local user accounts
No central server for computer or user management
Simple to setup with no additional server software needed
Ex: sharing files with family
1.7 Workgroup vs Domain
Domain
centralized setup used in small-large businesses
User accounts are managed on a central server called Domain Controllers
Computer configuration and security setting are set on a central server
Need to setup a server (Windows Server) , more expensive
Group policy = settings on server that get pushed out
1.7 Workgroup vs Domain
Shared resources
folder and devices shared on a network
Printers
printers shared on a network
File servers
shares a folder for other computers to access
Maples drives
allows a shared folder on another computer to act as a drive on a system
1.7 Firewall settings
blocks all incoming traffic
Allows all outgoing traffic
Configure and manage with rules
Will need to make an exception to allow certain traffic such as FTP though the firewall
1.7 Client network configuration
Internet Protocol (IP) addressing scheme
assign by the network administrator
e.g., 192.168.10.10
Domain name system settings
assign by the network administrator
E.g., 1.1.1.1 (cloud are DNS server)
Subnet Mask
assign by the network administrator
E.g., 255.255.255.0
Gateway
assign by the network administrator
E.g., 192.168.10.1
Static vs dynamic
assign by the network administrator
Static is manually typed in vs dynamic is assigned by DHCP server
1.7 network connections
Establish network connections
VPN
allows you to access a remote network over the Internet
Wireless
connects to a local network using a wireless connection
Wired
connects to a local network using an Ethernet cable
WWAN
Internet access using a wireless connections
1.7 network connections
Proxy settings
a server used to control and monitor Internet access
Configuration is given by the administrator
Public network vs Private Network
when connecting to a network you will select either settings
Public will offer more protection while private will allow shares and discovery of the computers
File explorer navigation—network paths
allows you to map a network drive from file explorer
Metered connections and limitations
limits the amount of data that can be sent and received on an interface
1.8 Installing software in macOS
.pkg files are compressed files used to install a macOS application
.dmg files are Apple disk images often used to store compressed software installers
.app files are installed applications
1.8 macOS Best Practices
Backups
as often as data is changing
Antivirus
should have 3rd party antivirus
Updates/patches
install updates as Apple releases them
1.8 System preferences
Same as windows
Time Machine
backup mechanism of macOS
1.8 Features
Multiple desktops
use Mission Control to create additional desktops, called spaces, to organize the windows
Mission Control
view and manage all open application windows
Keychain
stores passwords and account information
Spotlight
find items on your Mac, like apps, files, and emails
1.8 Features
iCloud
backup and synchronize phonies, files, backups and more across all your devices
Gestures
Apple trackpad or Magic Mouse with your Mac, you can use gestures (click, tap, pinch swipe)
Finder
default file manager and graphical user interface used on all
Remote disc
allows the Mac user access to CD or DVD disc loaded into a separate computer
Dock
convenient place to access apps and features you’re likely to use everyday
1.8 Features
Disk utility
can be used to store partition and initialize storage devices
Also can be used to access first aid which can repair permissions and recover corrupted files
FileVault
disk encryption program
Terminal
Unix command line for MacOS
Force Quit
press the three keys together: Option, Command, and Esc (Escape) or
Choose force quit from the Apple menu in the corner of your screen
1.9 Installing software in Linux
Linux distros includes a Package Manager to install abs update applications
Application can also be installed from other sources like a vendor’s website
Tools
Shell/terminal
configure from a command line
Samba
Is a free software implementation of the CIFS/SMB networking protocols that supports Microsoft Windows server Domain, Active Directory, and Microsoft Windows NT Domain
With Samba, unix-like OSs can interoperate with windows and provided file and print services to Windows clients.
1.8 Linux commands
man: display help for commands
ls: list files in a directory
mv: move or rename a file
cp: copy a file
rm: remove a file
mkdir: create a new folder
df: display free storage
ps: display a list of running processes
top: displays running processes and resource usage
find: search for text in files in a directory
grep: search with regular expression
dig: troubleshoot DNS
cat: displays the contents of a file
nano: text editor
pwd: set or change a password
ip: displays and configure a NIC
1.9 Installing Software in Linux via Command Line
Advanced Packaging Tool (APT) is a command line utility used to install, uninstall, and upgrade applications in Debian-based distributions like Ubuntu
apt- get update is used to update the version list on installed applications
apt- get upgrade is used to install the latest version of installed applications
apt- get install is used to install a new application
Ex: apt- get install chromium-browser
apt- get remove is used to uninstall an application
Ex: apt- get remove chromium-browser
The Yellowdog Updater, modified (YUM) is a free and open-source command-line package-management utility for computers running RedHat-based distributions like Cent-OS
1.9 Ownership in Linux and macOS
Linux and macOS both share origins with another OS known as UNIX, because of this they have many similarities when it comes to controlling file access
chown is used to change the owner and group of a file Syntax:
chown user:group file
chown juan: instructors
class_presentation
This command changes the owner to juan and the group to instructors
chown andrew class_presentation
this command just changes the owner to Andrew
1.9 Ownership in Linux and macOS
chmod is uses to change the permissions of a file or folder
Owner/Group/Everyone
Owner permissions apply to the original file creator
Group permissions apply to the group of accounts that have been given access
Everyone permissions apply to all accounts….everyone
1.9 Ownership in Linux and macOS
Read/Write/Execute are the different permissions that can be granted to a user or a group of users
Read ( r ) +4 permission allows someone to view the contents of a file
Write ( w ) +2 permission allows someone to save change to a file
Execute ( x ) +1 permission allows someone to execute programs or scripts
To assign full permissions you assign read + write + execute or 4 + 2 + 1 =7
To assign just read and write you use 4 + 2 = 6
chmod 764 class_presentation or chmod u + rwx, g + rw, a + r
^sets owner to have full permissions, the group to have read and write, and everyone to just have read.
1.10 Installing applications 32 bit vs 64 bit requirements
64-bit processor can handle large amounts of RAM
32-bit can only used about 4GB of RAM
64 bit can use 16 exabytes of RAM
64-bit will require a 64-bit processor and OS
64-but can run on a 32-bit application but not vice versatility
1.10 Requirements when installing applications
Dedicated graphics card vs integrated
some applications will require more higher end graphics to run such as games
Video random access memory (VRAM) requirements
memory card build into the graphics card
1.10 Requirements when installing applications
RAM requirements
check RAM requirements before purchasing the application
CPU requirements
check the CPU requirements before purchasing the application
External hardware tokens
USB stick to access application
1.10 distribution methods
Physical media vs downloadable
physical uses DVD OR USBs
Downloadable are EXE files downloadable from a site
ISO mountable
an image of a disk
Single file that stores all the necessary files for the application
Considerations for applications
impact to device
Impact to network
Impact to operation
Impact to business