Let's discuss BIOS v1.8 and v1.9b1 for Neo1

I think 1.9b1 is steel unstable as 1.8
1.9b1 and 1.8 haven't the following parts in BIOS setup:
1) CPU clock Multiplication
2) Typematic Control
3) Command Timing Control 1T/2T, but there are more timings, that it was ever before
4) 7030 board have only one COM port called COM1, but after 1.9b1 where is also COM2, it's a virtual port for IrDA
5) Later 4*SATA was only seen in setup on Neo1 Platinum (on my board only 2*SATA), but after 1.8 it print all 4*SATA
6) Temperature of my CPU is about 20-25 degrees higher then it was in 1.5-1.7
CPUZ and other programs type that CPU Voltage is 1.65, but I set 1.5 in bios
So it resuls for my 3400+ Newcastle to shot down with extremely hot cooler
Also where is steel an issue with 2 DIMM at 400MHz, but it's seems (?)  more stable than 1.8
Other questions:
What is NV/ATI control? I see it in forum, but can't understand, what it means...
It just an overclocking of GPU? or overclocking or tweaking of AGP bus?
How can I edit Platinum BMP, what I can see at startup
What color/dimension format?
I know how to add or remove bios components from bios file via cbromv6

im still using the 1.56b pinochio edition. ive tried some of the new bios. if you recommend for stability and overclocking id be happy to give it a try.

