Question on the Solaris Translation Storage Buffer (TSB)

Hi all --
I'm new to Solaris and am trying to understand how kernel handles TLB misses. From reading the manuals, I gather that instruction and data TLB misses cause an interrupt to the OS. Thereafter, the miss handler uses the MMU Tag Register and TSB pointer register to search for the required translation table entry in the TSB.
I'm wondering how TSB accesses are monitored for multithreaded programs running on multicore machines. Suppose that in a 2-core system, a parallel program's workload is split into two threads, each executing on one of cores. If both cores experience TLB misses around the same time, can they access the TSB simultaneously? Or is the TSB locked by whichever core misses first, serializing lookup?
Thanks in advance!
Abhishek

Based on my knowledge of UltraSparc 2007 architecture, TLB misses can be handled by hardware table walker, and not cause a trap to OS. If TSB can not map the virt address to phy one, trap will be caused to OS software handler.
Each core has a set MMU unit to deal with the addressing translation,

Similar Messages

  • Question of the day: Mac Storage on Windows environment.

    Hi there
    I have Windows environment (10 Servers & 100 Clients), and small Mac environment (10 Macs Clients without Mac Server) I have problem when Mac users put data on Windows Servers, so IT department decided to find a Mac Storage has the following features:
    1-Can format it as HFS+.
    2-Can Windows users access it.
    3-Can manage it from Windows Server.
    4-Can attach it to Tape Driver for backup or has any other backup solution.
    5-Has RIAD System.
    I know there are many administrators did this scenario (integration Mac Storage with Windows) so please any suggestions are welcome.
    Thanks in advance.

    Please elaborate on exactly what you mean by "connect to tape driver"
    Of course you can use a tape drive with an Xserve. Most drives will require that you add a SCSI card to your Xserve, and for that the single best choice (compatibility and support from the company which is excellent) is Atto ( www.attotech.com ) although Apple sells their own card.
    I believe it's a rebranded LSI - see http://preview.tinyurl.com/6bw4w5
    At one time the Exabyte firewire-based tape drives were a decent option but their firewire (aka IEEE 1394) interface has proven problematic in terms of being less than robust when attached to an Intel Mac.
    If not SCSI then definitely look at native Fibre based tape drives - but that's getting into higher price-bracket. Eg. http://store.apple.com/ussmb78313/search?find=Fibre+Tapew

  • How do you translate the questions on the Tricia Crack app

    How do you translate the questions on the Tricia Crack?

    You have many solutions, you can FaceTime the individual if both users have access to Wi-Fi. You can also Skype them and use Video Chat.
    Additionally, you may be wanting a Remote Camera type App. ReconBot is an App that allows for you to Set up an iOS device, configure Remote settings, and connect to the camera from another device (on the web). You can even start the recording from the web.
    Hope this helps, please indicate below if so, otherwise reply for more help!

  • I was downloading music on my iPod.  A message came and read " You do not have enough storage..go to settings.." Question: How do you add storage?? Where do I go on my iPod to add the storage??  Help!! JFK

    I was downloading muis on my iPod.  A message came up and read " You do not have enough storage..go to settings.."  Question:  How do I add storage?  Where do I go on my iPod to add the storage??  Help!!
    JFK

    You can't add storage to the iPod. Yo can go to Settings>General>Usage and see what is taking up a lot of storage so yoknw what to delete.
    Also maybe:
    Connect the iPod to your computer and look at the storage used by the various categories as shown in the colored bargarph in iTunes.
    Come back with the results.
    An "other" larger than about 1 1/2 GB indicates corrupted files.
    What is the Other on my iPhone and How to Remove It
    What is "Other" and What Can I Do About It?
    Next, usually restoring from backup eliminated the corrupted files. However, sometimes restoring to factory settings/new iPod is required.
    To restore from backup see:
    iOS: How to back up
    To restore to factory settings/new iPod see:
    iTunes: Restoring iOS software

  • Question of the output of "prstat -a" on solaris 10

    Hi, all
    Recently, I'm debugging a memory issue on the solaris 10 system. I executed the command like "prstat -U root -n 200 -s rss -a" to list all root user memory consumption and sorted by rss. I'm sure that the total number of root process is less than 100. My target is to find which root process takes the memory most. However I'm concerning the output of the above command. The summary on the bottom of the command showed that the total RSS of root was about 4G, the NPROC was about 150. When I did a "sum" of the RSS of all 150 root processes, the value was 1.5G which was far less than the 4G on the bottom summary.
    Does anyone know if my understanding is correct or not? Should they be identical?
    Thanks

    Because of the way Solaris allocates and reports memory usage it is often (very) hard to account for the different values reported by the various commands. Most often the differences involve shared memory.
    Why do you think you have a memory problem?
    Do you think the problem is with virtual or physical memory?
    Have you looked at:
    How to Check and Analyze Solaris Memory Usage [ID 1009500.1]
    GlenG

  • A question about the impact of SQL*PLUS SERVEROUTPUT option on v$sql

    Hello everybody,
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0  Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    SQL>
    OS : Fedora Core 17 (X86_64) Kernel 3.6.6-1.fc17.x86_64I would like to ask a question about the SQL*Plus SET SERVEROUTPUT ON/OFF option and its impact on queries on views such as v$sql and v$session. Here is the problem
    Actually I define three variables in SQL*Plus in order to store sid, serial# and prev_sql_id columns from v$session in order to be able to use them later, several times in different other queries, while I'm still working in the current session.
    So, here is how I proceed
    SET SERVEROUTPUT ON;  -- I often activate this option as the first line of almost all of my SQL-PL/SQL script files
    SET SQLBLANKLINES ON;
    VARIABLE mysid NUMBER
    VARIABLE myserial# NUMBER;
    VARIABLE saved_sql_id VARCHAR2(13);
    -- So first I store sid and serial# for the current session
    BEGIN
        SELECT sid, serial# INTO :mysid, :myserial#
        FROM v$session
        WHERE audsid = SYS_CONTEXT('UserEnv', 'SessionId');
    END;
    PL/SQL procedure successfully completed.
    -- Just check to see the result
    SQL> SELECT :mysid, :myserial# FROM DUAL;
        :MYSID :MYSERIAL#
           129   1067
    SQL> Now, let's say that I want to run the following query as the last SQL statement run within my current session
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;According to Oracle® Database Reference 11g Release 2 (11.2) description for v$session
    http://docs.oracle.com/cd/E11882_01/server.112/e25513/dynviews_3016.htm#REFRN30223]
    the column prev_sql_id includes the sql_id of the last sql statement executed for the given sid and serial# which in the case of my example, it will be the above mentioned SELECT query on the employees table. As a result, right after the SELECT statement on the employees table I run the following
    BEGIN
        SELECT prev_sql_id INTO :saved_sql_id
        FROM v$session
        WHERE sid = :mysid AND serial# = :myserial#;
    END;
    PL/SQL procedure successfully completed.
    SQL> SELECT :saved_sql_id FROM DUAL;
    :SAVED_SQL_ID
    9babjv8yq8ru3
    SQL> Having the value of sql_id, I'm supposed to find all information about cursor(s) for my SELECT statement and also its sql_text value in v$sql. Yet here is what I get when I query v$sql upon the stored sql_id
    SELECT child_number, sql_id, sql_text
    FROM v$sql
    WHERE sql_id = :saved_sql_id;
    CHILD_NUMBER   SQL_ID          SQL_TEXT
    0              9babjv8yq8ru3    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES); END;Therefore instead of
    SELECT * FROM employees WHERE salary >= 2800 AND ROWNUM <= 10;for the value of sql_text I get the following value
    BEGIN DBMS_OUTPUT.GET_LINES(:LINES, :NUMLINES);Which is not of course what I was expecting to find in v$sql for the given sql_id.
    After a bit googling I found the following thread on the OTN forum where it had been suggested (well I think maybe not exactly for the same problem) to turn off SERVEROUTPUT.
    Problem with dbms_xplan.display_cursor
    This was precisely what I did
    SET SERVEROUTPUT OFFafter that I repeated the whole procedure and this time everything worked pretty well as expected. I checked SQL*Plus documentation for SERVEROUTPUT
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Could anyone kindly make some clarification?
    thanks in advance,
    Regards,
    Dariyoosh

    >
    and also v$session page, yet I didn't find anything indicating that SERVEROUTPUT should be switched off whenever views such as v$sql, v$session
    are queired. I don't really understand the link in terms of impact that one can have on the other or better to say rather, why there is an impact
    Hi Dariyoosh,
    SET SERVEROUTPUT ON has the effect of executing dbms_output.get_lines after each and every statement. Not only related to system view.
    Here below what Tom Kyte is explaining in this page:
    Now, sqlplus sees this functionality and says "hey, would not it be nice for me to dump this buffer to screen for the user?". So, they added the SQLPlus command "set serveroutput on" which does two things
    1) it tells SQLPLUS you would like it <b>to execute dbms_output.get_lines after each and every statement</b>. You would like it to do this network rounding after each call. You would like this extra overhead to take place (think of an install script with hundreds/thousands of statements to be executed -- perhaps, just perhaps you don't want this extra call after every call)
    2) SQLPLUS automatically calls the dbms_output API "enable" to turn on the buffering that happens in the package.Regards.
    Al

  • Few Questions on the Creative Cloud

    I have read that the Creative Cloud Connection will be released within the next few weeks which is great. I have a few questions about file uploading and the Creative Cloud Connection program.
    I have a folder which I will upload. The contents of that folder will be updated periodically locally. I want to the files in that folder to stay up to date between my desktop and laptop. Will the Creative Cloud Connection program be able to do that?
    If a file is changed that is already in the cloud will the program recognize the change and keep the cloud up-to-date?
    I guess a little more information about exactly what the Creative Cloud Connection program will do would be nice.
    On the topic of storage will I be able to upgrade from the standard 20 gb of storage that is available when/if needed? And how much will that be?
    One other question:
    When will Lightroom 4 be available via CC and why is it not available since it has been released?

    Creative Cloud Connection will keep files between your desktop and the website in sync. You will be able to add, edit and delete files from either end and see the changes reflected in both.
    To see the the Creative Cloud Connection in action you can watch this video from Adobe evangelist Paul Trani http://tv.adobe.com/watch/adobe-creative-suite-6-creative-cloud-launch-week/adobe-creative -cloud-tour-/.
    There will be a way to get more than 20 GB of storage. The Adobe Creative Cloud FAQ http://www.adobe.com/products/creativecloud/faq.html has a question and answer about this near the bottom:
    Can I buy additional Creative Cloud storage?
    Additional storage will be available for purchase later in 2012. If you have reached your storage limit, contact Adobe Customer Service.
    Lightroom 4 will be available in a few weeks. Jeff Veen has also tweeted this https://twitter.com/#!/veen/status/200810541550288896. More from Jeff on what is coming to the Adobe Creative Cloud here in his Adobe blog http://blogs.adobe.com/creativecloud/coming-soon-to-creative-cloud/.

  • 2.23 Apps must follow the iOS Data Storage Guidelines or they will be rejected

    My Multi Issue v14 App (24124) was just rejected by Apple. Apparently because storage of the data (folios?) was not iCloud compatible.
    Is this related to v14? Would building a v15 app resolve the issue?
    or is there some other problem?
    Please advise...
    Full text of Apple rejection below...
    Nov 4, 2011 08:17 PM. From Apple.
    2.23
    We found that your app does not follow the iOS Data Storage Guidelines, which is not in compliance with the App Store Review Guidelines.
    In particular, we found magazine downloads are not cached appropriately.
    The iOS Data Store Guidelines specify:
    "1. Only documents and other data that is user-generated, or that cannot otherwise be recreated by your application, should be stored in the /Documents directory and will be automatically backed up by iCloud.
    2. Data that can be downloaded again or regenerated should be stored in the /Library/Caches directory. Examples of files you should put in the Caches directory include database cache files and downloadable content, such as that used by magazine, newspaper, and map applications.
    3. Data that is used only temporarily should be stored in the /tmp directory. Although these files are not backed up to iCloud, remember to delete those files when you are done with them so that they do not continue to consume space on the user’s device."
    For example, only content that the user creates using your app, e.g., documents, new files, edits, etc., may be stored in the/Documents directory - and backed up by iCloud. Other content that the user may use within the app cannot be stored in this directory; such content, e.g., preference files, database files, plists, etc., must be stored in the /Library/Caches directory.
    Temporary files used by your app should only be stored in the /tmp directory; please remember to delete the files stored in this location when the user exits the app.
    It would be appropriate to revise your app so that you store data as specified in the iOS Data Storage Guidelines.
    For discrete code-level questions, you may wish to consult with Apple Developer Technical Support. Please be sure to include any symbolicated crash logs, screenshots, or steps to reproduce the issues when you submit your request. For information on how to symbolicate and read a crash log, please see Tech Note TN2151 Understanding and Analyzing iPhone OS Application Crash Reports.
    To appeal this review, please submit a request to the App Review Board.

    You might want to check out our ANE (Adobe Native Extension) solution that enables your FB projects to abide by the Apple's Data Storage guidelines.
    https://developer.apple.com/library/ios/#qa/qa1719/_index.html
    Do Not Backup project:
    http://www.jampot.ie/ane/ane-ios-data-storage-set-donotbackup-attribute-for-ios5-native-ex tension/
    David
    JamPot.ie

  • USB External Hard Drive Question for the E4200 v1 router

    I know this is going to be a really dumb question, especially coming from a computer tech of 25 years, but I'm going to ask it just to be safe.
    First off, my router is the E4200 v1.  It's a substitute for my older WRT54GS router.  One of the features I am quite fascinated with is the USB external drive usage.  Here's my question.  I have a Western Digital My Passport Essentials 500 GB external drive (Model #WDBAAA5000ABB-02) that I want to use on it.  I know it's not on the Official List of tested USB storage devices for the Linksys E4200 but I really want to use it, especially for storage on my three computer systems.  My question is do I need to unplug the router power supply BEFORE I plug in the external drive to the USB port on the back, or does it matter?
    Any help is appreciated.  Again, I know it's a dumb question, but the guides and "How-To" on the Linksys website isn't exactly clear.  Thanks in advance!
    ~Jeffrey
    ~JRK 2014
    "Your bark is only as good as your bite. BITE HARD!" ~JRK 2004

    Errr... Nevermind.  I think I found a better way to use the external drive without the use of the router.  Thanks anyway.
    ~JRK 2014
    "Your bark is only as good as your bite. BITE HARD!" ~JRK 2004

  • Is the "512GB PCIe-based Flash Storage" on the new mac worth the extra cost?  I am comparing with a refurb with better specs (faster CPU, larger hard drive) and from what I undersand the PCIe flash storage is the big differentiator in cost.

    hello - i am considering two macbook pros
    NEW - http://store.apple.com/us/buy-mac/macbook-pro?product=ME294LL/A&step=config#
    REFURB - http://store.apple.com/us/product/G0ML1LL/A/refurbished-macbook-pro-27ghz-quad-c ore-intel-i7-with-retina-display
    The refurb actually has a faster processor and a larger hard drive.  From what I understand, the big difference in cost is the new macbook pro contains "512GB PCIe-based Flash Storage" versus the refurb "768GB Flash Storage".
    Is the PCIe flash storage really worth the extra cost (and smaller size)?
    PS - Also I believe the brand new one has 2 GB graphics memory as opposed to 1 GB graphics memory.  I don't really care about that as much as I won't be doing a lot of video editing or gaming.

    RestonManJavaLuver wrote:
      Is she wrong - are these actually going to people's homes, being used, then returned and resold?
    Some are some are not. Otherwise Apple has a ton of Mac's sitting around that have been returned by customers under their 14 day No Questions Asked return policy.
    But they not just Returned and Resold. They go back to Apple, checked out (Tested) any parts that are not up to spec replaced and then repackaged in a plain white box to be sold as refurbs.

  • How can I reduce the amount of storage my iPhone uses for messages?

    Is there any way to reduce the amount of storage space my iPhone uses for Messages?  Can I limit the storage to the last year or some other limit (specific date, specific amount of storage etc.)?
    Thank you

    I'm not sure there is a solution to your question, other than to not keep so many photos on your devices.  If you delete a photo from photo stream, it will delete it from all your devices.  To keep them, first save them to your camera roll (tap Edit, tap the photos, tap Share, tap Save to Camera Roll), then import them to your computer as explained here: http://support.apple.com/kb/HT4083.  However, given the number of photos you have, a much more practical solution would be to transfer them to your computer using an app like PhotoSync, which will select them all at once and transfer them over wifi.
    I'm not sure why you're seeing such a discrepancy in the amount of space taken up by your photos.  It's possible that something is corrupt given the large number of photos on your device.

  • Will RAC's performance bottleneck be the shared disk storage ?

    Hi All
    I'm studying RAC and I'm concerned about RAC's I/O performance bottleneck.
    If I have 10 nodes and they use the same storage disk to hold database, then
    they will do I/Os to the disk simultaneously.
    Maybe we got more latency ...
    Will that be a performance problem?
    How does RAC solve this kind of problem?
    Thanks.

    J.Laurence wrote:
    I see FC can solve the problem with bandwidth(throughput),There are a couple of layers in the I/O subsystem for RAC.
    There is CacheFusion as already mentioned. Why read a data block from disk when another node has it in is buffer cache and can provide that instead (over the Interconnect communication layer).
    Then there is the actual pipes between the server nodes and the storage system. Fibre is slow and not what the latest RAC architecture (such as Exadata) uses.
    Traditionally, you pop a HBA card into the server that provides you with 2 fibre channel pipes to the storage switch. These usually run at 2Gb/s and the I/O driver can load balance and fail over. So it in theory can scale to 4Gb/s and provide redundancy should one one fail.
    Exadata and more "+modern+" RAC systems use HCA cards running Infiniband (IB). This provides scalability of up to 40Gb/s. Also dual port, which means that you have 2 cables running into the storage switch.
    IB supports a protocol called RDMA (Remote Direct Memory Access). This essentially allow memory to be "+shared+" across the IB fabric layer - and is used to read data blocks from the storage array's buffer cache into the local Oracle RAC instance's buffer cache.
    Port to port latency for a properly configured IB layer running QDR (4 speed) can be lower than 70ns.
    And this does not stop there. You can of course add a huge memory cache in the storage array (which is essentially a server with a bunch of disks). Current x86-64 motherboard technology supports up to 512GB RAM.
    Exadata takes it even further as special ASM software on the storage node reconstructs data blocks on the fly to supply the RAC instance with only relevant data. This reduces the data volume to push from the storage node to the database node.
    So fibre channels in this sense is a bit dated. As is GigE.
    But what about the hard drive's reading & writing I/O? Not a problem as the storage array deals with that. A RAC instance that writes a data block, writes it into storage buffer cache.. where the storage array s/w manages that cache and will do the physical write to disk.
    Of course, it will stripe heavily and will have 24+ disk controllers available to write that data block.. so do not think of I/O latency ito of the actual speed of a single disk.

  • Is there any solution to the colon translation bug?

    Mac OS X has reserved characters that cannot be used in file or folder names. One of them is the colon: It is used by the operating system in paths to designated separate directories and files, exactly as Microsoft uses the backslash character for the same purposed.
    However, Mac OS X is 'supposed' to translate colons to another character when saving files from within an application or the Mac OS X Save dialog. The typical translation is to forward slash or dash. For example, "Bug: Colon Translation" becomes "Bug- Colon Translation". Of if I am saving a web page to a PDF, the source name of an article with this title would change to "Bug/ Colon Translation".
    The bug: The above colon translation process does NOT work reliably in the Mac OS X Save Dialog with reliability. I guestimate that 95% of the time the translation of colons in source titles does NOT work. Using the example of translating a web article title to a PDF saved file, the results are typically the following: "Untitled.pdf". This forces the user to copy then paste in the actual title of the article. THEN, 100% of the time, the colon translation actually works. For example, if I have a web article titled "Bug: Colon Translation", it is extremely rare for that title to be anything but BLOCKED, resulting in 'Untitled.PDF' as the resulting title in the dialog box. When I then copy and paste the source title into the title area, replacing 'Untitled', I get: "Bug- Colon Translation".
    What will happen perhaps 5% of the time: The colon translation of the source title will actually work. When this occurs, using my example above, the OS provides the following translation: "Bug/ Colon Translation". Note that when it works in this situation I get a forward slash, not a dash.
    I research, read and save web articles all day long. A lot of articles use colons. I have to contend with this bug all day long every day. This bug is many years old. I can't recall when it started. But it certainly has been consistent in Mac OS X 10.5 Leopard, 10.6 Snow Leopard and now 10.7 Lion. Three versions of Lion are enough for me to realize that Apple is either oblivious to this bug or they don't care.
    Clearly, the colon translation CAN work. It is MEANT to work. No one can dispute that. The user is NOT supposed to be messed over with 'Untitled.PDF' files. They are MEANT to have actual PDF file titles, as seen in our example above.
    Therefore the question:
    Is there any solution to the colon translation bug?
    It is incredibly annoying.

    My guess is they don't care. Most likely they're illiterate and don't know what a colon is for. They probably think it's a little-used character. Remember: these are the people who don't know the difference between "deprecate" and "depreciate".
    I have the same colon problem as you do. But it's not the biggest problem I have encountered in Lion. If it was only that I'd be Mr. Delighted with Lion. There's worse than having a colon - uh -  that won't cooperate. A lot worse, in Lion.

  • Outputs about the Solaris Crash Analysis Tool

    Hello all.
    I am new hear and would like to ask a question regarding to the Solaris Crash Analysis Tool.
    We are analyzing the results of "thread summary" but not quite sure what the asterisk represents.
    Following are the items that asterisk were attached.
    50* threads sleeping on a semaphore (49 user, 1 kernel)
    49* threads in biowait() (49 user, 0 kernel)
    1* process with 19 pending and 0 done kaio
    3* interrupt threads running (0 user, 3 kernel)
    It would be helpful if someone in this forum can educate us
    what does the asterisk mean.
    Thanks,
    Yu

    In addition, is the value
    "threads sleeping on a semaphore" and the "QNUM" in ipcs -q
    the same?
    It would be helpful if this question is also answered.
    Thanks,
    Yu

  • Does the Solaris 10 installer Fdisk preserve 'unknown' partitions?

    Hi there,
    I am trying to install Solaris 10 - I have a CD to boot from, but can't tell exactly which release it is - sometime in 2008 I think...
    In any case, I am attempting install on my LG laptop along-side an XP installation.
    I've been searching for hours and nowhere can I find an answer to the simple question above.
    I just want to be sure I am not going to kill my XP install by clobbering it with fdisk.
    The installer screen I am talking about looks just like the one you find here:
    http://www.blastwave.org/docs/step-059.html
    My execution of the installer reveals 2 existing partitions (my XP partition and a little one - size 205Mb which I think contains some laptoppy stuff). Both are labelled 'unknown'.
    I left about 30Gb free when I installed XP so I could setup a dual boot with Solaris. The third box in the fdisk installer screen is this empty partition, and is conveniently labelled with 'Solaris' by the installer. The last (4th) partition is labelled as 'unused' and has 0 bytes allocated. I intend to steal a few Mb from the 'Solaris' partition and create a FAT32 partition here...as this seems to be the recommended approach...
    Anyhow, if anyone out there can help me out I'd be really appreciative - I think the answer is probably yes, it will preserve them, but I'd like to be certain as I don't want to have to reinstall XP.
    Thx in advance.

    Hi Paul,
    thanks for your response. Windows install disk gives partitioning options - don't think it comes with a fdisk util on its own (as an OS that is) though. I had already left part of the disk unpartitioned when I used the fdisk for the windows install, so I could install Solaris...
    In the end I decided to be brave and click next - the answer is that Yes it does preserve them - at least it did in my case. I now have a dual boot system. You can have the points for taking the time to bother with my silly question.
    :-D
    Have a few other issues to resolve with it now - but at least it's up and running, and I managed to get network connectivity - just not thru my wireless yet - hopefully I'll be able to.
    Much fun for me to have - cheers!

Maybe you are looking for

  • Memory errors on 2011 mac pro

    I am getting a lot of "memory" errors lately. I thought it was mostly limited to my 2004 Microsoft office suite – mostly Entourage – (yeah, I know, but my company hates to spend money on anything let alone upgrades to the current decade) running on m

  • Which capacitor enables my lbtd109 to store radio presets?

     which capacitor enables my lbtd109 to store radio presets?

  • After I've generated a DVD the video is inversed

    I've made all the footage and previewed it and all was ok. After I've generated the DVD, when I took a look of the final render, the video plays upside down. If I take a look to the project again, It showing me the video upside down too... I've made

  • Are there any known issues with Silverlight plugin?

    Every time I attempt to see a page using the silverlight plugin, Safari stops responding! Is it just my configuration, or are there more issues with this plug in as there were with Windows Media Player? Regards

  • Unsupported Token Type: X.509

    Hello, I try to setup a 2-Way SSL connection with a Web Service and run in several problems. Can anybody of you provide me with support. In my opionion the handshake was successful, until the client reports this message. What does it mean? Interner A