Custom SQLDeveloper snippets on Mac OSX

http://nomad8.com/oracle_blog.html#unique-entry-id-62

Hi Brian,
Thanks for the tip. What I actually ended up doing which seems to have done the trick is removing the system_cache directory under the SQL Developer Preferences ( ~/.sqldeveloper/system4.0.0.13.80/system_cache/ ). Now I'm not seeing the errors I was seeing before. I'm still poking around to see how things would work with Git version control.
So I presume when I migrated the settings from my previous EA 4 version, one of the things which got copied is this system_cache info. It seems like if this is something which can be regenerated correctly on the next SQL Developer restart, this information should not be included in the migration from a previous version's preferences/connections.
Thanks,
Brian..

Similar Messages

  • How do I bundle a jre with an RCP appl on Mac OSX

    Hi,
    We are making an RCP appl with kepler.
    I want to ship the jre's with the appl.
    On windows I can just ship a jre dir in the root, no problem.
    On the Mac (10.8.4) it does not seem to work, at least not in an obvious way.
    I downloaded the latest 1.7 jre (25) for Mac from the oracle website.
    I tried the following:
    unzip it and put it in a jre dir in the root => not used, falling back to system jre
    same and put '-vm' in the ini => error saying 1.6.0_51 is not supported (huh? I do not even have 1.6)
    I tried exporting an appl (with bundled jre) from eclipse using the product definition. That works but when I look at the generated appl tree I see a jre dir with another jre dir inside it ??? The inner jre dir seems to be a (partial) duplicate of the outer one.
    Ok, sort of at least, now I tried to copy my downloaded jre dir inside itself. That works, but if I remove the contents of one of them it does not work anymore and I do not really want to ship a double jre.
    Can anybody shed some light here?
    What is the optimal way to bundle a jre with an RCP application on Mac OSX?
    Thanks,
    Tom

    I have done this within our product and have it working. It's tricky because if you're using Maven to build, OS X's JRE symlink's libjvm.dylib - which Java's unzip invariably screws up.
    I was only able to get this to work by using Tycho, as the app export within the PDE is just plain broken (and seemingly unmaintained). This bug has been there for quite some time - I don't have any faith in it ever getting fixed, regardless of whatever bugzilla says.
    If you're building RCP apps for distribution - you should probably consider using Tycho anyways; admittedly there's a lot of BS that comes with it, but it's the only seemingly straightforward way to build and package an RCP app in a headless manner for continuous integration. Buckminster is supposedly also a solution - but it has less information and support than Tycho - so YMMV.
    Anyways back to your problem. Using Tycho with some custom maven magic, I was able to solve this. Essentially I downloaded the JRE from Oracle, and uploaded to our Artifactory so I could reference it using maven coordinates. I unpack that tar.gz package into the OS X distribution directory and place the package under the <your app name>.app/jre. Because of the symlink munging - you have to go and fix that, so remove the existing zero byte libjvm.dylib and relink it using ant exec. Now that you have a good JVM, you need to modify the config.ini to use the right JRE. Unfortunately you can only build this on OS X or Linux - Windows is SOL unless you can find a way to use Cygwin or equivalent. Since I'm doing this outside of Tycho's archiving phase (and theres not apparently way to slip my changes in between), I have to recreate the OS X archive.
    Hopefully this helps you solve your problem... I beat my head against the wall trying to fix this for several weeks trying to find a working solution as the error reporting is completely incorrect.
    Anyways, good luck!
    <profiles>
    <profile>
    <id>fix-jre-archives</id>
    <activation>
    <os><family>unix</family></os>
    </activation>
    <dependencies>
    <dependency>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    </dependency>
    </dependencies>
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <version>2.8</version>
    <executions>
    <execution>
    <id>unpack-mac-jre</id>
    <phase>prepare-package</phase>
    <goals>
    <goal>unpack</goal>
    </goals>
    <configuration>
    <artifactItems>
    <artifactItem>
    <groupId>com.sri</groupId>
    <artifactId>oracle-jre</artifactId>
    <version>${distrib.oracle-jre.version}</version>
    <classifier>macosx-x64</classifier>
    <type>tar.gz</type>
    <outputDirectory>${distrib.macosx.x86_64}</outputDirectory>
    </artifactItem>
    </artifactItems>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <version>1.7</version>
    <executions>
    <execution>
    <id>fix-jre-mac</id>
    <phase>package</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <mkdir dir="${distrib.macosx.x86_64}/${distrib.bin.name}.app"/>
    <move file="${distrib.macosx.x86_64}/jre${distrib.jre.version}.jre" tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre"/>
    <symlink action="delete" link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib" />
    <symlink link="${distrib.macosx.x86_64}/${distrib.bin.name}.app/jre/Contents/MacOS/libjli.dylib"
    resource="../Home/lib/jli/libjli.dylib" overwrite="true"/>
    <concat destfile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini" fixlastline="yes">
    <header filtering="no" trimleading="yes">
    -vm
    ../../jre/Contents/Home/lib/server/libjvm.dylib
    </header>
    <fileset file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"/>
    </concat>
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_bak.ini" />
    <move file="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}_temp.ini"
    tofile="${distrib.macosx.x86_64}/${distrib.bin.name}.app/Contents/MacOS/${distrib.bin.name}.ini" />
    </target>
    </configuration>
    </execution>
    <execution>
    <id>remove-director-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>run</goal>
    </goals>
    <configuration>
    <target>
    <delete file="${archive.macosx.x86_64}" />
    </target>
    </configuration>
    </execution>
    </executions>
    </plugin>
    <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.3.1</version>
    <executions>
    <execution>
    <id>manual-archive-mac</id>
    <phase>pre-integration-test</phase>
    <goals>
    <goal>exec</goal>
    </goals>
    <configuration>
    <executable>zip</executable>
    <workingDirectory>${distrib.macosx.x86_64}/..</workingDirectory>
    <arguments>
    <argument>-r</argument>
    <argument>-q</argument>
    <argument>-dd</argument>
    <argument>--symlinks</argument>
    <argument>${archive.macosx.x86_64}</argument>
    <argument>${distrib.root}</argument>
    </arguments>
    </configuration>
    </execution>
    </executions>
    </plugin>
    </plugins>
    </build>
    </profile>
    </profiles>

  • Where to install Thunderbird on Mac OSX for multiple users.

    Hello,
    I would like to install the email program Mozilla Thunderbird on my Mac OSX (10.4.6) computer which is set up with several different user accounts. I am not sure where to install it so that everyone may be able to use it. I would like to install it once so that everyone may use it rather than installing it multiple times (once for each user).
    As you might already know, in Mac OSX when you install a program in the main applications folder, it is available for everyone who uses the computer (available to all accounts). However, the trouble is, that although the actual Thunderbird program is available to all users the profile is not. The profile obviously is an important component of the Thunderbird mail program as it contains all the actual mail messages. When Thunderbird is installed, by default the profile folder is placed in the users home Library folder at:
    users home folder/Library/Thunderbird/Profiles/<Profile name>/
    This location make it impossible for other users to access the profile and therefore Thunderbird will not work for the other users.
    What should I do?
    I have a couple solutions, however I would like to ask for some advice on what others do in this situation which I am sure is fairly common.
    Here are my solutions:
    1. Move the profile folder to a custom location that is accessible by all users in OSX such as the global Library folder (rather than the user's Library folder). Path of global Library folder:
    /library/
    Then let Thunderbird know it was moved to this custom location using Thunderbird's profile manager.
    2. Try to figure out a way in mac OSX that allows the profile folder at this default location:
    users home folder/Library/Thunderbird/Profiles/<Profile name>/
    to be accessible by all users.
    Ownership and permissions need to be changed for the profile folder maybe?
    3. Install thunderbird multiple times - once for each user - each with their own profile. The problem with this is then there will be multiple installations of the same program and they will not be able to share the same profile folder - which is what I would like to do - if possible.
    I have a feeling that solution 1 is the more logical solution.
    PS I am using Mac OS 10.4.6 (Tiger) with Thunderbird 1.5.0.4
    Thanks for any advice.

    Yup, its me again Always seem to have a question for the group
    Thanks Mulder and Scott! I am sure glad I asked for your advice. I am completely new to the multi-user environment of OSX - as you can tell. (I guess I am still in OS9 thinking mode where there was only one user.)
    Scott wrote:
    "Mail can be configured to download any new email, but not remove it from the server until it is removed from the Mail application. This way, the email can be downloaded to multiple clients across multiple accounts."
    Interesting. Thanks for pointing this out Scott. Good to know. This would seem to me to be similar to IMAP in some ways. This would be a good way to work in a multi-user environment. This is good info to be aware of.
    It sounds like an interesting way to work.
    Thanks to both of you for steering me aware from the difficulty of attempting to place the profile folder outside the home directory. This sounds like it would have been more work than necessary.
    Why am I not using Apple's Mail program? Good question. I thought I would try out Thunderbird for a while - and maybe switch to Apple Mail later - just to see which one I prefer. I am a web developer and I have always liked the open source community and I thought it would be beneficial for me to become as familiar as possible with all the Mozilla products (Firefox and Thunderbird). As well, it keeps me somewhat on the same wavelength as my PC friends, of whom many use this program too. I don't want to be too much out of touch with my mac. I might try Mail later. Thunderbird has been great so far. It has excellent spam recognition abilities and you can train it too to detect spam.
    Scott the "Family account" idea is an awesome idea. Thanks.
    I have learned a lot from this post. This gives me a few logical solutions. As Mulder points out it is best to keep users' profiles separate. This makes it simpler. Excellent advice. I could still install the Thunderbird application in the global application folder and then each user account can open this Thunderbird application from their own account and configure the mail client with their own profile. All users will be using the same Thunderbird application but with their own profiles. Yes, thats it. I tried this out and it seems to work now - didn't seem to work earlier because I didn't know what I was doing
    Another idea could be, if I really need to share one single profile, would be to follow Scotts advice and just set up a "Family account". Very simple solution. Nice idea.
    So, those are the two top solutions.
    Furthermore, I could use a mix of both strategies. For mail accounts that could be shared ([email protected]) I could create a "Family account" in OSX, as Scott detailed above, and then for mail accounts that are for each individual user ([email protected]), I could be sure they have separate profiles as detailed in Mulder's post.
    Thanks for all these helpful ideas!

  • 3050A Scanner won't talk to my Mac OSX 10.6.8

    I originally had the issue where the scanner was simply scanning a portion of the page (mentioned and solved in another thread here). However, my problem has now grown....
    I was temporarily able to the scan images correctly by going through the Applications folders and clicking on the Scan 3 icon and directing the scan from this. However, now even this won't work and the scanner doesn't communicate at all with my Mac OSX 10.6.8 - I can't even get it to scan from the control panel on the product. The printer works fine - however I haven't acutally checked the printer again since doing the following:
    I have uninstalled the software and reinstalled. I have checked for updates and it is indicating that I have updated software, yet when I click on HP Utility, I get the following error msg:
    Some components installed on your computer were developed for another version of HP Utility. These components will not be loaded and some functionality related to your device will not be accessible. Please click HP Support item on the toolbar to visit HP Online Support site and download the latest versions of HP software.
    I did this but I keep getting the msg that my software is up to date. So what now?
    I have noticed that there are 2 scan icons in the Applications folder and one of them doesn't register the product at all when clicked. The Scan 3 icon used to work, but now just perpetually tries to open a connection with the printer and never can, when I try to cancel it it then goes into perpetual canceling mode and the only way I can shut it down is to Force Quit.
    Any suggestions on how to remedy this before I throw my new HP 3050A off of the balcony 
    This question was solved.
    View Solution.

    Hi,
    Please follow the steps below to fully remove any software component and reinstall the software:
    First, completely remove the software using the scrubber function:
    **Please be aware that performing the next steps will remove any installed HP Software.
    1. Click on Go menu (Click the desktop, then look at the menu in the bar at the top of the page)
    2. Select Applications
    3. Select the Hewlett-Packard folder
    4. Double-click HP Uninstaller application
    5. Follow the uninstallation till prompted to select a device to uninstall
    6. Press and hold Control + Alt + Cmd keys on the keyboard simultaneously while you click on Uninstall
    7. approve any prompt to uninstall any HP Software.
    Next, repair the disk permissions to avoid any possible issue:
    1. Open the the Applications folder.
    2. Go to the Utilities folder.
    3. Double-click on Disk Utility.
    4. Select the hard drive containing the boot volume.
    5. Go to the First Aid tab and select Repair Disk Permissions.
    Note: This process may take several minutes depending on the Mac and amount of permissions that need to be repaired. The Progress Log will indicate when the proccess has been completed.
    Next, Reset the printing as following:
    *Be aware that resetting the printer system will remove any existing print queue and reset any customized driver settings.
    Click the Apple menu, and then click System Preferences .
    Select Print & Fax.
    Right-click (or Ctrl + click) your product in the Printers list in the left panel, and then click Reset printing system .
    Click OK to confirm the reset.
    Type your user Name and Password .
    Click OK . The printing system resets.
    Now install the latest Full Feature Software below:
    http://ftp.hp.com/pub/softlib/software12/COL37730/al-93167-1/Deskjet-3050A-J611-series_v12.7.0.dmg
    Install any available HP update by clicking the Apple icon and then Software Update.
    Finally, install the patch below to fix the scan cropping issue and be able to update the settings:
    http://ftp.hp.com/pub/softlib/software12/COL41837/mp-101655-1/HP_Scan_for_Mac_OS_X_10.7_Update.dmg
    Please let me know of any further issue,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • MAC OSX 10.9.4 - RD Version 8.0.7 (build 24875) and Excel 2010

    On a mac osx 10.9.4, running MS remote Desktop version 8.0.7 (24875)
    When in an excel spreadsheet, if I open the Format Cells window and click on the Fill tab, it crashes my RD Session every time.
    I originally tested under 8.0.6 (24875) and it worked fine.  The problem is compounded because when you attempt to log back in the Fill tab is still on the screen and it crashes again so the machine becomes unavailable for remote connections unless
    someone closes the window.  If I do any color work with the paint bucket from the Home tab,  no problem.
    Any thoughts.

    Jeremy, thanks for your post. 
    I rebooted the device and uninstalled and reinstalled.  Same result.  This is happening on at least 2 other Mac that I am aware of, so it seems it is not local to this particular machine.
    Below is the opening snippet to the error log.  Please let me know if you need more.
    Process:        
    Microsoft Remote Desktop [2846]
    Path:/Applications/Microsoft Remote Desktop.app/Contents/MacOS/Microsoft Remote Desktop
    Identifier:      com.microsoft.rdc.mac
    Version:         8.0.24875 (8.0.24875)
    App Item ID:     715768417
    App External ID: 586353589
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [162]
    Responsible:     Microsoft Remote Desktop [2846]
    User ID:         501
    Date/Time:       2014-07-14 15:45:33.957 -0500
    OS Version:      Mac OS X 10.9.4 (13E28)
    Report Version:  11
    Anonymous UUID:  81FF2B9C-1B43-89FC-AC87-CA8063091C3A
    Crashed Thread:  15
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0xfffffffffffffff8
    VM Regions Near 0xfffffffffffffff8:
    --> shared memory         
    00007ffffffaa000-00007ffffffab000 [    4K] r-x/r-x SM=SHM  

  • Mac OSX wont reognise my internal hard disk drive

    I have a problem where for some reason when I start up my Macbook Pro (intel core duo) it does not detect the internal hard disk drive at all. I have run a hardware test and it shows no problems whatsoever. I have tried resetting the PRAM etc and to no avail. Yesterday the system hung and I tried to force quit and it wouldn't do anything so eventually I held down the power key and when it tried to reboot this is the problem I was faced with (it would boot up with the "no entry" sign). I accepted complete defeat and went to completely re-install OSX however it doesn't even show the internal hard drive when I wait for it to give me install destinations. I had tried seeing the hard drive through disk utility however it only shows the install DVD and that's it in the sidebar. I resigned myself further to thinking either the logic board or the HDD had packed in all and I took it round to my brother in law to see if there is anything he could do without opening the machine (he is Oxford educated and writes programmes etc so is very knowledgable), now this is the part that has miffed us both, he started it up using a Linux disc and once running, Linux see's the hard drive with no problems. He has been able to access the HDD with absolutely no problems under Linux both reading and writing to it. I even took my Mac Mini round and he booted them both up in Linux and completely copied Mac OSX from the mini to the macbook pro but still when I try booting up its as if the HDD isn't even there. Why can Linux see the drive and not Mac OSX? Please don't be affraid to get very technical in your answers as they may mean nothing to me but will probably all make sense to my brother in Law. Any sugestions at all would be greatly accepted.

    Dear mcdkev,
    You guys may have made a big error cloning the Mini HD into the MBP. They both have very different drivers and hardware settings and their OS X versions are customized to fit the hardware. That is why each mac comes with it's own version of OS X and their backup disks. That's a reason why it did not work.
    Ok, so now that you do not have any of the original info on the MBP try the following:
    Use linux to scan the disk surface & repair any problems.
    Reformat the drive as DOS or FAT 32. (I wouldn't go into any linux specific format unless you can "Apple" format it, which I don't think linux has that option.)
    Now, the MBP should be able to see it's drive...
    boot from the OS X DVD , from the Utilities menu choose Disk Utilities, partition the drive as GUI file system (in case the linux format made the drive a "system boot record", you do not want that... )
    Then format the drive as "OS X Extended Journaled"
    Now go back to install and install your original basic set of OS X (the factory default).
    *If nothing works, please do take your MBP to the Apple store or to a certified tech before you do more damage to the drive and it becomes unusable ...*

  • Adobe Premiere CC 2014, regularly licensed (Mac Pro early 2008, Mac OSX 10.9.4).Adobe Premiere CC 2014, media offline, not playing, unusable.

    Adobe Premiere CC 2014, regularly licensed (Mac Pro early 2008, Mac OSX 10.9.5, Graphic Card: NVIDIA GeForce 8800 GT 512 MB).
    Hi guys,
    since the CC2014 version of Premiere has been released (on Creative Cloud) I'm experiencing - really often - the MEDIA PENDING (yellow background) issue... even if the clip can be found right clicking and selecting "reveal in finder" or "reveal in project", in the timeline the clip can't be played. Not to mention the many many problems the app is causing stopping working suddenly and obligating me to restart the system to have it regularly working again (usually it stops reproducing the video, only the audio stays alive, but the playhead seems freezes there where I left it).
    One more problem: all the app (and customized) keyboard shortcuts are gone. Totally disappeared (this happened just after the last update, CC v8.1 Caravan. Synching from CC was unsuccessful.
    Please don't suggest me to contact the adobe italian service to have an help... the last time (almost the same problem) they just made me lose time with some basic procedure checks that I knew were not leading me anywhere.
    I ask sorry for my polemic tone, it's a few months that Adobe Premiere is not working anymore as before. And you can't immagine how many hours I've lost.
    Thank you very much,
    My best regards,
    Stefano Bianchi.

    Kevin-Monahan wrote:
    Also, a 512 MB VRAM GPU is really underpowered
    Guys, would you suggest me a new graphic card (in case, which model on this Mac - would be great a 4 or 6 MB VRAM GPU) or a new Mac Pro? This is still a great machine, but it's starting becoming unusable due to this Premiere issue (that is day by day more severe).
    Thanks a lot for any suggestion,
    Stefano.

  • What is the latest update available for Mac OSX 10.5.8 that will allow me to get the latest update for iTunes.  I really need to update my iPhone and CAN'T!!  GRRRR!!!

    What is the latest update available for Mac OSX 10.5.8 that will allow me to get the latest update for iTunes.  I really need to update my iPhone and CAN'T!!  GRRRR!!!

    Minimally you need Snow Leopard or greater:
    Upgrade Paths to Snow Leopard, Lion, and/or Mountain Lion
    You can upgrade to Mountain Lion from Lion or directly from Snow Leopard. Mountain Lion can be downloaded from the Mac App Store for $19.99. To access the App Store you must have Snow Leopard 10.6.6 or later installed.
    Upgrading to Snow Leopard
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard — Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.
    After you install Snow Leopard you will have to download and install the Mac OS X 10.6.8 Update Combo v1.1 to update Snow Leopard to 10.6.8 and give you access to the App Store. Access to the App Store enables you to download Mountain Lion if your computer meets the requirements.
         Snow Leopard General Requirements
           1. Mac computer with an Intel processor
           2. 1GB of memory
           3. 5GB of available disk space
           4. DVD drive for installation
           5. Some features require a compatible Internet service provider;
               fees may apply.
           6. Some features require Apple’s iCloud services; fees and
               terms apply.
    Upgrading to Lion
    If your computer does not meet the requirements to install Mountain Lion, it may still meet the requirements to install Lion.
    You can purchase Lion by contacting Customer Service: Contacting Apple for support and service — this includes international calling numbers. The cost is $19.99 (as it was before) plus tax.  It's a download. You will get an email containing a redemption code that you then use at the Mac App Store to download Lion. Save a copy of that installer to your Downloads folder because the installer deletes itself at the end of the installation.
         Lion System Requirements
           1. Mac computer with an Intel Core 2 Duo, Core i3, Core i5, Core i7,
               or Xeon processor
           2. 2GB of memory
           3. OS X v10.6.6 or later (v10.6.8 recommended)
           4. 7GB of available space
           5. Some features require an Apple ID; terms apply.
    Upgrading to Mountain Lion
    To upgrade to Mountain Lion you must have Snow Leopard 10.6.8 or Lion installed. Purchase and download Mountain Lion from the App Store. Sign in using your Apple ID. Mountain Lion is $19.99 plus tax. The file is quite large, over 4 GBs, so allow some time to download. It would be preferable to use Ethernet because it is nearly four times faster than wireless.
         OS X Mountain Lion — System Requirements
           Macs that can be upgraded to OS X Mountain Lion
             1. iMac (Mid 2007 or newer) — Model Identifier 7,1 or later
             2. MacBook (Late 2008 Aluminum, or Early 2009 or newer) —
                 Model Identifier 5,1 or later
             3. MacBook Pro (Mid/Late 2007 or newer) — Model Identifier 3,1 or later
             4. MacBook Air (Late 2008 or newer) — Model Identifier 2,1 or later
             5. Mac mini (Early 2009 or newer) — Model Identifier 3,1 or later
             6. Mac Pro (Early 2008 or newer) — Model Identifier 3,1 or later
             7. Xserve (Early 2009) — Model Identifier 3,1 or later
    To find the model identifier open System Profiler in the Utilities folder. It's displayed in the panel on the right.
    Are my applications compatible?
             See App Compatibility Table — RoaringApps.
         For a complete How-To introduction from Apple see Upgrade to OS X Mountain Lion.

  • Can I use this solution if using Mac OSX 10.9.5?

    Illustrator CS4 crashes whenever I attempt to print.  It crashes before the print box even appears.
    I found a possible solution here from Adobe Crash printing | Illustrator, InDesign | CS3, CS4 | Mac OS 10.7
    but it refers to 10.7 and I'm using a Mac OSX 10.9.5.  Does anyone know if I should use this solution??
    Any ideas or input greatly appreciated.  Thanks so much!

    By default, OS X Mavericks 10.9.5 Network MTU is set to 1500. If you perform the following at your SMB server, with an MTU of 1500, you will likely receive Message too long, and the SMB share takes a very long while to mount. This might be the contributing factor that has you believe it is an SMB MTU configuration issue.
    ping -c 1 -D -s 1500 smbserver
    If you dial the Network MTU down in a custom setting, the ping is immediate, and the SMB share mounts briskly. I tried values in small decrements until the message too long ceased.
    ping -c 1 -D -s 1472 smbserver
    I have done some searching and I do not see how, in Apple's current SMB implementation, that one can configure /etc/nsmb.conf to reduce SMB MTU size. See man nsmb.conf.
    More on this subject.

  • Free filter or/ plug-in set? for "OIL PAINT" - to download & add to Photoshop CS 5 (Mac OSX 10.8) ?

    I have the CS 5 Suite instaled on 2 of my Macs (per Adobe licensing).  I upgraded (aftwrward, in 2012) just the Photoshop CS 5 app to Photoshop CS 6. There is a GREAT filter [then new] with PS CS 6 called "Oil Paint". I hope to be able to find out from anyone if there a free and compatible: filter, filter set,  or plug-in(s) set, so I can add the filter "OIL PAINT" - to download & add to Photoshop CS 5 (Mac OSX 10.8) ?
    Many thanks.
    mdgiamo
    USA
    PS - I downloaded Pixel Bender - but that does not seem to provide what I am looking for..! In fact - after I installed it - it is NOT embedded in Photoshop CS 5, contrary to Adobe's claim that once you install it - it will be there in CS 5. Pixel Bender opens separately; and looks to be [only] a-user-definable add-on for PS CS 5+  [and done via custom user progamming changes - which on first glance did NOT seem easy to figure out. And I AM a programmer, beside being a highly creative person (for decades), and with all forms of digital media).

    Please advise: I have the [circa 2010] 64-bit v.CS 5 Photoshop (et.al) -  that has been updated by Adobe a few times, by my choice- or by their automatic update method (which I try NOT to utilize, automatically: I like to know what it is that is being installed BEFOEit happens. Think the now unstoppable Google Chrome v32 for Macs. Unbelievable gall from Google; and it breaks anything that is supposed to run  /stream from the web in Apple Inc's QUICKTIME). Anyway: When I clicked on your provided link (above), it brought meto the PIXEL BENDER page, including numerous archived PLUG-IN downloads; Neither of the URIs (for a plug-in that enables OIL PAINT filter in PS CS 5)  - for any of the offered 64-bit Mac OXS plug-ins /downloads. Nothing happens. Can you please explain more; or perhaps what it is I am doing wrong? NOTE: I did not "sign in" at the time, to the Adobe site with my Adobe account ID /pwd; but then - I did not think I HAVE to sign in download a freely available plug-in.
    Thanks very much.
    MDGiamo

  • What is the latest MAC OSX that my Macbook 2,1 can support?

    What is the latest MAC OSX that my Macbook 2,1 can support?  It came with 10.4.11Lion.
    I am upgrading my harddrive and would love to install the most current OS that I possibly can. 
    I also have a Macbook 3,1 with OSX 10.5.8 Leopard that I want to do the same with.  If they can both run the same OSX that would be helpful too.
    Thanks a MILLION!

    Both of those MacBooks can run up to 10.7 Lion. (10.4.11 is Tiger) It's the RAM that you'll need to upgrade.
    First you'll need to upgrade to 10.6 Snow Leopard.  The 10.6 Snow Leopard DVD is in the Apple online store. You can get it for $19.99. After you’ve installed that then download the 10.6.8 combo updater to finish it off. http://support.apple.com/kb/DL1399 You will need to be running 10.6.8 to access the App Store to order Lion, http://store.apple.com/us/product/MC573/mac-os-x-106-snow-leopard
    System Requirements for 10.6:
    Mac computer with an Intel processor
    1GB of memory
    5GB of available disk space
    DVD drive for installation
    Some features require a compatible internet service provider: fees may apply.
    You can put two 2gb RAM sticks in your model 2,1 but it can only use 3,3gb. This is a hardware limitation and cannot be changed.
    http://en.wikipedia.org/wiki/3_GB_barrier
    http://www.everymac.com/systems/apple/macbook_pro/faq/macbook-pro-core-2-duo-3-g b-memory-limitation-details.html
    OWC tests have found that there is a slight speed increase with having two 2gb sticks in rather than one 1gb and one 2gb. Your model is in the gray lines at the bottom of the graph. http://eshop.macsales.com/shop/Memory_Benchmark/Apple_MacBook/
    You can upgrade from 10.4 straight to 10.6 with no problems as long as you have at least 1gb of RAM. Any program that runs under 10.4 should run under10.6. See this list for third party programs compatibility with 10.6: http://snowleopard.wikidot.com/  You might have to upgrade some drivers for printers, etc.... And you will have to install Rosetta if you have any Power PC applications 
    http://www.macobserver.com/tmo/article/snow_leopard_installing_rosetta/  
    I recently upgraded an older MacBook (Early 2006 model 1,1) straight from 10.4 to 10.6.
    Once you are at 10.6.8 Lion is still available from Apple. You will have to call Apple Customer Care 1-800-692-7753 or 1-800-676-2775. to purchase it. Then within 3 days you will get an email with a code which you can use to download Lion from the App Store. Or go to http://store.apple.com/us/product/D6106Z/A/os-x-lion and purchase it there. The price is $19.99.
    You must have at least a Late 2006 model 2,1 MacBook.
    Lion will require at least 2gb of RAM but really needs 4gb to run smoothly.
    As for third party programs see this list for compatibility with 10.7 http://roaringapps.com/apps:table
    Also Lion doesn't run any Power PC programs. To see if you have any Power PC programs go to the Apple in the upper left corner and select About This Mac, then click on More Info. When System Profiler comes up select Applications under Software. Then look under Kind to see if any of your applications are listed as Power PC. Universal and Intel will run under Lion.
    Before Mac switched to Intel processors in 2006 they used Power PC processors from 1994 to 2005. Power PC 601 through 604, G3, G4 and G5. Applications written for the Power PC processors need the application called Rosetta to run on Intel processors. This was part of the Operating System in 10.4 and 10.5 but was an optional install in 10.6. With 10.7 Lion Apple dropped all support for Power PC applications.

  • I have a Mac OSX 10.6.8

    How do I connect my Mac OSX 10.6.8 to a wireless Brother printer?

    If this is a current model printer and the instruction manual is missing, contact brother and they will advise you of a link to download it.  This is the UK contact point; note the customer services at the top right.
    Printers, Scanners, Web Conferencing, Business Solutions | Brother UK

  • Mac OSx/5508/3702i dropping issue

    Hi all,
    I have installed dozens of WLCs but with this one customer rollout I have hit an impasse.  The customer has a 98% MacOS device environment running a 5508 HA pair and 3702i APs.  The Mac OSx users randomly lose access even when their device sits in one place within 10 feet of a below ceiling tile hung AP. Disconnects can't be recreated as no particular behavior seems to trigger the drop.  Also for some clients there is severe latency(>1000ms) just pinging the WLAN gateway. Pings from Gateway SVI to AP are fine(<5ms) Debugs imply AP is too busy to handle an authentication request even thought the AP only has 10 users and an insignificant amount of traffic flowing through it. This issue is not dedicated to just one AP either as folks all over the 30 AP environment suffer similarly.  Air Magnet shows no coverage holes.  Windows devices appear ok.
    I am more interested if this is has happened to anyone else and if anyone has had something that has fixed this issue for them instead of troubleshooting.
    TAC case has been open over 4 months with escalation and Backbone TAC involvement with no luck.
    Details:
    - Mac OSx versions are random and those running Yosemite do have the latest patch.
    - WLC versions 7.6.120, 7.6.130, 8.0.102MR, and 8.0.110 have not corrected the problem.  (although fewer errors are seen in the debugs)
    - Although APs are actually local to the controller, the customer has them in Flexconnect for HA and Bandwidth reasons.
    - problem happens with Band Steering and also with Dedicated 5Ghz SSID (2.4 unusable due to density of APs using 2.4 in surrounding buildings)
    - Clear Air 5ghz report score above 97%
    - tried Legacy Beam forming, no joy.
    - EDRRM is on
    - Fast Transition is on
    - Fast SSID switching is on
    - Problem occurs with 20 and 40 Mhz channel bonding.
    - 802.11k sticky cache has been tried to no avail.
    - FUS is at 1.8 (I hear FUS 1.9.0.0 not only fixes the subsystem bugs but may iron out problems with the Operation side too)
    - SSID running dynamic vlan assignment from NPS Server
    - 6 SSIDs total
    - No DFS channels being used
    - SSID timeout has been turned off
    - Data rates below 9Mbit are disabled
    - APs are roughly 25 feet apart.

    Thanks Leo,
              Problem happens to multiple versions of OSx, those running Yosemite do have the latest patch.  Unfortunately I don't think disabling N is going to be feasible.  Due to the High density rate there is no b/g to fallback on (2.4 Ghz is completely saturated).  So that would leave users with basically just 802.11a?  I do have a customer with similar set up running 5508 (v7.6.130) with 3702 in flexconnect.  The difference is the1.9.0.0 FUS has been applied and they run Pre-shared key authentication. Where as the problem customer runs older FUS and Dynamic Radius based vlan assignment.

  • How to implement Mac OSX Finder color labels

    Is it possible to support color labels for files and folders in Mac OSX Finder in a custom connector? It would be nice to implement this in our connector as it's a common way for users to do some lightweight status workflow.
    If it's possible, a code sample would be really helpful.

    Is it possible to support color labels for files and folders in Mac OSX Finder in a custom connector? It would be nice to implement this in our connector as it's a common way for users to do some lightweight status workflow.
    If it's possible, a code sample would be really helpful.

  • Free Font Viewer For Mac OSX

    Font Sampler for Mac OSX is a small freeware utility to help you view your fonts. Font Sampler allows you to view all your fonts in one big list. It supports different colors of backgrounds and text, size, your own custom phrase to view the fonts in, and the ability to underline the fonts.
    http://dotsw.com/fontsampler.html

    I can understand why they make it look like that, but the older versions are free, it's just the new pre-release that actually requires it, you can skip the donation here...
    http://www.neooffice.org/neojava/en/download.php#download
    For Intel Macs...
    http://www.neooffice.org/neojava/en/mirrors.php?file=NeoOffice-3.0.2-Intel.dmg
    For PPC Macs...
    http://www.neooffice.org/neojava/en/mirrors.php?file=NeoOffice-3.0.2-PowerPC.dmg

Maybe you are looking for

  • Error in deployment of ESS package

    Hi, We are importing the business package for ESS. During the import of PCUI_GP16.sca; ESS16.sca components(version selected based on the SAP note 761266) through SDM we are getting the error,due to which deployment fails. Error log file is pasted be

  • NEF thumbnails in CS5 Bridge

    The thumbnails of RAW images do not appear in Bridge when loaded from my Nikon D7000.  They appear in the photo downloader and I can see and alter the images in Camera Raw, but I just get the generic NEF icon in Bridge, making it difficult to select

  • HD Video Recording app missing?

    HD Video Recording app missing? I restored my iPhone 4S with my latest backup from previous model, but HD camera seems to be lost. What should I do? Thx for any help.

  • Upgraded from CS 6 to CC 2014 with CS4 Extension

    I recently upgraded from Adobe CS6 to CC 2014. I had a custom DW CS4 extension installed and working in CS6. When I converted the mxp file to a zxp file, and then attempted to install the zxp file to CC 2014, I received an error message stating "THe

  • Wiped the T42p (2373-GUU) and can't fix the drivers.

    Hello, I'm hoping some of you can help me out with this. It's extremely frustrating. Our old laptop got hit by viruses and I had to wipe it's OS. The problem is, I had no discs so now I can't find the drivers. I've been downloading and installing jus