Category: OSX

  • How to restore your hard drive from a Time Machine backup

    How to restore your hard drive from a Time Machine backup Whether you’re having major problems with your current hard drive or upgrading to a new Mac, Time Machine can help you get back to business. Power up your Mac and hold down the Command and R keys to enter the macOS Recovery Partition. Your…

  • iCloud Drive Path for Terminal in Mac OS

    To access your iCloud Drive from the terminal in MacOS use this path ~/Library/Mobile Documents/com~apple~CloudDocs/

  • 6 Text Navigation Shortcuts for Mac

    6 Text Navigation Shortcuts The first group of keyboard shortcuts allow for quickly moving around text: Jump to beginning of a line– Command+Left Arrow Jump to end of a line– Command+Right Arrow Jump to beginning of current word– Option+Right Arrow Jump to end of current word– Option+Right Arrow Jump to beginning of all text– Command+Up…

  • Getting Started with CocoaPods

    Installation make sure the ruby system is up to date $ sudo gem update –system install cocoapods $ sudo gem install cocoapods If you get an error message about fuzzy_match, try this command instead, $ sudo gem install -n /usr/local/bin cocoapods setup the pods $ pod setup To Test / use cocoa pods Create a…

  • How to record an App Preview

    1. Connect your iPhone or iPad to you Mac 2. Open Quick Time Player 3. From the File menu, Choose new Movie recording 4. Fromt the drop down next to the record button choose you iphone/ipad for video and microphone 5. Click record 6. Do steps 7. Click Stop 8. File | Save 9. Add…

  • How to burn an ISO to a USB stick

    Here is how to write a ISO file to a USB stick so you can boot from it. Run the diskutil command to get a list of disk. Be very careful to make sure you select the correct disk. Here its easy its the only one that is 8.0GB in size. NOTE: I have removed…

  • How to burn an ISO image to a CD/DVD in OS X

    Insert the blank DVD When OS X prompts what to do with the blank disk click Ignore Find the ISO file in Finder Right Click and choose Burn Image “…” to Disc

  • How to erase a rewritable CD or DVD in OS X

    Its rather simple actually. Insert the CD or DVD into the SuperDrive You should see an icon appear on the desktop like when you mount any other drive. Simply right click on the icon and choose erase.   NOTE: I’ve had OS X not recognise a DVD and only give me the Ignore and Eject…

  • How to us ln to make links in Unix

    I often found the Unix command ln confusing. It just seems kind of back to front to me. Here for my reference and anyone else, is how to use it. $ ln -sv <existing_folder> <new_link_name> -s to create a symbolic link -v for verbose output  

  • How to run a shell script in OS X by double-clicking

    First in terminal make the script executable by typing: chmod a+x (yourscriptname)   Then, in Finder, right-click your file and select “Open with” and then “Other…”.   Here you select the application you want the file to execute into, in this case it would be Terminal. To be able to select terminal you need to…