Shapes for Sun Machines

Hi ppl
Hope it's not an RTFM... I recently installed SunMC 3.6.1 from scratch for the first time. Now I'm adding machines on the network to be monitored. However I wonder, why there are no shapes for actual Sun hardware. I mean, nobody is using an SS1 today but there is a shape for it. On the other side, even the v210 or an SF4800 is missing.
Are there any shapes for download?
Rgds,
Dominik

Hi Dominik,
Hope it's not an RTFM... I recently installed SunMC
3.6.1 from scratch for the first time. Now I'm adding
machines on the network to be monitored. However I
wonder, why there are no shapes for actual Sun
hardware. I mean, nobody is using an SS1 today but
there is a shape for it. On the other side, even the
v210 or an SF4800 is missing. The list of icons a SunMC Server has to represent systems is determined by what hardware addon packages you said "yes" to when you installed it. When you install Agents you only need to install the addons for the hardware the Agent is running on ... but the Server needs to know about all possible systems that may be reporting to it.
When you ran es-inst it asked about some hardware addons such as these:
ELP Config-Reader Monitoring
Desktop
Sun Fire Entry-Level Midrange System
Netra
Sun Fire Midrange Systems Domain Administration
Sun Fire High-End Systems Monitoring
Volume System Monitoring
Workgroup Server
Generic X86/X64 Config Reader
For example, your 4800 is part of the Sun Fire Midrange addon.
If you re-run es-inst it will re-prompt you for addons you may have said no to last time. A list of what hardware maps to what addon can be found here:
http://docs.sun.com/app/docs/doc/819-5419/6n7gl536u?l=en&a=view
Regards,
[email protected]
http://[email protected]