Similar Messages

  • Let's discuss my application architecture,and give me your opinions

    hello
    we have several internal systems that are within the same lan and want to communicate with several external systems that may be in the other buildings by using the release line.i am now considering the architecture for the project,and have got an immature blueprint,please help me to make it more perfect by give me your opinions,the scenario as:
    within the lan,there are several systems that are developed by using different languages,let's suppose they are two(named internal1 and internal2),the two systems need to communicate with other two external systems(named external1 and external2) that are also developed by using different languages.all of the communications are bi-direction.there are several combinations:
    1 internal1 <--> internal2
    2 internal1 <--> external1 or external2
    3 internal2 <--> external1 or external2
    in my project,the timelimit is critical,as short as possible.
    according to the mentioned requirements,i decide to develop a infomation exchanging platform by using java which sit in the MIDDLE of the internal and external systems and WITHIN the lan,act as information dispatcher or coordinator,both of the internal system and external system communicate with it only.considering the multi-language and time-critical feature,i choose the way of socket communication among the systems and design a set of xml format internal protocol.otherwise,i think the message middleware are also needed within my project as message buffer.when i deepen into the detailed designing,i get some confusions,let us discuss them as followiing:
    1 if is the socket the good solution for my project?how can i assign the ports?because of the introduction of the information exchanging platform into my project,the communication combination is simplified to "internal system<-->info exchange platform" and "external system<-->info exchange platform",the crucial point for the port designing is how to assign the port in the info exchange platform,that is SERVER socket port.in my designing,i plan to assign different port for each subsystem.thus,the devleopment to the info exchange platform is simplified,that is:when the message comes,i don't need to analyse the xml message to check which system it comes from.but some people suggest me to open ONE port to all the internal systems,and ANOTHER port to all the external sysetms.i don't know which solution is better?if are there some regulations that concern about the socket port assigning?
    2 if is the information exchanging platform needed?some one suggest that subsystems can communicate with each other directly,
    the coordinating platform is not needed.but i think,from the EAI point of view,there should be a adapter between the internal system and external system.
    3 where should i put the message queue server?and if is the mom needed?i plan to use the mq between the exchange platform and external systems ONLY,and it is also within the lan,in my designing,i config two queue for EACH external system,one for incoming message and other for outgoing message,to each queue,i assign a message listener to execute different operations on its "onMessage" method,that is:when the message come from internal system,the exchange platform send them to the exact OUTGOING queue according to the destination of the message,then the listener of the queue call the socket of the according external system and send the message to it.otherwise,when the external system need to send the message to internal system,it call the exact socket port in the exchange platform that is assigned to it as mentioned above,the platform accept the msg,and send them to the exact incoming queue,then the listener deal with the msg and send them to the internal destination.in this solution,i put the mq behind the socket,but someone give me another suggestion,that is i directly put the message queue between the exchange platform and the external systems instead of using the socket as the front-end,all of them send the message to the queue and listen the queue,but i think,in such solution,the external system must listen the queue REMOTELY,is it a good way?
    also,somebody tell me that the exchange platform and remote external system can communicate each other DIRECTLY by socket,the message queue is not needed,i don't make sure if the mq is necessary in my situation?and what is the benefit and disadvantage?
    as for the communication between the internal system and info exchange platform,i think the mq is NOT needed,they can communicate each other directly by socket,furthermore,in my designing,i make them connect to each other FOREVER,that is i don't close the socket after each message transferation,as mentioned above in the issue of the socket assigning,every port in the exchange platform is DEDICATED,that means the port is specific to each system,so that they don't need to create and close socket connection frequently,that will make the program more performant,but if i use one port to listen all the internal system,then the socket must be closed by the end of each transferation because of the block problem,that is just another reason why i use dedicated port connection to each of the internal system.
    4 the another question is the secure issue accompanying by the socket,i think i needn't consider such problem in the internal connection,but to the connection between the platform and external system,the issue become preeminent,that is i must open the socket port in the firewall.but i think the connection between the lan and the external system use special line,not by internet,i wonder if the secure probem is critical in such situation?otherwise,i remember that some kinds of product from visibroker company can solve the firewall socket problem by using the http channel protocol,but i don't remember its name for sure,it seem like is called something gateway.who used such kind thing?and tell me how does it work?

    hello
    we have several internal systems that are within the same lan and want to communicate with several external systems that may be in the other buildings by using the release line.i am now considering the architecture for the project,and have got an immature blueprint,please help me to make it more perfect by give me your opinions,the scenario as:
    within the lan,there are several systems that are developed by using different languages,let's suppose they are two(named internal1 and internal2),the two systems need to communicate with other two external systems(named external1 and external2) that are also developed by using different languages.all of the communications are bi-direction.there are several combinations:
    1 internal1 <--> internal2
    2 internal1 <--> external1 or external2
    3 internal2 <--> external1 or external2
    in my project,the timelimit is critical,as short as possible.
    according to the mentioned requirements,i decide to develop a infomation exchanging platform by using java which sit in the MIDDLE of the internal and external systems and WITHIN the lan,act as information dispatcher or coordinator,both of the internal system and external system communicate with it only.considering the multi-language and time-critical feature,i choose the way of socket communication among the systems and design a set of xml format internal protocol.otherwise,i think the message middleware are also needed within my project as message buffer.when i deepen into the detailed designing,i get some confusions,let us discuss them as followiing:
    1 if is the socket the good solution for my project?how can i assign the ports?because of the introduction of the information exchanging platform into my project,the communication combination is simplified to "internal system<-->info exchange platform" and "external system<-->info exchange platform",the crucial point for the port designing is how to assign the port in the info exchange platform,that is SERVER socket port.in my designing,i plan to assign different port for each subsystem.thus,the devleopment to the info exchange platform is simplified,that is:when the message comes,i don't need to analyse the xml message to check which system it comes from.but some people suggest me to open ONE port to all the internal systems,and ANOTHER port to all the external sysetms.i don't know which solution is better?if are there some regulations that concern about the socket port assigning?
    2 if is the information exchanging platform needed?some one suggest that subsystems can communicate with each other directly,
    the coordinating platform is not needed.but i think,from the EAI point of view,there should be a adapter between the internal system and external system.
    3 where should i put the message queue server?and if is the mom needed?i plan to use the mq between the exchange platform and external systems ONLY,and it is also within the lan,in my designing,i config two queue for EACH external system,one for incoming message and other for outgoing message,to each queue,i assign a message listener to execute different operations on its "onMessage" method,that is:when the message come from internal system,the exchange platform send them to the exact OUTGOING queue according to the destination of the message,then the listener of the queue call the socket of the according external system and send the message to it.otherwise,when the external system need to send the message to internal system,it call the exact socket port in the exchange platform that is assigned to it as mentioned above,the platform accept the msg,and send them to the exact incoming queue,then the listener deal with the msg and send them to the internal destination.in this solution,i put the mq behind the socket,but someone give me another suggestion,that is i directly put the message queue between the exchange platform and the external systems instead of using the socket as the front-end,all of them send the message to the queue and listen the queue,but i think,in such solution,the external system must listen the queue REMOTELY,is it a good way?
    also,somebody tell me that the exchange platform and remote external system can communicate each other DIRECTLY by socket,the message queue is not needed,i don't make sure if the mq is necessary in my situation?and what is the benefit and disadvantage?
    as for the communication between the internal system and info exchange platform,i think the mq is NOT needed,they can communicate each other directly by socket,furthermore,in my designing,i make them connect to each other FOREVER,that is i don't close the socket after each message transferation,as mentioned above in the issue of the socket assigning,every port in the exchange platform is DEDICATED,that means the port is specific to each system,so that they don't need to create and close socket connection frequently,that will make the program more performant,but if i use one port to listen all the internal system,then the socket must be closed by the end of each transferation because of the block problem,that is just another reason why i use dedicated port connection to each of the internal system.
    4 the another question is the secure issue accompanying by the socket,i think i needn't consider such problem in the internal connection,but to the connection between the platform and external system,the issue become preeminent,that is i must open the socket port in the firewall.but i think the connection between the lan and the external system use special line,not by internet,i wonder if the secure probem is critical in such situation?otherwise,i remember that some kinds of product from visibroker company can solve the firewall socket problem by using the http channel protocol,but i don't remember its name for sure,it seem like is called something gateway.who used such kind thing?and tell me how does it work?

  • TS3173 This article discusses Windows 7 bluetooth and graphics drivers for late 2009 21" and 27" iMacs.  What about a late 2009 24" iMac?  A dealer installed Windows 7 on Bootcamp for me.  Neither the camera nor sound work.  Will this installer help?  Pet

    I have a late 2009 24" iMac with Windows7 installed in Bootcamp by a licensed Apple dealer.  Sound and camera don't work.  Would this driver download help? Or is there a better solution?
    PeterHahn

    You must install the Windows Support software. This support software contains the Windows drivers for your hardware. Since you are running Snow Leopard, the support software is on the Snow Leopard installation disk.

  • My iPad won't let me stay on some games and web sites. It sends me back to my home page after I have only been on the site a few minutes. How can I fix this?

    My iPad won't let me stay on some games and web sites for more than a few minutes . It closes the site and takes me back to home screen. Why and how do I fix this?

    For Safari you could try clearing its cache and history via Settings > Safari.
    For Safari and your other apps you could close them all completely and then see if they work when you re-open them : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How to Install and Configure Workflow For PO in Oracle Apps Version R12

    Hi,
    Please do let me know how to install and configure Workflow for Purchasing in Oracle Apps R12 Version.
    I want to the standard setup of workflow configuration for the PO.
    Thanks and Regards
    Srini

    Hi Suresh
    Only the latest version of WLP which is WLP 10.3.2 has facility to integrate with Oracle UCM with Adapaters. So make sure that you do have this latest version of WLP 10.3.2. Older versions like WLP 10.3 do not have this provision.
    Also I guess when you install and configure this Oracle UCM Adapater and choose above WLP Home, I guess these modules may be added in already installed WLP folders. I checked on my side for WLP 10.3.2 and I could NOT find the modules you mentioned. So most probably you may be missing some installation/configuration stuff from UCM side.
    Thanks
    Ravi Jegga

  • How do I set up a new Apple ID and iTunes account for my daughter, but let her keep the current content of my iTunes account?

    How do I set up a new Apple ID and iTunes account for my daughter's MacBook, but let her keep the current content of my iTunes account? (We currently share the same Apple ID and iTunes account). Hope someone can help... Thanks

    Discussions on using purchases from multiple AppleIDs in one iTunes library - https://discussions.apple.com/message/19543804
    As I mentioned earlier, the main time when this becomes an issue is if you need to do something involving associating a computer with a particular AppleID.  Careful management of your collection should minimize this situation.
    iTunes Store: Associating a device or computer to your Apple ID - http://support.apple.com/kb/HT4627 -  In connection with, "When you turn on iTunes Match or Automatic Downloads, or when you download past purchases on an iOS device or computer, that device or computer becomes associated with your Apple ID." "Your Apple ID can have up to 10 devices and computers (combined) associated with it. Each computer must also be authorized using the same Apple ID. Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days." - Additionally instructions for "Removing an associated device or computer from an Apple ID"
    So the first account is really "yours" and you are setting her up with her own account?  It helps to know this because if both are "hers" then there isn't an issue with her having full access to both accounts.  If in 10 years she moves 2000 miles away and she is pretty much independent then you may not want her to have full access to your AppleID just so she can authorize a device.

  • I have a First Gen IPad with IOS 4.3.2. It let's me manage my music and videos together in playlists.  Need a larger capacity IPAD, that allows me to manage playlists the same way. need direction or help!

    I have a First Gen IPad with IOS 4.3.2. It let's me manage my music and videos together in playlists.  Need a larger capacity IPAD, that allows me to manage playlists the same way. Need direction or help!
    Can't seem to find an IPAD that let's me control my playlists together...or let's me organize my videos (Karaoke) the way I want to.  Can someone help or direct me?
    Can't even find the old IPad for sale...I have a MB292LL with 4.3.2 (8H7)

    Here is a hint, google:
    ipad video playlists
    Found:
    This discusses some options.
    iOS 7 took away the ability to play videos continuously.
    Two stand-alone apps.
    https://itunes.apple.com/us/app/video-playlist-manager-lite/id399302583?mt=8
    https://itunes.apple.com/us/app/joobik-video-playlist-player/id502325425?mt=8
    There was a hint of relabeling your videos to music video so you can use the itunes video playlists.
    I have not tried this.

  • Im having trouble with error 13019 I have read the previous discussions about this matter and have tried to do them except for the fact that under the music tab when clicking on my ipod every thing is frozen. It s not my comp. and i dont wish to restore.

    Im having trouble with error 13019 I have read the previous discussions about this matter and have tried to do them except for the fact that under the music tab when clicking on my ipod every thing is frozen. It s not my comp. and i dont wish to restore. Please help!

    If you are wondering why you are not getting any responses, it is because you have vented a complaint without any details that make any sense or give anyone something to work on.
    If you want help, I suggest actually detailing what has happened, with versions of software etc. Anything that would let us assist.
    As a start I am guessing that you have not really got the hang of "How it all works". Firstly download the Pages09_UserGuide.pdf from under the Help menu. Read that and view the Video Tutorials in the same place. A good addition would be the iWork 09 Missing manual book and something to help you learn how to use your Mac.
    If there are specific tasks you need help with:
    http://www.freeforum101.com/iworktipsntrick/index.php?mforum=iworktipsntrick
    Is a good resource.
    Peter

  • When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    When you scroll to the bottom of the list of files in Finder, the left to right scrollbar doesn't let you click the last file and it covers the file for a while until it disappears. Is this a bug? How do I not make that happen?

    An odd workaround: click "Always" in System Preferences/General/Show scroll bars. The scroll bars will always show, but they won't cover your last file.
    See this other post: https://discussions.apple.com/message/20572471#20572471

  • I have the adobe cloud 9.99/ month photography package i downloaded lightroom 5.4, it told me it was a trial version, and i'm now at the end of the trial and it won't let me download the full version and i don't have a serial number

    i have the adobe cloud 9.99/ month photography package i downloaded lightroom 5.4, it told me it was a trial version, and i'm now at the end of the trial and it won't let me download the full version and i don't have a serial number. also, when i click buy, i get an error message saying, "application not found."

    There are two different LR’s, one with a serial-number licensing and one with a CC-signin license.
    You should uninstall the serial-number LR you have installed, then
    Quit the CC Desktop application,
    Restart the CC Desktop application—this will rescan what you have installed and not see LR,
    LR will now be on the CC Desktiop apps list, so install that.

  • I have a IPhone 4S. About a week ago my wifi wouldn't let me slide it to on. And my personal hotspot won't work. AND I PAY FOR THAT every month. I'm not going to keep paying for it if it doesn't work. What's the point?

    I have a IPhone 4S and since about a week ago my wifi wouldn't let me slide it to the on side and my personal hotspot doesn'tI don't live in Quincy anymore:( but I'm game some weekend! work either. AND also I see a lot of other people with the same problem. And I PAY FOR IT EVERY MONTH . I'm going to stop paying if You can't help me thanks.

    Is your wifi greeyd out; have you attempted to reboot the system?

  • I tried downloading a free app and it asked for my billing information and when i entered it, it says that there was a billing problem with a previoud purchase and i have to update it. I keep updating it and it wont let me verify it and i cant get apps

    I tried downloading a free app and it asked for my billing information and when I entered it, it said that there was a billing problem with a previous purchase and I have to update it. I keep updating it and it wont let me verify it and I cant get any apps even if they are free, and I just Deleted some apps to make room for my new upate!

    The message says: "The payment method has been denied, try another method"
    I'm living in the same country and city since I was born, so I don't think the location is the problem.
    And yes, I paid with the card a meal in Burguer King today. And nothing more.

  • My iphone won't let me update or download apps and it keeps asking me to sign in and give different billing info.

    My iphone won't let me update or download apps and it keeps asking me to sign in and give different billing info.

    it declines it when u put in a different card that has $ available on it? have u updated the billing address to match the new card?
    also, u can try using an itunes gift card instead.

  • I\updated bios earlier from and now my paviliong6 skype mic is not working. other side can't hear?

    Installed a BIOS update earlier and another driver update(do not recall which) and now my microphone does not seem to work with skype. The other side does not hear me.
    OS win7 64 home premium.
    HP pavilion g6.
    No disk issues or any other application loaded.
    Windows updates is on but non installed since yesterday when it was still working.
    I tried to disable/enable the mic from sounds in control panel with no success.
    When I test the the mic in Skype I see the bars move when I talk, but the reply does not have sound.
    Checked volume on machine and skype - set to the full bars.
    Please advise.
    Thank you.

    iPhone warranty is valid only in country of original purchase. You must
    return the iPhone to Dubai for repair/replacement. Apple will not accept
    international shipments for repair nor will it ship out of the country where
    repaired. If you did not purchase from Apple, contact the retailer where
    you got the iPhone to see what their policy is.

  • Kt4v possible problem with bios 1.8 and hd

    Any Idea anyone with this one.
    system running well till the other day when hd went very slow even after defrag, install bios 1.8 and reset the bios and adjusting it for my setup. Come to check my harddrive with maxtor powerdiag 3.04 and could not find the drive or any other drives connected. In the bios setup the drive is present. I removed all drives, cdroms, etc except the maxtor main hd and tried again with the same result. After placing in an ata100 controller card in to a spare pci slot and plugged the hd on to it, that the software sees the drive. The test finished and show the HD to be fine.
    The question is do I have a problem with the onboard contoller or with the new bios or both.
    When I first got this MB I did the same test with the original bios and the hd connected to the MB controller and the software had no problem seeing that and other drive connected.
    my pc  
    6712 mb kt4v
    athlon 2700+
    ti4200 graphics card
    2 off ddr333 512Mb memory
    floppy drive
    sony cdrw
    system software windows xp pro
    hard drive maxtor d740x-6l 60Gb ata133

    I'll stick with the V1.10, but I'd fell better if MSI showed me they actively update their systems by releasing updated BIOS files from time to time.
    I can't sell a 15000$ storage system that doesn't recognise the CPUs installed. The customer would laugh and tell me to come back with a supported system.
    Isn't this a VERY valid reason for wanting updates? Even if it only is an updated CPU list?
    The only reason I tried this MSI board is that it was the only one available with my retailer at the time I bought it with 3 PCI-X 100Mhz slots. Maybe I should go with a Tyan Thunder next time. Tyan at least show some activity.

Maybe you are looking for