Installing MacPorts (and RMagick, Rails etc)

Hi All
I have a perfectly functioning development setup with PHP, MySQL and Rails. However, I've recently come across two Rails gem installations which, apparently, would be easier to do, and maintain, if I was using MacPorts.
But before I go ahead an make a mess of everything that I'm successfully using right now, is there any potential compatibility issue with installing MacPorts after setting up PHP, MySQL, and Rails, etc? I was just about to install RMagick as a gem (I need it for a Rails tutorial I'm working through), and the RMagick site is pretty convincing about the virtues of maintaining apps through MacPorts...
http://rmagick.rubyforge.org/install-osx.html
Any advice is much appreciated.

Anyone have any thoughts on this one?

Similar Messages

  • HT4623 i have installed ios7 and when 'i agree to terms' etc, with sub menu....nothing happens. please tell me if i have missed something

    i have installed ios7 and when 'i agree to terms' etc, with sub menu....nothing happens. please tell me if i have missed something

    By the way, the safari setting is: private browsing off and accept cookies from visited. Much help is appreciated!

  • When iWorks for iCloud Beta become available I subscribed to it. After that I become unable to access iCloud at all as in all my devices I get messages to install it and other apps (find my phone, etc) that are already active. Anyone could help?

    When iWorks for iCloud Beta become available I subscribed to it. After that I become unable to access iCloud at all as in all my devices I get messages to install it and other apps (find my phone, etc) that are already active. Anyone could help?

    The first time an iPhone is connected to iTunes that is used to sync with another iPhone or iOS device, you are prompted to transfer the backup for the other iPhone or iOS device or to set up the iPhone as a new iPhone.
    The former does as provided - it transfers the backup for the other iPhone or iOS device to the iPhone replacing all data on the iPhone that is included with the backup being transferred. The latter does nothing allowing you to make your various selections for the iPhone sync preferences with iTunes.
    This is designed to be done right away with a new iPhone.
    If you don't have a backup for the iPhone with iTunes on your computer and don't have an iCloud backup that hasn't been updated since choosing to transfer the backup for your iPod Touch to the iPhone, the data that was on the iPhone is gone.

  • Lenovo Yoga 2 13, Kali Linux 1.0.7, Ubuntu 14.04, Windows 8.1 install, config, and wifi fix.

    Lenovo Yoga 2 13, Kali Linux 1.0.7, Ubuntu 14.04, Windows 8.1 install, config, and wifi fix.
    I wanted to share an experience with everyone I hope will help others avoid what I have gone through the past 3 days. I bought a Yoga 11s that I loved but had some issues with the wireless, Lenovo being awesome replaced it with a Yoga 2 13. I love this laptop but ran into some issues with Linux install/wireless, which I wanted to show how to resolve in one place. Hopefully this will help someone else get through this quicker
    I am going to try and write this for someone with little Linux experience, if I miss the mark please let me know and I will clarify the best I can.
    For work I need Windows 8.1 and Kali Linux, while for home I prefer Ubuntu.
    My Yoga 2 13:
    I5 1.6 ghz
    8 GB ram
    256 GB SSD
    ORANGE!
    My requirements: 
    I need Windows
    I need Kali Linux (livecd, even with persistent mode was not an option as it would not save the wireless fix or system updates) – I would also like this on a USB drive and not the internal SSD
    I would like Ubuntu
    Needed to do this:
    1. 2 USB thumb drives (at least 8gb in size each) I used 2 Leef Supra 32GB drives. They are my favorite right now and are only about $27 at amazon.
    2. Phone that can USB Tether or a USB Ethernet card (External USB wireless will show as "Hardware Locked"). Again you can pick one up for sub $10 if you need the USB Ethernet route. I used my Galaxy S5, you will need to download 200-300 mb of items through this so make sure you have the data if you go that route.
    3. You may be able to get a USB wifi card to work if you do the following after boot. This only worked once for me.
                    a.Type ‘sudo rmmod iwlmvm’
    b.Type ‘sudo rmmod iwlwifi’
    4. ISOs of Ubuntu and Kali Linux (I used Ubuntu 14.04 and Kali Linux 1.0.7)
    5. Software to unzip the ISOs. I recommend 7-ZIP and will be referencing this in this guide.
    6. I will include the EFI boot files and the WiFi fix files if I can attach. Otherwise I will provide a link to them.
       Link: https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    Recommended (these are just in case you corrupt something making your system not see any OS
    1.  I would call Lenovo beforehand and get a set of recover disks (this will take 2-3 days)
    2. In the meantime a USB Windows 8.1 or 8 ISO (the repair feature may save you)
    *Note: At many points in this guide I detail steps and commands. Please double check that you understand the step before proceeding. There are multiple points where a mistyped command or clicking the wrong option will cause your entire system to fail and you will need to reformat the entire drive and start over. This also will make One Touch recovery not work. Proceed with caution.*
    I did not need to disable ‘secure boot’ to do this, but keep in mind that you may need to.
    Steps:
    First let’s go through the installs, and then we will go through grub config and wireless fix
    1. In Windows scroll to computer and right click, select manage.
    2. Go to “Disk Management”
    3. Select the main HDD (notice Lenovo puts a stupid number of partitions on here)
    a. I deleted the D: drive on here, if you do this make sure to copy the drives over to your main C: drive. You will want to run each of the installers and repair the drivers after.
    4. I used the space from the D: drive and pulled a little more creating a 50 GB partition for Ubuntu and my swap file
    a. You can also add more space by right clicking your C drive and selecting shrink
    b. Do not format the partitioned data as this will make identifying it later much easier.
    5. Open a command line
                    a. Swipe from the right of the screen and select search
                    b. Type ‘cmd’
                    c. right click and select ‘run as admin’
    6. For Ubuntu: Type ‘diskpart’ into the command line
                    a. type ‘list disk’
    i. You should see 2-3 disks depending on if you have one or both usb drives in the laptop at the time. I would suggest only doing 1 at a time so you don’t lose track.
                    b. type ‘select disk $’ (Replace the $ with the number of the drive)
    c. ***** Before proceeding make sure you have the correct drive selected or you can ruin your Windows install and Lenovo one touch recovery will not fix it since we have changed the partitions *****
    d. type ‘clean’
    e. type ‘create partition primary’
    f. type ‘active’
    g. type ‘format  fs=fat32 quick’
    h. type ‘assign’
    i. type ‘exit’
    6. For Kali Linux: Type ‘diskpart’ into the command line
                    a. type ‘list disk’
    i. You should see 2-3 disks depending on if you have one or both usb drives in the laptop at the time. I would suggest only doing 1 at a time so you don’t lose track.
                    b. type ‘select disk $’ (Replace the $ with the number of the drive)
    c. ***** Before proceeding make sure you have the correct drive selected or you can ruin your Windows install and Lenovo one touch recovery will not fix it since we have changed the partitions *****
    d. type ‘clean’
    e. type ‘create partition primary size= 3272
    f. type ‘active’
    g. type ‘format  fs=fat32 quick’
    h. type ‘assign’
    i. type ‘exit’
    j. By doing this we can maintain a portion of this drive as the install CD and still have linux install/ liveCD if we need to run it on another machine.
    7. At this point the drive is ready to have the contents of the ISO copied over.
    8. Right click the ISO and select 7-zip then ‘zip to /’ This should unzip the ISO to the location of the ISO into a folder named exactly the same as the ISO.
    9. Once this is done for Ubuntu ISO it is done
    10. Kali requires a little bit more to be ready
                    a. Kali will need some files added for EFI boot. --$--
                                   i. Thanks to: https://forums.kali.org/showthread.php?271-How-to-EFI-install-Kali-Linux
                                   ii. EFI files are located within the wifi fix folder https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    11. Now let’s start with Ubuntu
    Ubuntu install
    1.     Place USB drive into the laptop and press the “Lenovo boot” button next to the power button
    2.     Select ‘Boot Menu’
    3.     Select ‘EFI USB Device (Name of drive)’ Mine stated Leef Supra
    4.     Select ‘install Ubuntu’
    5.     Go through the Ubuntu install until you get to select the install drive
    6.     Once you get to the install portion it will ask you to select from one of 4 options. Select ‘Manually select partition’
    7.     Select the “Free Space” where we opened up some of the drive
    8.     You will need to create 2 partitions, I usually create the swap partition at the end of the drive
    a.     First I create the swap
                                              i.    Set at the end of the drive
                                             ii.    Set size to 1024 mb
                                            iii.    Set type to ‘swap’
    b.     Second create the ext 4 partition
                                              i.    Set to beginning of drive
                                             ii.    Set to remainder of the space
                                            iii.    Set type to ext4
                                            iv.    Set mount point to /
    9.     Finish the install and boot into Ubuntu
    10.   You will notice that your wireless is ‘disabled by hardware’ This is fine for the time being and we will worry about this after the kali install. If we fix it now for some reason after installing kali we get the error again and would just need to fix it again.
    Kali Linux install
    1.     Place USB drive into the laptop and press the “Lenovo boot” button next to the power button
    2.     Select ‘Boot Menu’
    3.     Select ‘EFI USB Device (Name of drive)’ Mine stated Leef Supra
    4.     From the grub menu select ‘install kali linux’ both graphical and text work. I much prefer text install
    5.     You will get a few errors through the install but that is fine
    6.     The first we see is about network hardware and ‘load missing firmware from removable media?’ – Select ‘no’
    7.     Then select no ethernet card
    8.     It will have you name your machine then it will ask you for the root password
    a.     If you want to just use root *not recommended* place the password here
    b.     If you wish to use a non-root account then leave these blank and it will ask you for a name, username, and password of the new machine *Very Recommended* - this will also add this user to the sudoers file
    9.     It will then ask you to ‘partition disks’
    10.   Select manual
    11.   Now here is where it can get a little confusing so read twice click once
    12.   Select the USB drive from this list
    13.   Mine shows up under (sdb) – Leef Supra
    a.     It could be sdc, sdd, sde, etc… depending on how many drives you have plugged in.
    14.   You should see one primary drive that is 3gb or so that is formatted as FAT32. – DO NOT TOUCH THIS PARTITION!
    15.   You should see the remainder of this drive as ‘FREE SPACE’ select that
    16.   Create a partition at the end at size 1024mb and swap
    17.   Then create another one for the remainder of the drive and set it to ext4 with mountpoint of /
    18.   Continue through the install after you should see an error warning you that ‘you may not be able to boot’ that is fine, select continue
    19.   Then select from the menu of all the options ‘continue without bootloader’
    20.   It should finish up then reboot on its own.

    First setup/boot/fix grub
    1.     You should  be able to boot up into GRUB2 menu now.
    2.     You may not see kali linux in this menu (make sure you have your towel and don’t panic!)
    3.     Boot into Ubuntu
    4.     Once you log in you should see that you still cannot use wireless due to being locked by hardware
    5.     This is expected
    6.     Let’s fix grub then we will come back to fixing wireless
    7.     Plug in your device to connect to the internet (USB Tethering or USB Ethernet)
    8.     Once you verify that you now have an internet connection run the following from terminal
    a.     ‘sudo add-apt-repository ppa:danielrichter2007/grub-customizer’
    b.     ‘sudo apt-get update’
    c.     ‘sudo apt-get install grub-customizer’
    9.     You can also edit the grub.cfg manually if you know what you are doing… I did not
    10.   Open grub  customizer
    11.   It should auto populate and you should see ‘debian (kali linux)’ somewhere in the list
    12.   It should be mounted to /dev/sdb2 or /dev/sdc2 depending on how many devices you have
    13.   At this point go ahead and save
    14.   Reboot and test that you can get into each OS
    15.   This is where my inexperience got me. I spent 2 of my days so I am including this error: If when you boot into Kali you get an error somewhere that says ‘/bin/sh: can’t access tty: job control turned off’ look above it for an error that looks similar to ‘ALERT! /dev/sdc2 does not exist. Dropping to a shell!!’
    a.     That error is due to the mount point being incorrect in grub, reboot and from within grub highlight the kali boot. Press ‘e’ then towards the bottom you should see ‘root=/dev/sdc2’ change this to ‘root=/dev/sdb2’ again the number doesn’t matter just make sure it stays the same.
    b.     Press F10
    c.     If this boots fine then you will need to go back and fix the grub.cfg or load into Ubuntu and open grub customizer again, it should fix this
    16.   Now you have 3 working OS on the machine with one being on a USB! Congrats!
    17.   You can remove the USB with no worry of screwing up your install, but you will not be able to boot into Kali Linux until you replace it. I would suggest only removing it and replacing it while the machine is powered off, but that’s just me.
    Fix Wireless
    Now is the time to do what probably ¾ of you came here for. FIX THE DANG WIRELESS. This is a huge problem from Lenovo’s side that I hope they realize how important Linux is and will fix. I won’t hold my breath though.
    Log into Ubuntu : This is well documented in the following forum post on page 3 by user Haohe:
    http://ubuntuforums.org/showthread.php?t=2215044&page=3
    His has you download quite a large file, mine should be much smaller.
    https://www.dropbox.com/s/puxnnoft3gn2b6l/WiFiFix.zip
    1.     Download the attached package with the fix.
    2.     Connect your USB internet device (tether or ethernet)
    3.     Place the packages somewhere easy to access, in this example I will place them under ~/Desktop/WiFiFix
    4.     Type ‘cd ~/Desktop/WiFiFix/’
    5.     Now we need to prep the tools we need.
    6.     Type ‘sudo apt-get update’ – we did this before, but you know, just in case
    7.     Type ‘sudo apt-get install linux-headers-`uname –r`’   Note around uname-r they are the ` symbol not the ‘ this is located just above the tab on the same key as ~.
    8.     Type ‘make’
    9.     Type ‘sudo cp /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/ideapad-laptop.ko ~/ideapad-laptop.ko.backup’
    10.   Type ‘sudo cp ~/Desktop/WiFiFix/ideapad-laptop.ko /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/’
    11.   Type ‘sudo modprobe -r ideapad-laptop’
    12.   Type ‘sudo modprobe ideapad-laptop’
    13.   Type ‘sudo rfkill unblock all’
    14.   Type ‘sudo modprobe -r ideapad-laptop’
    15.   Type ‘sudo mv ~/ideapad-laptop.ko.backup /lib/modules/3.13.0-24-generic/kernel/drivers/platform/x86/ideapad-laptop.ko’
    16.   Next we need to blacklist the ideapad module
    17.   Type ‘sudo echo 'blacklist ideapad-laptop' > /etc/modprobe.d/blacklist-ideapad.conf’
    a.     The first time I tried this it wouldn’t work. So I did the following
    b.     ‘sudo touch /etc/modprobe.d/blacklist-ideapad.conf’
    c.     ‘sudo vim /etc/modprobe.d/blacklist-ideapad.conf’
    d.     Enter     blacklist ideapad-laptop
    e.     Exit and save
    18.   Reboot your Yoga 2 13
    19.   Boot into kali and see if you have wireless, if you do then you are done. If not we will need to repeat this process with one small little change.
    Kali Wifi Fix
    1.     Copy the sources.list from the package provided
    2.     Replace /etc/apt/sources.list with the included
    3.     Some of the file path changes but the process remains the same from here.
    Congratulations you now have 3 OSes one portable to other machines and working wifi!
    Thank you
    SirGed

  • I can not open Firefox due to a virus. Can I un-install and then re-install Firefox and save my original setup and favorites

    I can not open Firefox due to a virus.
    When trying to open Firefox, the program directed the computer to shut down, and prevented me from going into Safe mode.
    The virus only affected Firefox and rebooting in Safe.
    The virus has been scrubbed, but I get the crash report every time I try to open Firefox. Can I install a new version of Firefox and still keep my bookmarks/ How can I rescue my bookmarks.
    I am posting this from another computer location.

    I used to have a slightly similar problem. Not the Virus problem, but the re-install of Firefox. The solution for this in the future would be for you to install and use FEBE Firefox Environment Backup Extension so you can fully back-up your settings, and other Addons, and Themes etc. that were within your FEBE backed up profile, so you can do the re-install of Firefox and then restore your saved profile that encompasses all of or most of what you presently don't want to loose. You could still do a FULL PROFILE FEBE, and re-install Firefox, and do a FULL PROFILE RESTORE, and if you might no longer have a virus problem after the restore. If so, your in good shape. I would find and run a good quality Anti-Virus scan, and if you wish to try to catch what you might have missed with the new scan I also suggest from www.IOBit.com that you add 2 programs that look to be better at catching problems than most other scan and repair utilities. The programs I suggest you add are called Advanced System Care - presently is version 5, and IOBit Malware Fighter, and one other. Their super powerful Smart Defrag that is faster than most Defrag programs and their is only one other Defrag program that comes close to it's power, and that is Diskepper, and you get Smart Defrag for free, and it's better, and faster than the others in my opinion. ASC Advanced System Care will clean your system and make it run faster specially if you have noticed it is slowing down for one reason or another , and it will do this with less resources than the other programs that you may already be using. The only thing they lack at present is an Anti-Virus portion which would add much more value to the already super programs. Good Luck. Let me know what you think after trying the noted programs. You should be very satisfied of the results.

  • HT1692 Have recently installed itunes and outlook on a new computer.  Have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, Help!

    My new computer is 64-bit running Windows 7 pro, SP1 and Microsoft Office 2010 Pro Plus 32-bit
    My phone is a 4S runing iOS 6.1.3
    Very frustrated now that I have recently installed itunes and outlook on this new computer.  Everything worked perfectly ok on my laptop which was also 64-bit Windows 7 and running 32-bit Microsoft Office 2010 Pro.  I have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, when I sync the calendar and contacts are empty.  Not sure if there is any way to point itunes to particular address books and calendars.
    I have installed and uninstalled itunes 3 times and thank goodness have a backup
    Can anyone help please?
    thanks in anticipation

    I had my home computer set up to sync to work's Exchange server. It worked well, but I didn't like seeing work email messages and other programs trying to sync with my default Outlook folder, which was then the Exchange (& work related) .ost file. I know there are various ways to manage those problems using filters, view, subfolders, etc., but it was a hassle for me. I think it could work well for many other folks.
    For now, I have published my work calendar and subscribed to that calendar on my home computer. So I have view only access to my calendar on my home computer (and I can add/edit calendar items on my iPad (or Outlook Web Access) when away from work). This is not quite what I wanted, but it may work.
    It almost makes me long for the days when I used my Windows Mobile Treo to sync back and forth between exchange at work and outlook at home (but had many sync conflicts as a result).

  • I am using a new imac with osx lion 10.7.5 and have bought a copy of Apple iLife 11 on dvd a so that I can install iWeb and idvd, when I click on install iLife I get a message saying "iLife.kpg was signed with an invalid certificate

    I am using a new imac with osx lion 10.7.5 and have just bought Apple iLife 11 on dvd so that I can install iWeb and iDVD, as macs no longer ship with these apps. When I click on install iLife I get a message saying "iLife.kpg was signed with an invalid certificate.
    Next problem is that when moving through the installer and get to custom install, as I only want to install iDVD and iWeb, I am presented with the option to install iDVD, Sounds & Jingles and iWeb, but not sure what is going on with the other 3 options iLife Support etc, they seem to be greyed out but still look like they may install over the top of the newer versions already on my imac. Is it ok for me to just go ahead and hit install? Or do I have a problem?

    Yep, just install iDVD (plus sounds and jingles) and iWeb if you want it (but note that iWeb apparently won't work if you upgrade to Mountain Lion).
    Then use Software Update to get any late iDVD updates.

  • At night, as soon as I plug my iphone to be recharged, my iphone starts behaving abnormaly.  It is like somebody has taken control of it.  I see the screens moving, music starts playing and then stopping, etc.

    At night, as soon as I plug my iphone to be recharged, my iphone starts behaving anomaly.  It is like somebody has taken control of it.  I see the screens moving, music starts playing and then stopping, etc.  I have noticed that several nights.  What I do is in Settings is to change  into Plane Mode, thinking that, may be if I do that, somebody that has taking control of it will not be able to download data.  Yesterday night, I was awakened by an alarm, whose setting I did not changed. When I looked over, the alarm screen changed to Settings and the Plane Mode changed alone in front of my eyes, from on to off.
    I have not observed such a situation during the day. Only when I plug the cable.
    I suspected that may be there is no Trojan installed. May be the cable, which is a spare cable, has been modified by a hacker, and it has electronics installed in the connector.  But tested with the original cable, and the behavior was the same, as described above.

    Thanks Meg for your reply.
    It could be that both cable are bad. But, anyway, you would not expect any of these manifestations, even with a bad cable. I had bad cable for my 4s, and never saw such a thing! 
    I contacted by chat the support of Apple.  They told me that this behavior could be a software problem and recommended me to do a full recover of my iphone. That meant, putting in at the factory conditions and recup all the data from the backup.  I did that, and the behavior did not change.  The backup was made with the data of my PC, not icloud.  Tomorrow will try with icloud and check if that will work. 

  • Is it possible to re-install itunes and sign in your account without creating a new one?

    I cant access my itunes account so I am thinking of un-installing it and re-insalling it. Would I be able to sign in my account using my apple ID instead of creating a new account? thanks in advace

    Hi there
    The installation of iTunes has nothing to do with your iTunes account.
    Are you unable to access your iTunes account because of a forgotten password? If so, then you can reset it here.
    However, if you are unable to access your account for some other reason (disabled, etc), then you may need to contact the iTunes Store Support team
    Good luck

  • System running ridiculously slow after installing Yosemite and Adobe CC

    SInce installing Yosemite and upgrading to Adobe CC for all my design apps, my computer runs soooooo slow. Since then, I've run all the disk utility stuff and upgraded from 8gb to 12gb of RAM. That about ends my knowledge. I ran EntreCheck with report below. Any insight on what to do would be HUGELY appreciated.
    Problem description:
    everything is running soooooooo slow.
    EtreCheck version: 2.1.8 (121)
    Report generated March 20, 2015 at 12:19:11 AM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️<etrecheck://help/hardware>
       iMac (27-inch, Mid 2010) (Technical Specifications)<http://support.apple.com/kb/SP695>
       iMac - model: iMac11,3
       1 2.8 GHz Intel Core i5 CPU: 4-core
       12 GB RAM Upgradeable
           BANK 0/DIMM0
               4 GB DDR3 1333 MHz ok
           BANK 1/DIMM0
               4 GB DDR3 1333 MHz ok
           BANK 0/DIMM1
               2 GB DDR3 1333 MHz ok
           BANK 1/DIMM1
               2 GB DDR3 1333 MHz ok
       Bluetooth: Old - Handoff/Airdrop2 not supported
       Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️<etrecheck://help/video>
       ATI Radeon HD 5750 - VRAM: 1024 MB
           iMac 2560 x 1440
    System Software: ℹ️<etrecheck://help/systemsoftware>
       OS X 10.10.2 (14C109) - Time since boot: 1:33:15
    Disk Information: ℹ️<etrecheck://help/disk>
       WDC WD1001FALS-40Y6A0 disk0 : (1 TB)
           EFI (disk0s1) <not mounted> : 210 MB
           Macintosh HD (disk0s2) / : 999.35 GB (586.39 GB free)
           Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
       HL-DT-STDVDRW  GA32N
    USB Information: ℹ️<etrecheck://help/usb>
       Apple Inc. BRCM2046 Hub
           Apple Inc. Bluetooth USB Host Controller
       Apple Internal Memory Card Reader
       Apple Inc. Built-in iSight
       Apple Computer, Inc. IR Receiver
    Configuration files: ℹ️<etrecheck://help/configurationfiles>
       /etc/hosts - Count: 30
    Gatekeeper: ℹ️<etrecheck://help/gatekeeper>
       Mac App Store and identified developers
    Launch Agents: ℹ️<etrecheck://help/launchagents>
       [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]<http://www.google.com/search?q=com.adobe.AAM.Updater-1.0.plist+support+site:adob e.com>
       [loaded]    com.adobe.AdobeCreativeCloud.plist [Click for support]<http://www.google.com/search?q=com.adobe.AdobeCreativeCloud.plist+support+site:a dobe.com>
       [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]<http://www.google.com/search?q=com.adobe.CS5ServiceManager.plist+support+site:ad obe.com>
       [loaded]    com.google.keystone.agent.plist [Click for support]<http://www.google.com/search?q=com.google.keystone.agent.plist+support+site:goog le.com>
       [loaded]    com.hp.help.tocgenerator.plist [Click for support]<http://www.google.com/search?q=com.hp.help.tocgenerator.plist+support+site:hp.co m>
       [loaded]    com.intego.backupassistant.agent.plist [Click for support]<http://www.google.com/search?q=com.intego.backupassistant.agent.plist+support+si te:intego.com>
    Launch Daemons: ℹ️<etrecheck://help/launchdaemons>
       [loaded]    com.adobe.fpsaud.plist [Click for support]<http://www.google.com/search?q=com.adobe.fpsaud.plist+support+site:adobe.com>
       [loaded]    com.adobe.SwitchBoard.plist [Click for support]<http://www.google.com/search?q=com.adobe.SwitchBoard.plist+support+site:adobe.co m>
       [loaded]    com.google.keystone.daemon.plist [Click for support]<http://www.google.com/search?q=com.google.keystone.daemon.plist+support+site:goo gle.com>
       [running]    com.intego.BackupAssistant.daemon.plist [Click for support]<http://www.google.com/search?q=com.intego.BackupAssistant.daemon.plist+support+s ite:intego.com>
       [loaded]    com.quark.quarkupdate.plist [Click for support]<http://www.google.com/search?q=com.quark.quarkupdate.plist+support+site:quark.co m>
    User Launch Agents: ℹ️<etrecheck://help/userlaunchagents>
       [loaded]    com.adobe.ARM.[...].plist [Click for support]<http://www.google.com/search?q=com.adobe.ARM.78cc0ca4390391ccbf3e6ae7434b49da845 cbb801c17ced9d324e9da.plist+support+site:adobe.com>
       [running]    com.akamai.single-user-client.plist [Click for support]<http://www.google.com/search?q=com.akamai.single-user-client.plist+support+site: akamai.com>
       [failed]    com.apple.CSConfigDotMacCert-[...]@me.com<http://me.com>-SharedServices.Agent.plist
       [running]    com.spotify.webhelper.plist [Click for support]<http://www.google.com/search?q=com.spotify.webhelper.plist+support+site:spotify. com>
    User Login Items: ℹ️<etrecheck://help/loginitems>
       Spotify    Application Hidden (/Applications/Spotify.app)
    Internet Plug-ins: ℹ️<etrecheck://help/internetplugins>
       o1dbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]<http://www.google.com/search?q=support+site:google.com>
       Google Earth Web Plug-in: Version: 7.1 [Click for support]<http://www.google.com/search?q=Google%20Earth%20Plugin.plugin+support+site:Googl e.com>
       Default Browser: Version: 600 - SDK 10.10
       CouponPrinter-FireFox: Version: Version 1.1.5
       AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]<http://www.google.com/search?q=support+site:AdobeAAMDetectLib.com>
       FlashPlayer-10.6: Version: 17.0.0.134 - SDK 10.6 [Click for support]<http://www.google.com/search?q=FlashPlayer-10.6+support+site:macromedia.com>
       Silverlight: Version: 5.1.20125.0 - SDK 10.6 [Click for support]<http://www.google.com/search?q=support+site:microsoft.com>
       Flash Player: Version: 17.0.0.134 - SDK 10.6 [Click for support]<http://www.google.com/search?q=Flash%20Player+support+site:macromedia.com>
       QuickTime Plugin: Version: 7.7.3
       googletalkbrowserplugin: Version: 5.40.2.0 - SDK 10.8 [Click for support]<http://www.google.com/search?q=support+site:google.com>
       iPhotoPhotocast: Version: 7.0
       AdobePDFViewer: Version: 9.5.5 [Click for support]<http://www.google.com/search?q=AdobePDFViewer+support+site:adobe.com>
       JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version<http://www.java.com/en/download/installed.jsp>
    3rd Party Preference Panes: ℹ️<etrecheck://help/preferencepanes>
       Akamai NetSession Preferences  [Click for support]<http://www.google.com/search?q=Akamai%20NetSession%20Preferences+support+site:yo urcompany.com>
       Flash Player  [Click for support]<http://www.google.com/search?q=Flash%20Player+support+site:adobe.com>
       Growl  [Click for support]<http://www.google.com/search?q=Growl+support+site:growl.com>
       Paragon NTFS for Mac ® OS X  [Click for support]<http://www.google.com/search?q=Paragon%20NTFS%20for%20Mac%20%C2%AE%20OS%20X+supp ort+site:paragon-software.com>
       Quark Update Preferences  [Click for support]<http://www.google.com/search?q=Quark%20Update%20Preferences+support+site:quark.c om>
    Time Machine: ℹ️<etrecheck://help/timemachine>
       Skip System Files: NO
       Auto backup: NO - Auto backup turned off
       Volumes being backed up:
           Macintosh HD: Disk size: 999.35 GB Disk used: 412.95 GB
       Destinations:
           LaCie [Local]
           Total size: 2.00 TB
           Total number of backups: 18
           Oldest backup: 2014-12-10 04:43:29 +0000
           Last backup: 2015-03-07 20:22:58 +0000
           Size of backup disk: Adequate
               Backup size 2.00 TB > (Disk used 412.95 GB X 3)
    Top Processes by CPU: ℹ️<etrecheck://help/cpu>
            1%    sysmond
            0%    fontd
            0%    Activity Monitor
            0%    SystemUIServer
            0%    mds
    Top Processes by Memory: ℹ️<etrecheck://help/memory>
       206 MB    mds_stores
       103 MB    WindowServer
       77 MB    Finder
       77 MB    com.apple.WebKit.WebContent
       64 MB    Activity Monitor
    Virtual Memory Information: ℹ️<etrecheck://help/vm>
       9.44 GB    Free RAM
       1.99 GB    Active RAM
       622 MB    Inactive RAM
       827 MB    Wired RAM
       1.87 GB    Page-ins
       0 B    Page-outs
    Diagnostics Information: ℹ️<etrecheck://help/diagnostics>
       Mar 19, 2015, 11:42:51 PM    /Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2015-03-19-234251_[ redacted].hang
       Mar 19, 2015, 10:36:03 PM    Self test - passed
       Mar 18, 2015, 09:49:31 PM    /Library/Logs/DiagnosticReports/Microsoft Word_2015-03-18-214931_[redacted].hang
       Mar 18, 2015, 06:09:50 PM    /Library/Logs/DiagnosticReports/AdobeAcrobat_2015-03-18-180950_[redacted].hang
       Mar 18, 2015, 03:13:06 PM    /Library/Logs/DiagnosticReports/System Preferences_2015-03-18-151306_[redacted].hang
       Mar 18, 2015, 03:12:39 PM    /Library/Logs/DiagnosticReports/Spotify_2015-03-18-151239_[redacted].hang
       Mar 18, 2015, 03:10:52 PM    /Library/Logs/DiagnosticReports/Safari_2015-03-18-151052_[redacted].hang
       Mar 17, 2015, 10:39:53 PM    /Library/Logs/DiagnosticReports/Microsoft Word_2015-03-17-223953_[redacted].hang
       Mar 17, 2015, 08:28:02 AM    /Library/Logs/DiagnosticReports/Safari_2015-03-17-082802_[redacted].hang

    Thanks so much for the detailed instructions...but they didn't seem to work.
    At this point I've erased the drive and reinstalled Yosemite. I haven't brought any files or applications back in yet, but things are still moving really slow. Here's my latest EntreCheck report. Any insight would be very helpful.
    Problem description:
    sytstem, even after a bringing it back to factory settings, is still running really really slow
    EtreCheck version: 2.1.8 (121)
    Report generated March 22, 2015 at 11:23:25 PM EDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (27-inch, Mid 2010) (Technical Specifications)
        iMac - model: iMac11,3
        1 2.8 GHz Intel Core i5 CPU: 4-core
        12 GB RAM Upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1333 MHz ok
            BANK 0/DIMM1
                2 GB DDR3 1333 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1333 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        ATI Radeon HD 5750 - VRAM: 1024 MB
            iMac 2560 x 1440
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 1:28:31
    Disk Information: ℹ️
        WDC WD1001FALS-40Y6A0 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Macintosh HD (disk0s2) / : 999.35 GB (989.92 GB free)
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
        HL-DT-STDVDRW  GA32N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Computer, Inc. IR Receiver
        Apple Internal Memory Card Reader
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
    3rd Party Preference Panes: ℹ️
        None
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             2%    WindowServer
             0%    launchd
             0%    dpd
    Top Processes by Memory: ℹ️
        155 MB    mds_stores
        129 MB    softwareupdated
        103 MB    Dock
        64 MB    Finder
        64 MB    com.apple.WebKit.WebContent
    Virtual Memory Information: ℹ️
        8.51 GB    Free RAM
        2.13 GB    Active RAM
        1.24 GB    Inactive RAM
        1.00 GB    Wired RAM
        2.36 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Mar 22, 2015, 09:49:57 PM    Self test - passed

  • Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (being PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Did I miss something in the fine print? I installed Lion and and come to find out, I can no longer open any Word documents or Excel spreadsheets as they are no longer supported (apparently because they are PowerPC apps).  Seriously?!?!?!?!!   What are my alternatives?

    Hi Mary and Matthew
    You might find it helpful to "try before you buy" - there is a 30 day free trial offer for Office for Mac 2011, accessible from M's .com website.
    You may be able to use this period to open and resave your old documents in a format that enables you to switch instead to using Apple's iWorks apps moving forward.
    I initially intended to do something similar, but ended up buying Office as it provided an easier way (for me, at least) to continue working with years worth of old emails, letters, spreadsheets and other documents (from my PC days) without risking damage to their integrity, formatting, etc.

  • HT1338 when I try to print, I get this error message "Communications Failure: The computer is no longer able to communicate with your printer. " followed by intruictions to turn off the printer and check connections etc. I am using an HP Officejet 6500 70

    when I try to print, I get this error message "Communications Failure: The computer is no longer able to communicate with your printer. " followed by intruictions to turn off the printer and check connections etc. I am using an HP Officejet 6500 709e, connecter wirelessly

    I'm using a mac (OS X - snow leopord) and am printing over the network (wirelessly).
    HP Photosmart Premium Fax All in One - C410a
    I was only able to print one page and then both my printer and my computer would display an error message about the printer's inability to print.  Since then I've been able to resolve my specific problem.
    I
    1. uninstalled HP from my computer (checked to ensure that my printer was no longer visible in my printers and the HP Utility software was nowhere to be found), 
    2. grabbed the software/driver update from Aug, 2010,
    3. installed the Aug, 2010 update, and my problems seem to have been fixed.
    This is where I got my 2010 update from (obviously you should get the driver/software applicable to your OS and specific printer):
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-85379-1&cc=us&dlc=en&lc=en&...

  • The desktop on which I had Lightroom and PhotoshopCC installed failed and I no longer have access to it. How do I deactivate the software on those machines so that I can reinstall it on my new Mac?

    Question: The desktop on which I had Lightroom and PhotoshopCC installed failed and I no longer have access to it. How do I deactivate the software on those machines so that I can reinstall it on my new Mac?

    Absolutely - but I had no idea there were two versions. When I got my new laptop I just went to the Adobe site to download and install LR5. It never asked if I had a license; it just directed me to install CC to start a trial which I thought I could license after downloading. Several sessions and many hours of looking through the forums and Google for an answer I never ran across anything that made this distinction. I still haven't found a path from www.adobe.com that would get me to the standalone download page (it's probably there, wasn't obvious to me) and looking at the download page it doesn't make any CC/standalone distinction.
    There are many places I could have gotten a hint - for instance the license could be tagged "stand alone edition", the CC-version could recognize the stand-alone key and either accept it or produce a more meaningful error message, or the download site or the CC app could ask if I had previously purchased a key, etc.
    It was my error to assume this was a deactivation problem, but it looked the same as a previous deactivation problem with Photoshop.
    In any event, thank you for your help.

  • What are the steps to make it seamless for a customer to use the install program and then use the installed program?

    I wrote an install program (.exe) that is downloaded from a website.  When run, it 1) leads a customer to browse to a directory, and 2) copies files (.exe, .dll, etc.) from a website to that directory.  When I run, the installed program works.
    What are the steps to make it seamless for a customer to use the install program and then use the installed program? 
    bhs67

    This site https://msdn.microsoft.com/en-us/library/vstudio/2kt85ked%28v=vs.110%29.aspx provides a basic description of the Visual Studio Windows Installer. 
    Near the bottom of the page is "You can unlock all the features of InstallShield by paying to upgrade to the full version of InstallShield."  Where do I find info that describes the differences between the "free" and the "full"
    versions?
    bhs67
    Hello,
    The default feature does support the task for your requirement, so there is no need to pay for the other features unless you want to use some feature which is not free.
    In addition, as this thread
    InstallShield LE not available with VS 2012 RTM? shared, even through there is a link to InstallShield LE in the New Project dialog under Deployment solutions, but it belongs to third-party that I would recommend you consider posting this issue
    at the following forum to get supports about InstallShield.
    http://community.flexerasoftware.com/forumdisplay.php?133-InstallShield
    Regards.
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Installing Leopard and new internal hard drive at same time, best plan?

    Ok so basically the title explains what I need to do. I am currently travelling in Europe, and returning home to New York on Tuesday night. I have a new hitachi 250gb HD and will have Leopard waiting for me at home when I arrive, and will get right to doing this installation. I am writing on the discussion boards here because I am hoping the users here can give me their opinions on what is the best plan of action to do this whole install?
    So what I was thinking was, I should remove the hard drive that's already inside, put it into an external enclosure. Then, put my new blank 250gb hard drive into the macbook pro, close up the computer, then put the Leopard OSX install disk, and do a completely fresh install of Leopard. Then, after installing (or during installing?) I should run the migration assistant program to get all my files and settings etc. transferred over to the new internal hard drive with Leopard on it, from the old hard drive that will be plugged in from an enclosure as an external drive.
    Will this plan have any problems that I am not aware of? Is there a better process for doing this task? Any advice will be greatly appreciated! I am anxious to get my new hard drive into the computer because my 160gb is filling up, and dying so badly to use the new Leopard!!

    You could also put the new disk in the external enclosure, partition it using disk utility. Then make a clone of your current hard disk to the new external one using the restore feature in disk utility. Boot from the external disk and Install Leopard as an upgrade keeping all your files and setting. check everything is all running how I should and swap drives over. That's another option for you.

Maybe you are looking for

  • UCM getOrganizationService : Failed to find System Id in input message

    Hi, I am having a problem tyring to get a UCM service working. This is the SOAP message I am sending: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cus="http://xmlns.oracle.com/apps/mdm/customer" xmlns:swi="http://

  • Interface creations Problem

    I am new to interface design. I have a main class (class A) instantiate a new contructor from class B which extends JPanel that draw images from a newly instantiated class C. But in my class A, when load a file, I instantiates a new constructor class

  • INTEGRATED MIC ARRAY RECORDS ONLY NOISE

    My laptop is hp dv6 2164 TX. The integrated mic has been working very fine for almost 2 years now. I use it to chat in yahoo messenger. But suddenly it has stopped working. I ve the latest updates, the dafault devices are all correct. The mic doesnt

  • Going to Antarctica

    Going to Antarctica but not getting off the ship. Any suggestions for a telephoto lens. I have Rebel Xsi getting T5i. How about a teleconverter? I can't use a heavy lens.

  • Ipad 1 updates will not load

    my updates will not load  it keeps asking for my password