Similar Messages

  • Oracle for Sun Solaris (Intel Platform)

    I want to know that if oracle for sun solaris 8 (intel platform) is available and anyone has installed it. On OTN only oracle for sun solaris (For SPARC ) is available for download.
    if anyone know it for solaris 8 (intel platform) then please tell me where to get it from.
    rohit
    [email protected]
    So that we may better diagnose DOWNLOAD problems, please provide the following information.
    - Server name ORACLE 9I DATABASE
    - Filename
    - Date/Time 5 JULY 2K2
    - Browser + Version IE 6
    - O/S + Version SUN SOLARIS
    - Error Msg

    I didn't see anything on the Sun site, but the disk arrived with my Solaris media. I have installed it on one machine (you need to create the "oracle" user id, the "dba" group, and you must set the tunable parameters for shared memory to install the software and example database.)
    I tried to install a second machine and the Oracle installer terminates half way through without errors. I'm still working that issue.

  • Custom Shape for JFrame

    HI,
    I need to give the custom shape for the JFrame. I used the setWindowShape method and i got the shape for the window. In my application, many custom shaped windows are occurring but all are same shapes. So i plan to keep the Custom Shaped window class as base class. If i need shaped window then i will create the class which extends the Custom Shaped window class through that i can get the custom shaped window, but i am not getting the custom shaped window.
    Here is the code for the custom shaped window. It is working fine.
    import java.awt.*;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.geom.Ellipse2D;
    import javax.swing.*;
    public class ShapedWindow extends JFrame {
         public ShapedWindow() {
              super("ShapedWindow");
              try {
                   UIManager
                             .setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
              } catch (InstantiationException e) {
                   e.printStackTrace();
              } catch (IllegalAccessException e) {
                   e.printStackTrace();
              } catch (UnsupportedLookAndFeelException e) {
                   e.printStackTrace();
              JPanel jpnl = new JPanel() {
                   public void paintComponents(Graphics g) {
                        g.setColor(new Color(64, 144, 196));
                        g.setColor(Color.WHITE);
                        g.drawLine(270, 120, 395, 120);
              jpnl.setLayout(new FlowLayout(FlowLayout.RIGHT, -2, 2));
              jpnl.setBackground(new Color(1, 107, 177));
              this.setLayout(new BorderLayout());
              JButton jbtn1 = new JButton("Cancel");
              jbtn1.setBackground(new Color(1, 107, 177));
              jbtn1.setForeground(new Color(255, 255, 255));
              jbtn1.setFocusPainted(false);
              jbtn1.setBorderPainted(false);
              jbtn1.setContentAreaFilled(false);
              // jbtn1.setBounds(325, 90, 75, 25);
              jbtn1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        JOptionPane.showMessageDialog(null, "Cancel");
              JButton jbtn2 = new JButton("OK");
              jbtn2.setBackground(new Color(1, 107, 177));
              jbtn2.setForeground(new Color(255, 255, 255));
              jbtn2.setFocusPainted(false);
              jbtn2.setBorderPainted(false);
              jbtn2.setContentAreaFilled(false);
              // jbtn2.setBounds(285, 90, 55, 25);
              jbtn2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent evt) {
                        JOptionPane.showMessageDialog(null, "OK");
              jpnl.add(jbtn2);
              jpnl.add(jbtn1);
              JPanel jpnl1 = new JPanel();
              jpnl1.setBackground(new Color(1, 107, 177));
              this.add(jpnl1, BorderLayout.CENTER);
              this.add(jpnl, BorderLayout.SOUTH);
              this.setResizable(false);
              this.setBackground(new Color(1, 107, 177));
              this.setSize(new Dimension(500, 150));
              this.setLocationRelativeTo(null);
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              Polygon poly = new Polygon();
              poly.addPoint(1, 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 1, 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 1, ShapedWindow.this
                        .getHeight() - 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 100, ShapedWindow.this
                        .getHeight() - 1);
              poly.addPoint(ShapedWindow.this.getWidth() - 130, ShapedWindow.this
                        .getHeight() - 30);
              poly.addPoint(1, getHeight() - 30);
              poly.addPoint(1, 1);
              com.sun.awt.AWTUtilities.setWindowShape(ShapedWindow.this, poly);
         public static void main(String[] args) {
              JFrame.setDefaultLookAndFeelDecorated(true);
              Window w = new ShapedWindow();
                 w.setVisible(true);
    }In the below code, i kept the base class jfrmShape class, for this i set the custom shape. childShape class which extends the jfrmShape. But i didn't get the shape. Please find the mistake and help me.
    package SWindow;
    import java.awt.Polygon;
    import javax.swing.JFrame;
    import javax.swing.SwingUtilities;
    import PWGUI.ShapedWindow;
    public class jfrmShape extends JFrame {
         public jfrmShape() {
              Polygon poly = new Polygon();
              poly.addPoint(1, 1);
              poly.addPoint(jfrmShape.this.getWidth() - 1, 1);
              poly.addPoint(jfrmShape.this.getWidth() - 1,
                        jfrmShape.this.getHeight() - 1);
              poly.addPoint(jfrmShape.this.getWidth() - 100, jfrmShape.this
                        .getHeight() - 1);
              poly.addPoint(jfrmShape.this.getWidth() - 130, jfrmShape.this
                        .getHeight() - 30);
              poly.addPoint(1, getHeight() - 30);
              poly.addPoint(1, 1);
              com.sun.awt.AWTUtilities.setWindowShape(jfrmShape.this, poly);
              com.sun.awt.AWTUtilities.setWindowOpacity(jfrmShape.this, 0.56f);
                    setDefaultLookAndFeelDecorated(true);
              setTitle("Shaped Window");
              setSize(300, 300);
              setVisible(true);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    package SWindow;
    import javax.swing.JFrame;
    public class childShape extends jfrmShape{
         public static void main(String [] args)
              new childShape().setVisible(true);
    }

    In Keynote 6 there is no facility to save shape styles.

  • How to run UNIX command to a remote SUN machine through Java from Windows

    Dear All:
    I want to write one Java program which will be run on my Windows Machine.
    My Java program will will login in a SUN machine remotely say telnet and run some command.
    I want all those command output in my client windows PC for futher processing.
    Can anyone help me doing this?
    BR,
    P. Gupta

    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class TelnetSocketDemo {
    static String list="";
    static String listArr[], hostArr[];
    static String host="", lhost="";
    public static void main(String[] args)throws IOException
    ExecuteUnixCmd obj=new ExecuteUnixCmd();
    // InetAddress localMachine = InetAddress.getLocalHost();
    // host=localMachine.getHostName();
    list=obj.ExecuteUnixCmdMain();
    int port=getPort(list,"Live");
    System.out.println(port);
    Socket sock = null;
    String prompt=">";
    String output = null;
    try
    // Connect to the PoleStar process.
    sock = new Socket("localhost",port);
    sock.setSoTimeout(60000);
    // Get the I/O streams for the socket.
    PrintWriter out = new PrintWriter(sock.getOutputStream(), true);
    InputStream in = sock.getInputStream();
    // Get to the silent console port.
    // out.println("S");
    // readToPrompt(in,area);
    // Fetch the response to the command.
    out.println("list all");
    output = readToPrompt(in,prompt);
    //System.out.println(output);
    //out.println("quit");
    //output=readToPrompt(in);
    catch (Exception ex)
    String msg = "unable to get Connection for PoleStar";
    finally
    try
    // close socket
    sock.close();
    catch (Exception ex)
    System.out.println(output);
    private static String readToPrompt(InputStream in,String prompt)throws IOExcepti
    on
    byte[] mByte = null;
    int iStrt = 0, iLen = 2000, nBytes = 0;
    StringBuffer buf = new StringBuffer();
    String s = null;
    boolean bNotFinished = true;
    do
    mByte = new byte[2000];
    nBytes = in.read(mByte, iStrt, iLen);
    if (nBytes == -1)
    break;
    // lost our TCP/IP connection
    // bNotFinished = false;
    // Convert byte stream to a string
    s = new String(mByte, 0, iStrt + nBytes);
    if (prompt.equals("") == false)
    if (prompt.equals(">"))
    if (s.indexOf(0x04) != -1)
    bNotFinished = false;
    // the hub sends the prompt at the beginning and the end
    else if (s.indexOf(prompt) != -1)
    bNotFinished = false;
    buf.append(s);
    } while (bNotFinished);
    return buf.toString();
    public static int getPort(String list, String area)
    int port;
    String listArr[],hostArr[];
    String lhost="";
    listArr=list.split(",");
    for(int i =0; i < listArr.length ; i++)
    lhost=listArr;
    hostArr=lhost.split("#");
    if((hostArr[1].equalsIgnoreCase("connectDev20"))&&(hostArr[0].indexOf(area)!=-
    1))
    port=Integer.parseInt(hostArr[2]);
    return port;
    else
    continue ;
    return 0;

  • Java SDK  on sun machine

    How do i find out the Java SDK is installed or not in the sun machine ?
    What is the command to find the version of the SDK ?
    Thanks .

    Hi, i have set my environment variables for java
    JAVA_HOME : C:\Program Files\Java\jdk1.5.0_15
    path: C:\Program Files\Java\jdk1.5.0_15\bin
    It still points to 1.4. By the way, i never install 1.4 version into my machine personally. I think it comes with vista

  • Unable to recieve any logs from Sun machine....

    Hi,
    I'm using Sun Solaris v10 and i have problem in receiving logs from sun machine. The syslog server is my windows which i want my sun machine to sends logs to (windows machine is ALIVE on default port 514).
    I have edited the syslog.conf file as:-
    t100: Unknown terminal type
    I don't know what kind of terminal you are on - all I have is 't100'.
    [Using open mode]
    "/etc/syslog.conf" 42 lines, 1098 characters
    #ident  "@(#)syslog.conf        1.5     98/12/14 SMI"   /* SunOS 5.0 */
    # Copyright (c) 1991-1998 by Sun Microsystems, Inc.
    # All rights reserved.
    # syslog configuration file.
    # This file is processed by m4 so be careful to quote (`') names
    # that match m4 reserved words.  Also, within ifdef's, arguments
    # containing commas must be quoted.
    *.err;kern.notice;auth.notice                   /dev/sysmsg
    *.err;kern.debug;daemon.notice;mail.crit        /var/adm/messages
    *.alert;kern.err;daemon.err                     operator
    *.alert                                         root
    *.emerg                                         *
    # if a non-loghost machine chooses to have authentication messages
    # sent to the loghost machine, un-comment out the following line:
    #auth.notice                    ifdef(`LOGHOST', /var/log/authlog, @loghost)
    mail.debug                      ifdef(`LOGHOST', /var/log/syslog, @loghost)
    *.info @192.168.50.253:514
    auth.* @192.168.50.253
    *.debug @192.168.50.253
    *.* @192.168.50.253
    # non-loghost machines will use the following lines to cause "user"
    # log messages to be logged locally.
    ifdef(`LOGHOST', ,
    user.err                                        /dev/sysmsg
    user.err                                        /var/adm/messages
    user.alert                                      `root, operator'
    user.emerg                                      *
    )I even have made en entry at /etc/hosts which is given as:-
    *192.168.50.253 asad loghost*
    All this but my syslog server remains empty of any logs yet.
    Is there a way where i could explicitly make Sun machine to generate logs by invoking some methods......as for now its taking for ever to generate logs by the machine.
    Please rectify this problem as I have reached a dead-end making sense of the logging mechanism proposed by the sun machine.

    Try replacing any space characters in the lines you added to syslog.conf with tabs.

  • Taking Remote back up from sun machine

    Hai,
    I am having a Linux machine and Sun Ultra 10 machine Linux machine is a fileserver with tape drive configured and the home directories of the users from the linux server are mounted to the sun machine and the users are able to login in the sun machine I want to take remote back up of all the data from sun machine to the Linux server. Can anybody help me out in this matter. On my Linux server nfsserver is running and on the sun machine nfs client is running. Please help me in this matter.
    Please give me some suggestions how can i do this as early as possible.
    suresh

    The only officially supported backup method is USB drive plugged in.. and it is slow and cannot be automated either. Didn't you know the TC is supposed to last forever and be totally 100% immune to failure!! Any method you dream up to backup the TC other than a drive plugged in involved copy files to a computer and then to another backup.. as it cannot work directly from the TC itself.. that is why it is not a NAS and does not have the standard capabilities like rsync of a NAS.
    I recommend if you have 7 Macs backing up, you get a mini or something cheap and set it up with external drive, and use that for Time Machine. Also use CC or SuperDuper to make an image of each of the computers occasionally as it seems a much better and faster method to restore a computer to working order.

  • Persistent binding for SUN branded Qlogic QLA2300 HBA (qlc driver)

    How to set persistent binding for QLA2300 (Sun branded ) HBA using qlc driver from Sun?
    Are there any CLI's for it?
    Is it done automatically?
    Is there any way by which we can infer that persistent binding is done?
    Platform: Solaris 9 on SPARC

    Qlogic provides (free download w/ drivers) something called SANsurferCLI which gets installed into /opt/Qlogic_Corporation/SANsurferCLI. This command-line-interface program will allow you to adjust and record Target Persistent Binding for that machine. If you don't have it already installed, it is a good idea to use this for other diagnostics of your HBA anyway. Go check their website.
    -Steve

  • Is this bugs for Sun Java System Portal Server 6 2005Q4 (errorStoreDP) ?

    Hi,
    I installed Sun Java System Portal Server 6 2005Q4 under window xp environment.
    I used the following command to deploy war file, it worked for me (because I setup enough services and role for amadmin user), deploy/undeploy was worked very well for me.
    pdeploy deploy -u amadmin -w amAdminPassword -g -p
    amAdminPassword -v portletsamples.war
    Two months later, I did not change anything (configuration) within the two months.
    I use the same deploy/undeploy command to deploy war file again, I got the following error =>
    errorStoreDP (sms-UNKNOWN_EXCEPTION_OCCURRED)
    Message:The user does not have permission to perform the operation.
    Why this condition happened ? is this bugs for sun portal server ?
    I uninstall this sun portal server and reinstall it again, I still got
    the same error message. why ?
    But funny thing is that I format my machine, then install window xp and
    install System Portal Server 6 2005Q4 again, then it works for me again.
    is this reasonable ?
    I really don't know why ?
    Can someone help me ?
    Thanks!

    Hello,
    It seems you are really asking how you should design your application to use portlets.
    Your approach now seems to be that you would just copy your servlets to portlets. You can use the PortletRequestDispatcher to include content from your servlet. See http://portals.apache.org/pluto/multiproject/portlet-api/apidocs/javax/portlet/PortletRequestDispatcher.html
    I also found the following discussion on this topic http://www.mail-archive.com/[email protected]/msg00481.html
    But I don't think I'd recommend that approach for your application. How would you maintain the application going forward? You will have both servlets and portlets to maintain when you change the applicaiton. I assume you will be keeping the servlet application and using it also? Do you want the portlet content to match the servlet content always, or will they display differently?
    Instead, what you might consider an model-view-controller approach and designing a web service (the model) for both applications (servlet and portlet, views) to consume.
    As for the basics of porlet applications, the JSPPortlet will use JSPs for presentation of hte portlet content. GenericPortlet is the default implementation of the Portlet interface. Implementing the portlet interface means you must write the implementation yourself. Here are a couple of good tutorials to get you started on the Portlet spec:
    http://www.javaworld.com/javaworld/jw-08-2003/jw-0801-portlet.html
    http://www.javaworld.com/javaworld/jw-09-2003/jw-0905-portlet2.html
    Also there is this JSE tutorial, but I don't know how current it is:
    http://developers.sun.com/prodtech/portalserver/reference/techart/portlets.html
    Hope that helps.

  • Wireless PCI for Sun Ultra 24?

    Hi
    I'm trying to find a wireless PCI card with appropriate drivers for Sun Ultra 24 with Solaris 10 8/07.
    Can anyone recommend cards that have been validated with this machine / OS combination?
    Help appreciated
    Lance

    Hello Lance,
    have you reviewed the following page ?
    Solaris Ready WIFI Products
    http://www.sun.com/io_technologies/wifi/WiFi0.html
    Michael
    Edited by: MAAL on 27.06.2008 07:10
    Adding a link didn't work as expected ...

  • Maching learning for virtual machines

    Hi All,
    I'm an honours student working in AI and I'm intereted in applying machine learning techniques to virtual machines. What I mean by machine learning is modern supervised classification techniques such as support vector machines, neural networks, genetic programming, linear boosting, etc. I would like to investigate the application of these to, for example, garbage collection: How can the VM use these to heuristically predict when/whether it should apply GC? How can the VM use these to heuristically predict which objects are most likely to require GC soon?
    Before I dive into this I want to read some literature on the subject, but I've been unable to find any, probably because I don't know the appropriate terminology. Can anyone point me in the right direction?
    This is not really specific to the Java VM, but I hope someone here can help me out.

    an honours student, huh? hmm. may i make a suggestion?
    chase girls and waste time with your friends for the rest of highschool and save the nerd stuff for college? just kidding, lol.
    ive just been missing highschool lately (its been 8 long years)!
    as for your question, someone on these forums named PeterKessler
    who works for Sun recommended "Garbage Collection" by Richard
    Jones, ISBN 0-471-94148-4 to me. If you are writing a VM I think you
    can safely go with the classic Dragon Book. I just got the 2nd edition
    which was a hefty $100 but it includes VMs and Garbage Collection
    so it was worth it.
    I have a few generic books on neural nets but none i can really
    recommend. I unfortunately bought 3 of the driest and most
    mathematical books on the subject so id REALLY recommend
    doing some research and getting a good practical "cookbook" style
    book.
    Good luck!

  • Wich Sun machines can boot from SATA disk?

    Hi,
    I would like to know which (newer and older) Sun machines can boot from SATA disks.
    I think this is a feature of the OBP - so the question is:
    Are there any updated OBPs for older Sun machines to boot from SATA disks?
    TIA
    Bernd

    Hi,
    I am aware the limit with earlier openboot revisions that limit ATA drive size to +130GB>>( search the forum for previous threads on this topic ), I recommend using only
    supported drives in Sun SPARC systems. What kind of project are you working on? That's my private test environment. Due to my limited budget I use only older machines there (for example, U10, U30, etc). I was thinking about buying a used V120 or something like that to replace my existing fileserver.
    A V120 with two internal 500 GB harddisks would be perfect for that .
    Looks like I've to wait until used T1000 are available to a reasonable price.
    regards
    Bernd

  • HT201250 Can I partition my external hard drive and use one partion for time machine and the other one for data that i may want to use in different computers?

    I have this doubt. I've just bought an external drive, especifically a Seagate GoFlex Desk 3 tb.
    I want to know if it is recomendable to make a partion exclusively for time machine and let another one so I can put there music, photos, videos, etc that I should need to use or copy to another computer.
    May half and half, 1.5 tb for time machine and 1.5 tb for data.
    I have an internal hard drive of 500 GB (499.25 GB) in my macbook pro.
    Any recommendation?

    As I said, yes. Be sure your Time Machine partition has at least 1 TB for backups.
    1. Open Disk Utility in your Utilities folder.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to two (2). Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed.

  • Can I use my time capsule for time machine back ups and as an external storage device?

    I have a time capsule and have set it up so that my time machine back ups are saved on it, but I would also like to use it as an external hard drive. Is this possible?
    I know nothing about computers so please tell me in very basic terms. thankyou!

    By external hard disk we usually mean one plugged into the computer by USB or Firewire or Thunderbolt.
    None of those works on the TC.. it is plugged in by ethernet or use wireless connection.. that means it is a network drive.. not an external drive. The difference might not mean much to you.. but it is totally different to the computer. In the former case the computer has full control of the disk. In the case of the network drive, the disk is controlled by the TC firmware and the files are stored and accessed by network. This has large implications.
    So here is my standard response.
    Store files on the TC.
    This is asked several times a day.. obviously people are struggling with their latest SSD being too small.
    The TC is not suitable for network file server.. but many people having no choice press it into service as such.
    Major issues.
    1. No backup.. no way Time Machine can backup a network drive. No place to backup to.. So all your files will be at risk. And you will need to buy a third party like CCC to do backup.
    2. The TC cannot be partitioned and mixing TM backups and data is not great. It was and is and ever shall be a backup device for Time Machine.
    3. The drive is slow to spin up and quick to spin down.. there is no control. In fact the TC is so lacking in controls for even the router side.. that you cannot do more than the most basic of setups.
    The following are controls on the hard disk side.
    Reformat it. You can name the share. You can do a full archive of the whole disk. This will go at a speed of aprox. 30-50GB/Hr so calculate how long an archive of a full 2TB will take.
    4. iPhoto in particular can easily corrupt its entire library with wireless networking causing a disconnection to one photo. Even if you do this;;; do not move your photo library... you have been warned!!
              Even apple btw say don’t do it.
    http://support.apple.com/kb/TS5168 Although mostly about FAT32           it adds network drives.
    5. iTunes can constantly lose connection to the library. The disk is slow to respond.. itunes on the computer will constantly spit out errors. Even in the midst of streaming the TC can spin down the disk due to caching.
    6. Do not use any live files on the TC no matter what else you do.. if you edit files in whatever program the file must be on the local hard disk.
    7. The only suitable location for most libraries is a computer. You can plug in an external hard disk.
    Read pondini for some work arounds.
    Q3 here. http://pondini.org/TM/Time_Capsule.html

  • My external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive. Same thing has happened with Final Cut Express.

    My new LaCie external hard drive is 'seen' by my iMac and I can go into the Finder and open files and folders. I am using the hard drive for Time Machine back up. However Time Machine says it can't find the drive.
    The same thing happened recently between Final Cut Express and my other LaCie external hard drive used as the Scratch disk. It fixed itself.
    I've run out of ideas. Help would be very much appreciated. Thanks.

    have you done some searches on FCPx and time machine? Is there a known issue with using a TM drive with FCPx? dunno but ...wait...I'll take 60 sec for you cause I'm just that kind of guy....   google...." fcpx time machine problem"  Frist page link 
    http://www.premiumbeat.com/blog/fcpx-bug-best-practices-for-using-external-hard- drives-and-final-cut-pro-x/
           You cannot have time machine backups on your hard drive if you intend to use it in FCPX.
    booya!

Maybe you are looking for