6330 LE3 - ata mode vs performace problems

note: see sig for specs.
alright, so here a little while back, my main hard drive (the 10gig)
has started to perform like it's in PIO mode, yet everything i run to test it says it's using ata(/dma)66 mode. my secondary is using ata100 and runs fine. the primary is getting 1.8mb/sec max secondary gets ~30mb/sec
both are hooked to the same _new_ cable (replaced it, without effect) on the primary ide channel. swapping to the secondary ide channel does nothing more than make win2k look for my cdrom drives.
hooking up a single drive yeilds normal performance.
i know this board is capable of running each drive at it's rated speed/tranfer rates because it was doing so not but a few weeks ago, yet it's refusing to do so now.
anyone got any insights into this little problem?
-Tsuki

swapping the second drive onto ide2(without cdroms) gives me full performance off both drives
but i shouldn't need to stick my drives in some funky hdd/cd+hd/cd config just to get full performance :\

Similar Messages

  • WD 800JB boot problem on 6330 LE3

    I recently upgraded my old 8.4 Gb Maxtor hdd to a WD 800JB. Hereafter, I very regularly got messages from Win2K saying that parts of the registry (HARDWARE or SOFTWARE) were damaged and that it couldn't boot.
    After thinking on the problem long and hard I decided to upgrade the BIOS from 2.9 to 3.6
    This improved the situation, the problem got less frequent, but didn't solve it completely. I stlill get damaged user profiles (damage to NTUSER.DAT) and other registry parts on boot-up.
    Problems never occur on reboots, only on 'cold' boots.
    The disk itself doesn't seem to be the problem; the WD hdd test utility reports no errors in any test.
    It looks to me like another BIOS version is needed to solve this but 3.6 is the latest and I fear the last. Is there a solution for this - other then buying a new motherboard?

    Well, reinstalling Windows didn't help, in fact, it seemed to make things worse. So I bought a new psu.   It seems to work great.
    I say I bought a new psu, actually, I bought a new case. Which brings me a new question. Can anyone tell me the pin assignment on the internal USB header on my 6330 LE3? My new case has a front panel with USB ports and I'd like to connect it. The connector for the front panel has 10 pins with 1 blocked. The USB header has 10 pins. There are also some single pin connectors with a description of what is what. Now I only need to know which pin is which.
    Thanks for the advice on the psu guys. Sorry I doubted you  

  • Hp LaserJet CP1515n Printer Paper Jam, Cleaning Mode and calibration problem.

    We have Two no. Hp Laser Jet CP1515n Printers,
    We are facing repetatively the following problems.
    Paper Jam, Cleaning Mode and calibration problem. even after hp has replaced that printer twice..
    Pl. help me to sort out the problem.

    after 1 or 2nd page printing it display paper jam problem, after clearing the paper jam it goes in initialization mode. so we have to spent minimum 5 min. for taking one print out...
    Pl. help to solve the problem..

  • My Firefox won't quit and gives a "not responding" message after I use Google Mail. I have tried starting in "safe" mode and the problem still occurs.

    I have an issue where Firefox wont' quit and gives a "not responding" message after I have been using Google Mail. It works fine when I am not using that program. I have tried Safe Mode and the problem still happens when I go to Google Mail, so it is not connected with add-ons, extensions, etc.

    Many site issues can be caused by corrupt cookies or cache.<BR><BR>
    Clear the Cache<BR>
    '''''Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"'''''
    <BR><BR>and<BR><BR>
    Remove Cookies<BR>'''''Firefox/Tools > Options > Privacy.'''''<BR>
    Under '''History''', select Firefox will '''Use Custom Settings'''.<BR>
    There is a button on the right side called '''Show Cookies'''.<BR><BR>
    If there is still a problem,
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]'''''
    <BR>While you are in safe mode; '''''Firefox Options > Advanced > General'''''.<BR>
    Look for and turn off '''Use Hardware Acceleration'''.<BR>
    Poke around safe web sites and see if there is still a problem. Then restart.

  • Performace problem

    Someone please help me. I am sufferring performace problem for my code down below. Highly appraciate if anyone can help me optimize it. It took 4.7 hour to run 150,000 records for 5 runs.
    * <p>Title: COllaborative REcommender for SEARCH</p>
    * <p>Description: Collaborative recommendation for user by clustering user queries in a community</p>
    * <p>Copyright: Copyright (c) 2003</p>
    * <p>Company: </p>
    * @author Chan Soe Win, Nyein
    * @version 1.0.executeQuery(sql);
    import java.sql.*;
    import java.io.*;
    import java.util.*;
    import java.util.StringTokenizer;
    import java.math.*;
    public class ClusterGene {
    static String DBUrl = "jdbc:mysql://localhost/corec";
    static Connection Conn = null;
    static Statement Stmt = null;
    static PreparedStatement getDt = null;
    static PreparedStatement countCluster = null;
    static PreparedStatement insCenter = null;
    static PreparedStatement updCenter = null;
    static PreparedStatement insCluster = null;
    static PreparedStatement selectCenter=null;
    static PreparedStatement countClusterMember = null;
    static PreparedStatement getClusterMember = null;
    static PreparedStatement redefCluster = null;
    static int lastClusterID;
    public ClusterGene(){
    try{
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Conn = DriverManager.getConnection(DBUrl);
    Conn.setAutoCommit(true);
    Stmt = Conn.createStatement();
    getDt = Conn.prepareStatement("SELECT Dt FROM tbl_url WHERE id=? AND type=?");
    countCluster = Conn.prepareStatement("SELECT DISTINCT cluster_id FROM tbl_center");
    insCenter = Conn.prepareStatement("INSERT INTO tbl_center(cluster_id, url_id,type_id,lf) VALUES(?,?,?,?)");
    insCluster = Conn.prepareStatement("INSERT INTO tbl_cluster(cluster_id,query_id,sim_query,sim_title,sim_snippet,sim_result,sim_outlink,sim_inlink) VALUES (?,?,?,?,?,?,?,?)");
    updCenter = Conn.prepareStatement("UPDATE tbl_center SET lf=? WHERE cluster_id=? AND url_id=? AND type_id=?");
    selectCenter = Conn.prepareStatement("SELECT url_id, type_id,lf FROM tbl_center WHERE cluster_id=? AND url_id=? AND type_id=?");
    countClusterMember= Conn.prepareStatement("SELECT count(DISTINCT(query_id)) FROM tbl_cluster WHERE cluster_id=?");
    getClusterMember = Conn.prepareStatement("SELECT url_id,type_id,lf FROM tbl_lf WHERE query_id=?");
    redefCluster = Conn.prepareStatement("UPDATE tbl_center SET lf=? WHERE cluster_id=?");
    }catch (Exception e){
    public static void main (String args[]){
    ClusterGene cluster = new ClusterGene();
    int clusterid=0;
    double currentlf=0.0;
    int termid,typeid;
    double lf;
    double sim_content,sim_link,sim_hybrid, sim_query,sim_title,sim_snippet,sim_result,sim_outlink,sim_inlink;
    ArrayList lfidfArray;
    HashMap lfidfmap;
    lfidf lfidf = new lfidf();
    lfidf member = new lfidf();
    lfidf center = new lfidf();
    //ResultSet countClusterRS=null;
    //int countClusterNo=1;
    lfidfArray = new ArrayList();
    lfidfmap = new HashMap();
    double lfsquare1,lfsquare2,lfsquare3,lfsquare4,lfsquare5,lfsquare6,sumq1q2type1,sumq1q2type2,sumq1q2type3,sumq1q2type4,sumq1q2type5,sumq1q2type6 ;
    //select a new lfidfArrayquery
    long totaltimetaken = 0;
    for (int j=0;j<10;j++){
    for (int k=1;k<101;k++){
    long start = System.currentTimeMillis();
    System.out.print(k+",");
    lfsquare1 = 0;
    lfsquare2 = 0;
    lfsquare3 = 0;
    lfsquare4 = 0;
    lfsquare5 = 0;
    lfsquare6 = 0;
    sim_content= 0.0;
    sim_link=0.0;
    sim_hybrid=0.0;
    sim_query =0.0;
    sim_title= 0.0;
    sim_snippet=0.0;
    sim_result=0.0;
    sim_outlink=0.0;
    sim_inlink=0.0;
    try {
    //read a case (a query) from query table with term frequency
    String sql = "SELECT url_id, type_id, lf FROM tbl_lf WHERE query_id="+k;
    //System.out.println(sql);
    ResultSet rs= Stmt.executeQuery(sql);
    //System.out.println("RS "+rs);
    typeid=0;
    lfidfmap = new HashMap();
    while(rs.next())
    lfidf=new lfidf();
    termid = rs.getInt("url_id");
    typeid =rs.getInt("type_id");
    lfidf.query_id = k;
    lfidf.url_id= termid;
    lfidf.type_id= typeid;
    lf = rs.getDouble("lf");
    getDt.setInt(1, termid);
    getDt.setInt(2, typeid);
    ResultSet dtrs = getDt.executeQuery();
    dtrs.next();
    //System.out.println(lf+"DT >>>"+dtrs.getDouble("Dt"));
    lfidf.lfidf = log2(1+lf)*log2(10000/dtrs.getDouble("Dt"));
    Integer key = new Integer(termid);
    //System.out.println("Type >> "+typeid);
    //lfidfArray.add(lfidf);
    lfidfmap.put(key,lfidf);
    //System.out.print("Key "+key+" \tLFIDF :: ");
    //System.out.println(((lfidf) lfidfmap.get(key)).lfidf);
    //System.out.println(typeid);
    if (typeid ==1){
    lfsquare1 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare1 "+lfsquare1);
    }else if (typeid==2){
    lfsquare2 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare2 "+lfsquare2);
    }else if (typeid ==3){
    lfsquare3 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare3 "+lfsquare3);
    } else if (typeid ==4){
    lfsquare4 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare1 "+lfsquare1);
    }else if (typeid==5){
    lfsquare5 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare2 "+lfsquare2);
    }else if (typeid ==6){
    lfsquare6 += lfidf.lfidf *lfidf.lfidf ;
    //System.out.println("lfsquare3 "+lfsquare3);
    }// end while(rs.next())
    //compare with all existing cluster centers
    boolean newseed = true;
    try{
    ResultSet clcountrs= countCluster.executeQuery();
    while (clcountrs.next())
    //select a center
    clusterid = clcountrs.getInt("cluster_id");
    lastClusterID = clusterid;
    //select a cluster center
    lfidf clfidf =new lfidf();
    int cltermid,cltypeid;
    double cllf, cllfsquare1,cllfsquare2,cllfsquare3,cllfsquare4,cllfsquare5,cllfsquare6 ,cllfidf;
    sumq1q2type1=0;
    sumq1q2type2=0;
    sumq1q2type3=0;
    sumq1q2type4=0;
    sumq1q2type5=0;
    sumq1q2type6=0;
    cllfsquare1=0;
    cllfsquare2=0;
    cllfsquare3=0;
    cllfsquare4=0;
    cllfsquare5=0;
    cllfsquare6=0;
    try{
    String clqry = "SELECT url_id, type_id,lf FROM tbl_center WHERE cluster_id="+clusterid;
    //System.out.println(clqry);
    ResultSet clrs = Stmt.executeQuery(clqry);
    //System.out.println(clqry);
    //System.out.println(clrs);
    while (clrs.next())
    cltermid= 0;
    cltypeid= 0;
    clfidf =new lfidf();
    cltermid= clrs.getInt("url_id");
    cltypeid= clrs.getInt("type_id");
    cllfidf = clrs.getDouble("lf");
    getDt.setInt(1, cltermid);
    getDt.setInt(2, cltypeid);
    ResultSet cldtrs = getDt.executeQuery();
    cldtrs.next();
    Integer tindex = new Integer(cltermid);
    if(lfidfmap.containsKey(tindex)){
    clfidf = (lfidf) lfidfmap.get(tindex);
    if (!clfidf.equals(null)){
    if ((clfidf.type_id ==1)){
    sumq1q2type1 += cllfidf * clfidf.lfidf;
    cllfsquare1 += cllfidf * cllfidf ;
    if ((clfidf.type_id ==2)){
    sumq1q2type2 += cllfidf * clfidf.lfidf;
    cllfsquare2 += cllfidf * cllfidf ;
    if ((clfidf.type_id ==3)){
    sumq1q2type3 += cllfidf * clfidf.lfidf;
    cllfsquare3 += cllfidf * cllfidf ;
    if ((clfidf.type_id ==4) ){
    sumq1q2type4 += cllfidf * clfidf.lfidf;
    cllfsquare4 += cllfidf * cllfidf ;
    if ((clfidf.type_id ==5)){
    sumq1q2type5 += cllfidf * clfidf.lfidf;
    cllfsquare5 += cllfidf * cllfidf ;
    if ((clfidf.type_id ==6)){
    sumq1q2type6 += cllfidf * clfidf.lfidf;
    cllfsquare6 += cllfidf * cllfidf ;
    }// if (!clfidf.equals(null))
    }catch (Exception e){
    if (cllfsquare1 >0 && lfsquare1>0){
    sim_query = sumq1q2type1/Math.sqrt(cllfsquare1*lfsquare1);
    }else {
    sim_query = 0.0;
    if (cllfsquare2 >0 && lfsquare2>0){
    sim_title = sumq1q2type2/Math.sqrt(cllfsquare2*lfsquare2);
    }else {
    sim_title =0.0;
    if (cllfsquare3 >0 && lfsquare3>0){
    sim_snippet = sumq1q2type3/ Math.sqrt(cllfsquare3*lfsquare3);
    }else {
    sim_snippet=0.0;
    if (cllfsquare4 >0 && lfsquare4>0){
    sim_inlink = sumq1q2type4/ Math.sqrt(cllfsquare4*lfsquare4);
    }else {
    sim_inlink=0.0;
    if (cllfsquare5 >0 && lfsquare5>0){
    sim_outlink = sumq1q2type5/ Math.sqrt(cllfsquare5*lfsquare5);
    }else {
    sim_outlink=0.0;
    if (cllfsquare6 >0 && lfsquare6>0){
    sim_result = sumq1q2type6/ Math.sqrt(cllfsquare6*lfsquare6);
    }else {
    sim_result=0.0;
    sim_content = ((1.0/3.0)* sim_query) +((1.0/3.0) * sim_title)+((1.0/3.0) * sim_snippet);
    sim_link = ((1.0/3.0)* sim_result) +((1.0/3.0) * sim_outlink)+((1.0/3.0) * sim_inlink);
    sim_hybrid =(0.75 * sim_content) + (0.25 *sim_link);
    if (sim_hybrid>0.25){
    newseed = false;
    //insCluster.setInt(1,clusterid);
    //insCluster.setInt(2,k);
    //insCluster.setDouble(3,sim_query);
    //insCluster.setDouble(4,sim_title);
    //insCluster.setDouble(5,sim_snippet);
    //insCluster.setDouble(6,sim_result);
    //insCluster.setDouble(7,sim_outlink);
    //insCluster.setDouble(8,sim_inlink);
    //try{
    //insCluster.executeUpdate();
    //}catch (Exception e){
    //System.out.println("3 >>>>>>"+ (System.currentTimeMillis()-startTime));
    //countClusterMember.setInt(1,clusterid);
    //countClusterRS = countClusterMember.executeQuery();
    //countClusterRS.next();
    //countClusterNo=countClusterRS.getInt(1);
    //System.out.println("Cluster :: "+clusterid);
    //if the number of member change, redefine the cluster center
    //String sqlterm = "SELECT url_id,type_id,lf FROM tbl_lf WHERE query_id="+k;
    // ResultSet rsterm = Stmt.executeQuery(sqlterm);
    for (Iterator f = lfidfmap.keySet().iterator(); f.hasNext();)
    Object key = f.next();
    member = (lfidf) lfidfmap.get(key);
    getDt.setInt(1, member.url_id);
    getDt.setInt(2, member.type_id);
    ResultSet centrs = getDt.executeQuery();
    centrs.next();
    double centerlfidf= log2(1+ member.lfidf)*log2(10000/centrs.getDouble("Dt"));
    selectCenter.setInt(1,clusterid);
    selectCenter.setInt(2, member.url_id);
    selectCenter.setInt(3, member.type_id);
    ResultSet selectRS = selectCenter.executeQuery();
    if (selectRS.next())
    currentlf = selectRS.getDouble("lf")+centerlfidf;
    try{
    updCenter.setDouble(1,currentlf/2);
    updCenter.setInt(2,clusterid);
    updCenter.setInt(3, member.url_id);
    updCenter.setInt(4, member.type_id);
    updCenter.executeUpdate();
    }catch (Exception e){
    }else {
    try{
    insCenter.setInt(1,clusterid);
    insCenter.setInt(2, member.url_id);
    insCenter.setInt(3, member.type_id);
    insCenter.setDouble(4, centerlfidf);
    insCenter.executeUpdate();
    }catch (Exception e){
    }// end of for iterator
    }//end of if (sim_hybrid > 0.1)
    }// end of while (clrs.next())
    //new case does not fit into any of the existing cluster, then it become a new cluster itself
    if (newseed = true){
    String lfsql = "SELECT query_id, url_id,type_id,lf FROM tbl_lf WHERE query_id="+k;
    //System.out.println("New Seed");
    //System.out.println(sql);
    ResultSet lfrs = Stmt.executeQuery(lfsql);
    int count=0;
    double centerlfidf=0.0;
    while (lfrs.next()){
    count++;
    getDt.setInt(1, lfrs.getInt("url_id"));
    getDt.setInt(2, lfrs.getInt("type_id"));
    ResultSet centerrs = getDt.executeQuery();
    centerrs.next();
    centerlfidf= log2(1+ lfrs.getDouble("lf"))*log2(10000/centerrs.getDouble("Dt"));
    if (centerlfidf >0){
    insCenter.setInt(1,k);
    insCenter.setInt(2, lfrs.getInt("url_id"));
    insCenter.setInt(3, lfrs.getInt("type_id"));
    insCenter.setDouble(4, centerlfidf);
    insCenter.execute();
    newseed=false;
    }catch (Exception e){
    }catch(Exception e){
    //System.out.println(k+" takes "+ ((System.currentTimeMillis()-start)/1000) + " seconds ");
    totaltimetaken +=((System.currentTimeMillis()-start)/1000);
    }//end of for loop k
    System.out.println("Total time taken is "+ totaltimetaken +" seconds");
    private static double log2(double d) {
    return Math.log(d)/Math.log(2.0);

    I haven't tried understanding the flow of your program, just giving you database & JDBC tips....
    1. Try creating database indexes for the fields in your SQL where clauses... may help improve querying.
    2. If you've got a huge number of SQL insert statements then you should look at auto-commit.
    By default, the database connection sets "auto-commit" to on.
    So, for every single SQL insert or update, a database commit is performed.
    If you're inserting/updating a huge batch of records, try setting auto-commit to off, then explicitely call
    "commit()" after maybe 50 inserts....
    We got a serious performance gain from that tip recently.
    As mentioned, I didn't look at the flow/logic of your code, just the DB stuff.
    regards,
    Owen

  • HT201317 My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.

    My photostream in windows 7 PC does not shows any pic. when i click on slide show it start showing me slide shows of pic but when i try to copy files i cant do as no photo is viewd in list mode. This problem has arised since IOS is updated.I reinstalled my icloud and checked if icloud sharing is ON. I can see pic in my photo stream in PC only in slide show mode. While in list mode it shows pics before i actually click on photostream folder. My phone memory is out becose of bunch of photoes. How do i copy my photostream photoes.

    Hi all.  I can’t tell you how to solve your iCloud 3.x issues.  Heck, I don’t think they’re even solvable.
    But if you had a previous version of iCloud that was working correctly then I can definitely tell you how to solve the “iCloud Photo Stream is not syncing correctly to my Windows 7 PC” problem.  …without even a re-boot.
    Log out of iCloud 3.0 and uninstall it.
    Open My Computer and then open your C:\ drive.  Go to Tools/Folder Options and click on the View tab.  Select the “Show hidden…” radio button and click on OK.
    Open the Users folder.
    Open your user folder
    Open ProgramData (previously hidden folder)
    Open the Apple folder – not the Apple Computer folder.
    Open the Installer Cache folder
    In Details view sort on Name
    Open the folder for the newest entry for iCloud Control Panel 2.x – probably 2.1.2.8 dated 4/25/2013
    Right click on iCloud64.msi and select Install.
    When finished, the synching between iCloud and your PC will be back to working perfectly as before the 3.0 fiasco.  The pictures will be synched to the same Photostream folder as before the “upgrade”.  Now all you need to do is wait until Apple/Microsoft get this thing fixed and working before you try the 3.x upgrade again.
    I think the iCloud 3.0 software was written by the same folks who wrote healthcare.gov with the main difference being that healthcare.gov might eventually be made to work.
    For those of you who hate to go backwards, think of it as attacking to the rear.  Which would you rather have, the frustration of no synching or everything working on an older version?
    Good luck…

  • Xfce4-power-manager and laptop-mode-tools + backlight problems.

    Cross posted from here: https://bbs.archlinux.org/viewtopic.php?id=127992
    I don't know which forum it belongs to, so maybe a mod can close the one in the wrong forum.
    Out of curiosity, do these two tools conflict with each other? There seems to be some features that do the same thing, ie harddrive spin down time, but I'm not sure if these two will try to kill each other trying to configure the same power settings. If they do conflict, how could I go about disabling the conflicting parts (on either)? laptop-mode-tools claims it needs acpid "for ACPI support", however, acpid seems to be grabbing the standby event and throwing the laptop in standby despite the standby button bound to do nothing in xfce-power-manager. If I take out acpid, does that mean laptop-mode will no longer detect acpi events such as connecting/disconnecting AC power and thus not change modes when its plugged in?
    Another problem I've had after installing xfce4-power-manager is that when I use the brightness hotkeys the backlight gets stuck and starts flashing, locking up the system until I force shutdown. However, I can use the brightness plugin without trouble at all. What's causing the power manager to screw up setting the brightness since it clearly seems to work otherwise.

    It is easier to close this one and move the other thread over here. Just continue there.
    BTW better use the Report button when you want to have a thread of yours moved to another forum. That way it is guaranteed a mod will see this in time. And you never need to cross post.

  • Clamshell Mode source resolution problem

    I own a Macbook Pro with Mountain Lion, and I have used my laptop in clamshell mode once. After i changed the resolution to see which would work better with my Philips tv, I have never been able to use CS Mode again. I am unsure if it is a computer issue or the tv.
    I'm able to mirror displays and everything works great, but once I close the laptop to use CS Mode the tv says "Change source resolution". I have tried every resolution available in the scaled tab, and none seem to work.
    HELP please!

    I was having the same problem. I figured out that when I closed the lid my macbook was changing the resolution for the external to something that the monitor couldn't handle. I used VNC to remote into my computer and change the display manually - after that all was well. The monitor displays fine in clamshell mode now.

  • Performace problem on the views of original table

    I have views built on original table. After versioning the original table, my view becomes the view on a view. I have experienced performance problem with the query again the view built on my original table.
    Help!
    My e-mail is [email protected]
    Ashley

    Vaibhav Tiwari wrote:
    Hi Johannes,
    >
    > Seems the problem is with your IE. If you are using IE8 or 9, try to run the application in compatibility mode.
    >
    > To do that use the compability mode button given besides the address bar.
    >
    > Regards,
    > Vaibhav
    Why would you assume the problem is Internet Explorer.  The poster stated that the problem occurs in both IE and Firefox: "the problems occurs in both, IE and Firefox"
    I would think that something on the server side, as suggested is the more likely candidate.  Is there anything the WDDOMODIFYVIEW at all related to the table?  Are there any property bindings to the table that could effect the display?

  • FIPS mode : Key Alias Problem

    Hello All,
    Background:
    I am using FIPS certified Hardware Accelarator(SCA6000). I have enabled JSSE to use SCA6000 provider.
    I have a created a keystore on the SCA6000 which has more than one certificate.
    Problem:
    I want to use a specific certificate from the SCA6000 keystore. In FIPS mode JSSE will pick a random Certificate from the keystore and uses it for TLS Session.
    How can i specify a KeyAlias while creating SSLSockets in FIPS mode.
    Thanks and reagards,
    Pramod TK

    Thanks again,
    One clarification i need.
    JSSE allows custom KeyManager for non FIPS mode but Why not for FIPS mode
    I can see this comment in JSSE code
    // In FIPS mode, require that one of SunJSSE's own keymanagers
    // is used. Otherwise, we cannot be sure that only keys from
    // the FIPS token are used.
    if ((km instanceof X509KeyManagerImpl)
                                || (km instanceof SunX509KeyManagerImpl)) {
            return (X509ExtendedKeyManager)km;
    } else {
    // throw exception, we don't want to silently use the
    // dummy keymanager without telling the user.
       throw new KeyManagementException
                            ("FIPS mode: only SunJSSE KeyManagers may be used");
      }regards,
    Pramod TK

  • SCOM 2012 Maintenance Mode PowerShell Script Problems

    I've seen other questions about this topic before, but none of them seem to address my specific problem, so I am starting a new thread.
    I am writing a script to put a single server (not a group) into maintenance mode.   Here is the command that it ultimately tries to call:
     Start-SCOMMaintenanceMode-Instance$Instance-EndTime$EndTime-Reason$Reason-Comment$Comment     
    So an exmaple would look like this:
    Start-SCOMMaintenanceMode -Instance "$Instance -EndTime "02/03/2014 15:26:00" -Reason "PlannedOther" -Comment "Testing Maintenance Mode"
    When my script tries to run this command, this is the error message that I get:
    Start-SCOMMaintenanceMode : Start time must be before end time for maintenance mode.
    Parameter name: startTime
    At C:\users\x036036\Desktop\Start-SCOMMaintenanceModeForServer.ps1:143 char:21
    +                     Start-SCOMMaintenanceMode -Instance $Instance -EndTime $EndT ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (Microsoft.Syste...anceModeCommand:StartSCMaintenanceModeCommand) [Start-SCOMMaintenance
       Mode], ArgumentOutOfRangeException
        + FullyQualifiedErrorId : ExecutionError,Microsoft.SystemCenter.OperationsManagerV10.Commands.StartSCMaintenanceModeCommand
    I've tried to look at Start-SCOMMaintenanceMode help online, but I don't see that "startTime" is a parameter.  So what is this error message talking about?  What am I missing?  

    Thanks for your help.   I didn't see your response until just now, but I have been playing around with this all since my last response.   I got it to work.  I wish I could pinpoint what exactly I changed to get it to work, but I
    feel like I've been changing so much stuff that I'm not sure any more.
    Just in case anyone finds it useful, here is the code.
    [CmdletBinding(SupportsShouldProcess=$true)]
    param
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='What is the server you want to put in Maintenance Mode?')]
    [Alias("Server")]
    [string[]]$ServerName,
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$false,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Specifies the time the maintenance will end. The minimum amount of time a resource can be in maintenance mode is 5 minutes. This is a required parameter. Format is 1/29/2014 8:59:26 AM')]
    [Datetime]$end,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='PlannedOther, UnplannedOther, PlannedHardwareMaintenance, UnplannedHardwareMaintenance, PlannedHardwareInstallation, UnplannedHardwareInstallation, PlannedOperatingSystemReconfiguration, UnplannedOperatingSystemReconfiguration, PlannedApplicationMaintenance, ApplicationInstallation, ApplicationUnresponsive, ApplicationUnstable, SecurityIssue, LossOfNetworkConnectivity')]
    [string]$Reason,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Allows you to type a comment about the maintenance activity.')]
    [string]$Comment,
    [switch]$EventLog
    set-strictmode -version latest
    #$start=Get-Date
    #$currentlog = $start.ToString()
    Write-Verbose "Starting $($myinvocation.mycommand)"
    Write-Verbose "Ready to put ServerName $ServerName in Maintenance Mode"
    Function Start-SCOMMaintenanceModeForServer
    [CmdletBinding(SupportsShouldProcess=$true)]
    param
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='What is the server you want to put in Maintenance Mode?')]
    [Alias("Server")]
    [string[]]$ServerName,
    [Parameter(Mandatory=$True,
    ValueFromPipeline=$false,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Specifies the time the maintenance will end. The minimum amount of time a resource can be in maintenance mode is 5 minutes. This is a required parameter. Format is 1/29/2014 8:59:26 AM')]
    [Datetime]$end,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='PlannedOther, UnplannedOther, PlannedHardwareMaintenance, UnplannedHardwareMaintenance, PlannedHardwareInstallation, UnplannedHardwareInstallation, PlannedOperatingSystemReconfiguration, UnplannedOperatingSystemReconfiguration, PlannedApplicationMaintenance, ApplicationInstallation, ApplicationUnresponsive, ApplicationUnstable, SecurityIssue, LossOfNetworkConnectivity')]
    [string]$Reason,
    [Parameter(Mandatory=$False,
    ValueFromPipeline=$True,
    ValueFromPipelineByPropertyName=$True,
    HelpMessage='Allows you to type a comment about the maintenance activity.')]
    [string]$Comment,
    [switch]$EventLog
    Begin
    Write-Verbose "Starting Function Start-SCOMMaintenanceModeForServer"
    #Check for minumum Maintenance mode period of 5 mins.
    $start = Get-Date
    $5MinFromNowTime = $start.AddMinutes(5)
    #$end = [datetime]$end
    $end = $end.AddSeconds(5)
    if($end -lt $5MinFromNowTime)
    Write-Error "The time span for the maintenance mode should be at least 5 minutes." -ErrorAction Stop
    Write-Verbose "Following server will be put in Maintenance Mode: $ServerName"
    $MSs = Get-SCOMManagementServer
    } #End Begin
    Process
    Write-Verbose "Checking if server $ServerName is a Management Server"
    #Write-Verbose ($MSs | Select DisplayName)
    if(($MSs | Select DisplayName) -eq $ServerName)
    Write-Verbose "We don't want to put a Management Server in Maintenance Mode. Skipping"
    else
    Write-Verbose "Let's put server $ServerName in Maintenance Mode"
    $Instance = Get-SCOMClassInstance -Name $ServerName
    if ($PSCmdlet.ShouldProcess("Putting $ServerName in Maintenance Mode until $($end).") )
    Write-Verbose ("Start-SCOMMaintenanceMode -Instance " + $Instance + " -EndTime " + $end + " -Reason " + $Reason + " -Comment " + $Comment)
    Start-SCOMMaintenanceMode -Instance $Instance -end $end -Reason $Reason -Comment $Comment
    }#End of whatif
    }#End of else
    if ($PSBoundParameters['EventLog'])
    write-eventlog -LogName "Operations Manager" -Source "OpsMgr SDK Service" -EventID 999 -message "The following Objects are put into in Maintenance Mode until $($end) : $($ServerName)"
    }#End if
    } #End Process
    End
    Write-Verbose "Finished Function Start-SCOMMaintenanceModeForServer Function"
    #Main
    try
    if ($PSBoundParameters['EventLog'])
    write-eventlog -LogName "Operations Manager" -Source "OpsMgr SDK Service" -EventID 998 -message "The $($myinvocation.mycommand) is used to put Objects in Maintenance Mode"
    Write-Verbose "Checking if OperationsManager Module is loaded"
    #Check if OperationsManager Module is loaded.
    if(!(Get-Module OperationsManager))
    Write-Verbose "Importing OperationsManager Module"
    Import-Module OperationsManager -ErrorAction Stop
    Write-Verbose "Checking for OM2012 environment"
    #Check if OM2012 is being used.
    if(!(Get-Module OperationsManager).Description -eq "Operations Manager OperationsManagerV10 Module")
    Write-Error "This script is only for OM2012"
    #Call Function
    if ($PSBoundParameters['EventLog'])
    Start-SCOMMaintenanceModeForServer -ServerName $ServerName -end $end -Reason $Reason -Comment $Comment -EventLog
    else
    Start-SCOMMaintenanceModeForServer -ServerName $ServerName -end $end -Reason $Reason -Comment $Comment
    } #End Try
    catch [System.IO.FileNotFoundException]
    "OperationsManager Module not found"
    $_.Exception.Message
    catch
    Write-Warning "Oops something went wrong"
    $_.Exception.Message
    $end=Get-Date
    Write-Debug ("Total processing time {0}" -f ($end-$start).ToString())
    Write-Verbose "Ending $($myinvocation.mycommand)"
    There is one remaining problem with this script.   It does not correctly check to see if something is a management server. We have two management servers. These are the applicable lines, which I still haven't gotten to work yet. First, this retrieves
    the list of my Management servers:
    $MSs=Get-SCOMManagementServer     
    Next, these lines are supposed to check if the server I specified is a management server:
    if(($MSs | Select DisplayName) -eq $ServerName)
    Write-Verbose "We don't want to put a Management Server in Maintenance Mode. Skipping"
    Thanks to the Intellisense pop-up deal, I can see that $MSs does get my two management servers. And I can clearly see that there is a DisplayName column. And I can also see that the $ServerName does match what I put in my command line.   But it doesn't
    seem to catch them if they are actually equal to each other. I don't know if it's because there's two Management Servers, and it doesn't know how to compare like that? Any idea? Is there some sort of loop I need to write so that it compares is to the DisplayName
    for EACH Management Server it finds? Any help would be greatly appreciated.

  • User Mode Linux -- Compiling problem

    Hi,
    I want to run the user mode linux for linux-2.6.17.6. When I try to compile the user mode linux I get this error:
    In file included from arch/um/include/os.h:13,
    from arch/um/drivers/fd.c:14:
    arch/um/include/kern_util.h:9:27: error: linux/threads.h: No such file or directory
    make[1]: *** [arch/um/drivers/fd.o] Error 1
    make: *** [arch/um/drivers] Error 2
    I was looking up a lot of time in google.
    My steps to compile it is:
    export ARCH=um
    make defconfig
    make
    If you have any suggestion, let me know.
    Bye.

    Using that option the kernel compiles smoothly. The problem here, is that I am not getting the kernel that I want. I am just building a normal kernel.
    Any suggestion, let me know
    Luis.

  • Trim mode 'wrong frame' problems when using merged clips

    Hello there,
    We are having a problem with the trim mode on FCP 6.0.4. We're working with 1080psf 24 Apple ProRes 422 material, captured using a AJA Kona card.
    The sound and picture were recorded separately, and synced manually (by creating merged clips) in FCP.
    When we go into the trim window, it shows a different frame as the incoming or outgoing frame on some clips. In other words it's not actually showing us the real frame before or after the cut. Instead it shows a frame that's half a second back, for example. When we preview the cut, it cuts in the 'right' place, but when we pause and try to fine cut the transition using +1 keys (or trim back/forward keys), it shows us the wrong frame. When we preview it again, the cut is still in the 'right' place - not the frame represented when it's stilled. This makes using trim mode nigh-on impossible since it's not actually showing you the frames you're cutting.
    Are there any patches or workarounds to fix this issue? I can't find any fixes on forums/help sites or the FCP manual.
    Tried trashing prefs, repairing disk permissions and all the usual maintenance stuff!
    Exporting new Quicktimes of the merged clips and then re-importing them is not an option, as they need to be timecode accurate to be recaptured for the online and vfx work.
    Any advice would be much appreciated - if no solutions exist we'll have to switch everything over to Avid, and that'd be a mammoth job.
    Many thanks in advance!

    You may not be zoomed in enough in the Timeline window, the more you zoom in, the more detailed edit you can perform. Zoom out too much, and you won't have the sensitivity.

  • Mega PC 180 Remote (HiFi Mode) and Eject problem SOLVED

    Hi everyone,
    I just bought the MSI DR8-A DVD Writer.........   and Gues what..??!!??
    - Now i don`t have any problems anymore with the Remote in HIFI mode (strange)
    - Also the new drive will eject as it supose to ........
    I am a very happy man now.
    I am all set up, and my Home Media Center is complete Now.
    Don`t understand some of you guys still having problems....
    Remember: the Mega PC is not for NOOBS
    Greetings from the Netherlands,
    Defaulty
    MSI Mega PC 180
    AMD XP2400
    2x 256 mb (No label) PC3200
    80 Gig Maxtor
    MSI DR8-A DVD Writer
    MSI TV@nywhere Master
    MS Windows XP (SP1)

    Quote
    Originally posted by sav_
    nopz.
    I even wiped the entire copper layer of the cooler with polish, added Artic Silver Ceramic and yet, 40° idle, 59° stressed...
    Note that the intake of the cpucooler gets blocked by the Radeon, so the reason is obvious  
    A pretty common trick used on Biostar SFFs (which are even smaller than the 180) is to add two Zalman 80 x 15 OP1 fans to the side panels.  Left panel toward the front and right panel toward the rear.  This gives a good cross ventilation flow and when you run the fans on the low voltage setting-----it is totally silent---so you haven't added any noise to the overall setup.
    Drops CPU temps 4-5 C.  Might work on the 180.  You can see an example of the side panel fans----as well as another possible solution, watercooling, here:----just scroll through all the pics to find the fan solution...SFF Fans and Watercooling
    Good Luck-----John

  • Ata 186 second port problem

    Hello
    There are a atas186 who was registered to a CUCM version 6.1,the call manager was migrated to version 8.6 but now the second por when a call is answered immediately when give a fast busy tone, the first port works perfect, and i have changed many parameters and did a factory reset without success.
    S/W Version 3.02.04(090202A)
    App Load ID ATA030204SCCP090202A
    Thanks.

    Your ata´s place calls  across the wan?
    If yes, the the ata 186, only support one port in g729 codec the port 0, the second port works only in g711 codec so try to configure a region to place calls only in g711 codec across the wan and problem solve
    i hope it helps...

Maybe you are looking for

  • How can i get my password if i cant connect to itunes

    so i changed my passcode to my i-pod because  my brother found out what it was and i know i put taylor gang (without spacing) as my passcode but i have big hands so when i put the passcode i must have pressed a wrong button because and now i cant get

  • Deleted names appearing in the "To" line of a new message

    Hi, Everytime I choose an email address to send a new message, after entering one or two letters, my selection of contacts includes addresses that I've deleted in my address book and no longer need. Is there a cache or folder somewhere that I can del

  • How to use a atore procedure in the sender Jdbc adapter

    Hi Experts! I am having a requirement to read multiple data from multiple tables from Oracle database at a time. In sender side i am using JDBC Adapter. Here i want to know how can we use a store procedure to do this and can any one pls give a blog w

  • Business Catalyst thinks I deleted my web form

    I thought I may have found a way around Muse's weak forms implementation, by creating a web form on Business Catalyst > Site Manager > Web Forms. I created a web form, set the email response, copied the html, inserted the HTML on a Muse page, publish

  • How can I get templates for Avery Labels to use with Pages.

    Prior to getting Pages I always used Word.  Word seems to bomb out on my new imac.  I need to be able to use Avery Labels, but I can't find a template for labels in Pages.  Suggestions?