Module 3 day 2: supplemental reading for mobile device storage through supplemental reading for windows package dependencies Flashcards
what is often limited on mobile devices?
storage space
what is a best practice for space on mobile devices before installing new apps or saving new files?
Ensure that there is sufficient space on a mobile device
on a mobile device, what should the first troubleshooting step for an installation or saving problem be?
Check if there is enough storage space for the install or save. Mobile devices can experience unusual problems when space runs low, and sometimes there is no error message.
what is something that can fill up the last bit of storage space and cause unusual performance problems on a mobile device? a way that limitations can be reached without the user intentionally adding programs or files.
automatically generated temporary cache files can fill up the storage face
What can you do to free up space for new items? what can you delete?
delete unused or rarely used apps and files
what should users use instead of storing the files locally on the mobile device. To prevent loss, protect files.
use cloud storage for photos, videos, other.
but mobile device operating systems automatically analyze how much space apps occupying storage?
iOS and iPadOS.
with Apple, where can you see how much storage is available?
through device settings menu, on iTunes, or through a computer with a connection to the mobile devic.
What can you do to Apple mobile devices to configure them to preserve space?
configure them to free up space automatically when they are low on storage space. The device will select files that can be downloaded again if needed for removal.
what will apple devices remove if they need to free up space?
files that can be reinstalled again as needed. could be caches, local copies of a file that is stored on the cloud, streamed videos and music, and temp files.
what will Apple devices do, or rather what should they do, when storage space is almost full to give the user an opportunity to select specific apps and files for removal?
generate an alert.
how to check storage space available on iPhones and iPads
Navigate to Settings > General > iPhone Storage or iPad Storage.
The first item on the Storage screen should be a visual indicator of how much storage space has been used out of the total storage space available on the device. It might be color coded to delineate which types of items are occupying the used storage space, such as apps, messages, media, system data, etc.
Check the RECOMMENDATIONS section near the top of the screen (if available). This section might suggest automatically deleting messages that are over a year old or automatically uninstalling unused apps when space is running low. Be sure to investigate the suggested items for deletion to ensure that the items will not be missed before clicking Enable.
Review the next section, which lists the apps installed on the device. The file size and date last used will be listed for each app. If you open the detailed view for an app, you might see options like:
Offload the app - Removes the app only, but keeps app data and documents.
Delete the app - Removes the app, its data, and related documents.
Select the best option that suits the device user’s needs.
Move any photos, videos, and other user-created files to iCloud storage and remove the copy stored on the device’s storage space.
What type of mobile OS allows manufacturers to change the OS configuration?
open operating system, open OS
Where should most versions of Android have Storage listed?
immediately under settings, unless it is Samsung, which puts it under either Device Maintenance or Device Care
What do you do if you can’t get Android device settings easily?
check manufacturer’s manual
How to navigate storage for Android
Navigate to Settings > Storage
The Storage screen may display a visual indicator illustrating how much storage space has been used out of the total storage space available on the device. Like Apple devices, the graphic might be color coded to indicate which types of USER DATA are occupying the used storage space, such as images, videos, audio, documents, apps, etc.
Click the CLEAN UP button under the graphic (if available).
A new window should open to show a list of items that Android has analyzed and RECOMMENDED FOR CLEANUP. Next to each item may be a button labeled CLEAN UP. Scroll down to the bottom of the list to find the SPECIAL CLEANUPS section.
For some items, like Junk Files, clicking the CLEAN UP button will automatically remove the files.
For other items, like Images or Videos, clicking the CLEAN UP button will give the user a checklist of specific items to select for removal. Be sure to investigate the suggested items for deletion to ensure that the items will not be missed by the user.
what is comprised of one or more files that is compressed into a single file?
an archive
what are the core or source software files compressed into one file?
package archives
what is referred to as installing from source?
installing software from a source archive
what are .tar, .zip, and .rar examples of?
archive types
what must you first do when you install software from an archive?
first extract the contents of the archive so you can see the files inside.
What does the installation of archive files depend on?
the type of code it was written in
What can be archived?
anything. pictures, software, music files.
what have lots of different ways they can be extracted?
archive types
what is used for file archiving and unarchiving in Windows?
7-zip
How do you use 7-zip in the gui?
you move the cursor to the file in the file explorer, right click, select 7-zip, and extract here.
what file extraction tool is open source?
7-zip
how do you make a new zipped or archived folder? in the gui in file explorer
make a new file, name it, add files that you want to put in it into it by dragging and dropping them, right click the folder, 7-zip, add to archive, and it’ll make a new zipped folder for you.
how can you send a bunch of files over email?
combine them in one archive and send one single zipped file instead of many individual files.
what version of PowerShell can extract and compress archives from the command line?
version 5.0 or greater
what is the command for compressing an archive?
Compress-Archive
What is the format for making a zip file in PowerShell? take everything from the oldfoldername directory and compress it into the archivename.zip
Compress-Archive -Path C:\Users\home\oldirectoryname\oldfoldername\ ~\Newdirectoryname\archivename.zip
what does teh Compress-Archive cmdlet ignore when creating or updating the archive file?
hidden files and folders.
what is also available to use in Linux?
7-zip
what is the Linux version of 7-zip?
p7-zip-full
what happens when you use the command 7z and the flag e, and then the file you want to extract?
you extract a file using 7zip. e for extract.
how would you extract the myarchive.tar folder in linux?
7z e myarchive.tar
what tool do lots of people use in Linux to extract zip files, which is often already installed on most linux distros?
the tar command
what might different archive types require in linux?
different commands in order to extract
what is tar short for in linux?
tape archive
what is a single file that contains any number of individual files plus information to allow them to be restored to their original form by one or more extraction programs?
archive
what are convenient for storing files as well as for transmitting data and distributing programs?
archive files
what is tar’s basic syntax?
tar option(s) archivename filename(s)
what was originally designed for backups on magnetic tape?
tar
what are archives created with tar referred to as?
tarballs
what does tar not do?
compression
what does tar require the use of?
one or more options, unlike many other commands
what do the -c and -f options do with tar?
create tar files. former: tar make archive. latter: the next argument will be the name of the new archive file
what will tar -cf do?
make an archive, and then the next argument, or piece of data in the command, will be the name of the new archive file.
what will the command
tar -cf file.tar file1 file2 file3
do?
make an archive file called file.tar out of the three files, file1, file2, file3, in your current directory
is it necessary for the new file to have the .tar extension?
no
why is the .tar extension useful?
it allows the type of file to be visually identified.
what must be the last option used after .tar?
-f, or else the system will not understand the file name.
what option with tar will display a list of the files that are included in the archive?
-v
how can you use tar to make archives from the contents of one or more directories?
the result is recursive, and includes all objects in the directories, in each level.
ex:
tar -cvf dir.tar dir1 dir2
how can you use tar with a wildcard to make an archive of every object in the current directory?
tar -cf *