Skip to main content

How to Transfer Photos From a MacBook Hard Drive to an External Hard Drive

An external hard drive can be beneficial for backing up photos from a MacBook. If you have a large library of business photos, backing up the files not only creates additional copies in case your computer crashes, it frees up system memory if you choose to delete the photos from your computer's hard disk.
1.
Connect the external hard drive to the computer using the USB cable and power on the unit. The external hard drive's icon appears on the desktop.
2.
Double-click the external hard drive's icon to view the files on the drive.
3.
Click "Finder" on the dock to launch a new finder window, then locate the photos to transfer to your external hard drive. Use the search tool in the upper-right corner to search for photos if you're not sure where they are located.
4.
Click your computer's name under Favorites and click the "Pictures" folder to view images and albums created with photo applications. Double-click the folder containing the photos to transfer to your external hard drive.
5.
Select the photos. Press and hold "Control" while clicking photos to select multiple non-adjacent files. Press and hold the "Shift" key while clicking photos to select multiple adjacent files.
6.
Drag the selected files from their locations to the external hard drive's window that you opened. A status bar displays the progress of the transfer. Wait for the transfer to complete.
7.
Click the menu at the top of the window and click "New Folder" to create a folder to organize the photos. Name the folder and then drag images to it.
8.
Close all open Finder windows when you finish and then drag the external hard drive's icon from the desktop to the Trash bin on the dock. The Trash bin changes to "Eject" and the icon disappears from the desktop.

Comments

Popular posts from this blog

CKA Simulator Kubernetes 1.22

  https://killer.sh Pre Setup Once you've gained access to your terminal it might be wise to spend ~1 minute to setup your environment. You could set these: alias k = kubectl                         # will already be pre-configured export do = "--dry-run=client -o yaml"     # k get pod x $do export now = "--force --grace-period 0"   # k delete pod x $now Vim To make vim use 2 spaces for a tab edit ~/.vimrc to contain: set tabstop=2 set expandtab set shiftwidth=2 More setup suggestions are in the tips section .     Question 1 | Contexts Task weight: 1%   You have access to multiple clusters from your main terminal through kubectl contexts. Write all those context names into /opt/course/1/contexts . Next write a command to display the current context into /opt/course/1/context_default_kubectl.sh , the command should use kubectl . Finally write a second command doing the same thing into ...

OWASP Top 10 Threats and Mitigations Exam - Single Select

Last updated 4 Aug 11 Course Title: OWASP Top 10 Threats and Mitigation Exam Questions - Single Select 1) Which of the following consequences is most likely to occur due to an injection attack? Spoofing Cross-site request forgery Denial of service   Correct Insecure direct object references 2) Your application is created using a language that does not support a clear distinction between code and data. Which vulnerability is most likely to occur in your application? Injection   Correct Insecure direct object references Failure to restrict URL access Insufficient transport layer protection 3) Which of the following scenarios is most likely to cause an injection attack? Unvalidated input is embedded in an instruction stream.   Correct Unvalidated input can be distinguished from valid instructions. A Web application does not validate a client’s access to a resource. A Web action performs an operation on behalf of the user without checkin...