Download here: http://gg.gg/wdj14
Start up with macOS Recovery and use Disk Utility to repair the drive. You can also use the Terminal command lsof, which tracks all files in use by even the lowest of low-level parts of the system. In this video, I show the the fastest and easiest way how to transfer from a Mac to a Windows PC. Transfer pictures, videos, music and any file type from you. In the Terminal app on your Mac, use the mv command to move files or folders from one location to another on the same computer. The mv command moves the file or folder from its old location and puts it in the new location. For example, to move a file from your Downloads folder to a Work folder in your Documents folder. If it’s not selected, click the lock button to unlock it, enter an administrator name and password, then select the checkbox. After the move is finished, double-click Photos Library in its new location to open it. If you use iCloud Photo Library, designate this library as the System Photo Library. In this video, I show the the fastest and easiest way how to transfer from a Mac to a Windows PC. Transfer pictures, videos, music and any file type from you.
With the upgrade to Photos, many Mac users have been left with a duplicate iPhoto library on their Macs. Here’s how to delete iPhoto library and clear out some clutter.
iPhoto used to be the standard photo editor and photo management system on Macs, at least for the average computer user. Like it or not, however, that all changed when Apple first introduced the software, nearly a year ago. If your Mac came from Apple with Photos already installed, you don’t need to worry about old iPhoto libraries.
A Mac that was upgraded to a new version of OS X that added the Photos app, however, can end up with what look like duplicates of their photo libraries. The first time you start up Photos after upgrading, your Mac will copy over your photo library into the new software (if you explicitly set up more than one old iPhoto library, you’ll have to copy them over yourself). It doesn’t go back and delete the old one, though.
Here’s where things get a little bit confusing: you don’t actually have two copies of your photos. Thanks to the way OS X (the software that powers your Mac, like Windows powers a PC) works, your pictures aren’t actually stored in those libraries. Instead, they’re stored somewhere else on your hard drive, and each library has what Apple calls a “hard link” to the pictures. As a result, each library can access the photos, but store separate information about them. You can delete either library safely; only if you were to delete both libraries would you lose access to your pictures.
While having a second copy of your photo library doesn’t take up that much extra space on your computer, it can still be confusing – first of all, each library reports that it’s a certain size, which can make it difficult to figure out how much room is left on your Mac. Additionally, if you need to back things up, it can be hard to figure out where your files are.
Still with us? Let’s recap:
*if you upgrade your Mac from iPhoto to Photos, you’ll get a second photo library
*if you had multiple iPhoto libraries (you would know if you did), you’ll need to copy them into Photos manually
*the libraries each link to a single copy of your photos, rather than storing each photo twice
*it can appear that your libraries are taking up more space than they are, thanks to the way hard links work
*you can safely delete either photo library – only if you delete both of them will you lose access to your photosHow to delete iPhoto library on your Mac
Now that you understand why you might want to delete an old iPhoto library, and why you don’t necessarily have to, let’s talk about how to actually do it.
Before you do anything like this on your Mac – that is, delete something potentially important – you should back up your software with something like Time Machine.
Read: How to Backup Your Mac with Time Machine
That way, if you accidentally delete something important, or something else goes wrong, you can always roll things back to how they were when you started. This is really easy, and there’s nothing to be concerned about; it’s just good practice to back things up (and keep them backed up) before you muck about in your computer.
First, you’ll need to open a Finder window: you can do this by clicking on the Finder icon (it looks like a square face) on the dock, or by clicking on your Mac’s desktop background and hitting ⌘+N (Command + N) on your keyboard.
Next, look at the left-hand column in the new window. You’ll see a list of locations around your Mac; find the one that says Pictures and click on it. You’ll be taken to that directory, which contains libraries for Apple’s image-related apps (Photos, iPhoto, Photo Booth, etc).
In the list of files on the right, scroll down and look for your iPhoto library – it’ll be a little iPhoto icon, and the name will read, unsurprisingly, iPhoto Library. Don’t worry about accidentally deleting your Photo Booth or Photos libraries; you’ll be able to see which one is which.
To actually delete the library, you can do one of three things:
*Click on the iPhoto Library listing, and without letting go of your mouse or trackpad button, drag it until it’s over top the Trash icon on your dock. Once you’re on top of the Trash, let go.
*You can select (click on) the iPhoto Library, then right-click on your mouse or Trackpad (Apple will call this Secondary Click in your Mouse or Trackpad settings). A new menu will pop up; find the entry that says Move to Trash and click on it.
*Finally, you can also delete your iPhoto Library by clicking on it and hitting ⌘+Delete (Command + Delete) on your keyboard.
Read: How to uninstall apps on Mac OS X
Now that you’ve gotten rid of your iPhoto library, it makes sense to completely uninstall iPhoto – that way you won’t accidentally create a new iPhoto Library and have to repeat all these steps. It’s as simple as opening up your Applications folder, and deleting iPhoto (using one of the three steps we just discussed). For a more in-depth look at how to uninstall apps on your Mac, be sure to check out our guide above!Related Posts
*
What is the Mac swapfile? Is it important? Can you delete it? We’ll walk you through this…
*
While most people can access their email via the web these days, having a dedicated…
*
Here is a guide on how to create a bootable external Mac hard drive to run…Terminal User Guide
In Terminal, you can move and copy files locally or remotely using the mv, cp, and scp command-line tools.
Tip: It’s easier to move and copy files using the Finder. See Organize files in folders.Use Terminal To Move Photo Library From Desktop To DockMove a file or folder locally
*
In the Terminal app on your Mac, use the mv command to move files or folders from one location to another on the same computer. The mv command moves the file or folder from its old location and puts it in the new location.
For example, to move a file from your Downloads folder to a Work folder in your Documents folder:% mv ~/Downloads/MyFile.txt ~/Documents/Work/MyFile.txt
You can also change the name of the file as it’s moved:% mv ~/Downloads/MyFile.txt ~/Documents/Work/NewFileName.txt
See the mv command man page.Copy a file or folder locally
*
In the Terminal app on your Mac, use the cp command to make a copy of a file.
For example, to copy a folder named Expenses in your Documents folder to another volume named Data:
% cp -R ~/Documents/Expenses /Volumes/Data/Expenses
The -R flag causes cp to copy the folder and its contents. Note that the folder name does not end with a slash, which would change how cp copies the folder.
See the cp command man page.Copy a file or folder remotely
*
In the Terminal app on your Mac, use the scp command to copy a file or folder to or from a remote computer.
scp uses the same underlying protocols as ssh.
For example, to copy a compressed file from your home folder to another user’s home folder on a remote server:
% scp -E ~/ImportantPapers.tgz username@remoteserver.com:/Users/username/Desktop/ImportantPapers.tgz
You’re prompted for the user’s password.
The -E flag preserves extended attributes, resource forks, and ACL information.
The -r flag, which isn’t used in this example, causes scp to copy a folder and its contents.
See the scp command man page.Use Terminal To Move Photo Library To Amazon PrimeSee alsoOpen or quit Terminal on MacOpen new Terminal windows and tabs on MacExecute commands and run tools in Terminal on Mac
Download here: http://gg.gg/wdj14

https://diarynote-jp.indered.space

コメント

お気に入り日記の更新

テーマ別日記一覧

まだテーマがありません

この日記について

日記内を検索