SUP2/MSFC2 Unable to read flash card

Tring to start the procedure to upgrade from hybrid to native mode.
Running hybrid catos/ios on sup2/msfc2...
In catos unable to see card from
dir slot0:
Unable to open slot etc....
Firmware of sup card is 7.1 and size of flash card is 64MB..
Any ideas

Do you have any files currently stored in the flash card ?
You may also try on an alternate slot to see if the problem gets fixed
Its possible that the file system in the card is not compatible with CATOS FS. You may have to format the card in the switch.
http://www.cisco.com/en/US/products/hw/switches/ps708/products_command_reference_chapter09186a00802dcd5c.html#wp1025012

Similar Messages

  • Unable to read SIM card after latest update

    I downloaded the most recent android update on my Samsung Galaxy Note 4 on 12/10.  Since that update, i've gotten the message "Unable to read the SIM card.  Please restart your phone to read the card" a half-dozen times.  The timing between the messages is sparatic (one time it was a few hours between messages, another time a full day, then 12 hours the third time, etc...).
    Is anyone else experiencing this issue?  Is there a simple fix to this (such as just getting a new SIM card from Verizon)?  I'd like to think that the update wasn't the culprit of this, but I've had my Note 4 since the initial release, and it's only started happening since the last update.
    Any help would be greatly appreciated.  Thanks!

    I'm having the same "Unable to read the SIM card" issue. My phone is less than two months old, the unable to read SIM card issue started about a week after I purchased the phone. That was followed by a host of erratic, sporadic issues to the phone becomes unusable and the only way to temporarily fix it is to remove the battery for a few seconds.  I've gone through the factory reset with Verizon reps where I purchased the phone from as well as with a Verizon online Chat representative. In a nutshell, I got a ticket to send the phone back to Samsung in Plano, Texas to get the phone fixed, I am going to do that today because this problem is ridiculous.

  • Unable to read sd card

    I am unable to read from sd card or USB stick with THE foto comme toon kit any suggestion?

    The camera connection kit will only read photos and videos - for photos (and I assume videos) the SD card must have a folder called DCIM off its root with the photos underneath it, and the photo filenames must be exactly 8 characters long(plus their extension). USB sticks can't be read.

  • Lenovo G480 unable to read SDHC card

    Hi 
     I having an issue with my G480 unable to detect my SDHC card. I have install both drivers for my card reader from Support site but still unable to read my SDHC card even my camera can use the same SDHC.
    Any one have similar issue?
    Solved!
    Go to Solution.

    hi mynorkin,
    If you have the Lenovo G480 (type 2184 or 2688) as listed in this pdf data sheet, this doesn't support SDHC (Secure Digital High Capacity) as the card reader installed on these system is only a 2-in-1 reader which only supports MMC and Secure Digital Card,
    As an alternative, you can get a USB Card Reader.
    Edit: Added sample usb card reader.
    Hope this helps.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Unable to read e-cards on my iPhone?

    Sometimes when I try to read an e-card a message comes up which states that I need adobe flash.  How do I do this?  Just got the iPhone two days ago.  Thanks

    The message has identified the problem. Many of these e-cards are flashed based. The iPhone does not support Flash. There is no way to install Flash on the phone either.

  • Unable to read SD cards, CF cards, etc with windows 8. Windows 7 and before work

    Hi everyone,
    One strange thing I've found with Windows 8.1 is that if I try to access a SD card, micro SD card, CF card, or similar, I get an error that says something about you need permission to access this. I've tried giving myself permissions, but it still doesn't work.
    The SD card is from a digital carmera. 
    The microSD card is from my Android device.
    The CF card is from my Nikon D70.
    The odd thing is they all work in windows 7 and before. 
    Added oddity: if I plug my android into the computer and browse that way when the device comes up, I can access it. 
    This is happening on any windows 8.1 machine (pro/enterprise)I've tried it on. I've googled the issue but have found no resolution.
    Has anyone else seen this?
    Thanks
    This topic first appeared in the Spiceworks Community

    Added Info for original posting:
    Windows 8.1 64 bit OS.  Dell box shipped with Windows 8 and upgraded to 8.1 via the Windows store.  As stated in original post, computer is Dell XPS 8700, I7 cpu with 16 gbs of RAM.
    Happy to answer any more specific questions.
    Richard

  • Unable to read AsynchronousSocketChannel after getting timeout exception

    i am trying to read some data on the server using a AsynchronousSocketChannel .
    I have this scenario :
    1- Call channel.read : this will print "Received"
    2- Call channel.read : this should fail due to timeout exception.
    3- Call channel.read : I am sending data in this case but I got the exception "Reading not allowed due to timeout or cancellation"
    Below is the source code
    My environment is :
    OS : Windows 7
    JDK :
    Java(TM) SE Runtime Environment (build 1.7.0-b147)
    Java HotSpot(TM) 64-Bit Server VM (build 21.0-b17, mixed mode)
    package com.qmic.asynchronous;
    import java.io.InputStream;
    import java.io.PrintWriter;
    import java.net.InetAddress;
    import java.net.InetSocketAddress;
    import java.net.Socket;
    import java.nio.ByteBuffer;
    import java.nio.channels.AsynchronousChannelGroup;
    import java.nio.channels.AsynchronousServerSocketChannel;
    import java.nio.channels.AsynchronousSocketChannel;
    import java.nio.channels.CompletionHandler;
    import java.util.concurrent.ConcurrentLinkedQueue;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    import java.util.concurrent.TimeUnit;
    public class NIOChannel {
         public static void main(String[] args) {
              try{
                   MyAsynchronousTcpServer server = new MyAsynchronousTcpServer();
                   Thread serverThread = new Thread(server);
                   serverThread.start();
                   Socket socket = new Socket(InetAddress.getByName("127.0.0.1"), 9001, InetAddress.getByName("127.0.0.1"), 9003);
                   socket.setSoTimeout(30000);
                   socket.setKeepAlive(true);
                   if (socket.isConnected()){
                        PrintWriter dos = new PrintWriter(socket.getOutputStream());
                        InputStream input = socket.getInputStream();
                        byte[] buffer = new byte[1024];
                        // Data of the first call
                        dos.print("ABCDEFGH");
                        dos.flush();
                        byte[] data = new byte[50];
                        socket.getInputStream().read(data);
                        // Print the result from server, written in handler of first read operation.
                        System.out.println("Result is:" + new String(data));
                        if (data.length > 0){
                             Thread.sleep(10000); // Wait for 10 Seconds so the second read on the server will fail.
                        // Data of the third call
                        dos.print("ABCDEFGH");
                        dos.flush();
              }catch(Exception ex){
                   ex.printStackTrace();
         class MyAsynchronousTcpServer implements Runnable{
              final int SERVER_PORT = 9001;
              final String SERVER_IP = "127.0.0.1";
              private int THREAD_POOL_SIZE = 10;
              private int DEFAULT_THREAD_POOL_SIZE = 2;
              ConcurrentLinkedQueue<ListenHandler> handlers = new ConcurrentLinkedQueue<ListenHandler>();
              boolean shutDown = false;
              public void run(){
                   //create asynchronous server-socket channel bound to the default group
                   try {
                        // Create the ChannelGroup(thread pool).
                        ExecutorService executorService = Executors.newFixedThreadPool(THREAD_POOL_SIZE);
                        AsynchronousChannelGroup group = AsynchronousChannelGroup.withCachedThreadPool(executorService, DEFAULT_THREAD_POOL_SIZE);
                        AsynchronousServerSocketChannel asynchronousServerSocketChannel =
                             AsynchronousServerSocketChannel.open(group);
                        if (asynchronousServerSocketChannel.isOpen())
                             //bind to local address
                             asynchronousServerSocketChannel.bind(new InetSocketAddress(SERVER_IP, SERVER_PORT));
                             while(!shutDown){
                                  Future<AsynchronousSocketChannel> asynchronousSocketChannelFuture =asynchronousServerSocketChannel.accept();
                                  final AsynchronousSocketChannel channel = asynchronousSocketChannelFuture.get(); // Timeout can be specified in the get() function, thread is blocked here
                                  System.out.println("New channel created successfully");
                                  // First call, should print Result of call 1 is : 10 (size of ABCDEFGH)
                                  ByteBuffer buffer1 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer1, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 1 is :" + result);
                                            ByteBuffer response = ByteBuffer.wrap("Received".getBytes());
                                            channel.write(response);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(3000);
                                  // Second read, should print error InterruptedByTimeoutException
                                  ByteBuffer buffer2 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer2, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 2 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                                  Thread.sleep(9000);
                                  // Second read operation was failed, no try to read again . AN EXCEPTION IS THROWN HERE : Reading not allowed due to timeout or cancellation
                                  ByteBuffer buffer3 = ByteBuffer.allocateDirect(250);
                                  channel.read(buffer3, 5, TimeUnit.SECONDS, null, new CompletionHandler<Integer, Object>() {
                                       @Override
                                       public void completed(Integer result, Object attachment) {
                                            System.out.println("Result of call 3 is :" + result);
                                       @Override
                                       public void failed(Throwable exc, Object attachment) {
                                            exc.printStackTrace();
                        else
                             System.out.println("The asynchronous server-socket channel cannot be opened!");
                   catch (Exception ex)
                        ex.printStackTrace();
                        System.err.println(ex);
         }

    I'm having the same "Unable to read the SIM card" issue. My phone is less than two months old, the unable to read SIM card issue started about a week after I purchased the phone. That was followed by a host of erratic, sporadic issues to the phone becomes unusable and the only way to temporarily fix it is to remove the battery for a few seconds.  I've gone through the factory reset with Verizon reps where I purchased the phone from as well as with a Verizon online Chat representative. In a nutshell, I got a ticket to send the phone back to Samsung in Plano, Texas to get the phone fixed, I am going to do that today because this problem is ridiculous.

  • I have Photoshop Eleent 12 and use a Windows PC.  I hae been using a Canon EOS 50D for several years, which uses a Compact Flash Card.  I have always downloaded pictures by using a card reader wich I connect to my computer. I Go to the Organizer, click on

    I have Photoshop Eleent 12 and use a Windows PC.  I hae been using a Canon EOS 50D for several years, which uses a Compact Flash Card.  I have always downloaded pictures by using a card reader wich I connect to my computer. I Go to the Organizer, click on "Import" and select "From camera or card reader".  Once on the Photo Downloader, I select the pictures, chose the folder and click on "Get Media" and all the photos get downloaded. Today I folled the same procedure as always, but ZI'm gettig an error message that reads"Import Failed" followed by another message that reads "Nothing was imported. The file(s) or folder(s) selected to import did not contain any supported file types, or the files are already in this Catalog."  I'm puzzled by this message and don't know what to do o get my photos.  Any suggestions?

    The organizer doesn't care where you send your photos when you download them via the downloader or where they happen to be when you first bring them in if you use the Get Photos command, but once your pics are in the Organizer, you *must* move them from within organizer or it can't find them. You don't have to use My Pictures at all if you don't want to, but regardless of the folder where you put your photos, if you want them someplace else, you use organizer to do it.

  • My Macbook Pro won't read my Compact Flash card

    Here’s the problem.
    Mavericks won’t acknowledge the existence of my Compact Flash card when presented in a card reader (I have tried two readers). It is a card I have been using with Lion on my Macbook Pro for some time quite happily.
    There is nothing wrong with the card; it works just fine in our Windows machine and in my camera.
    My Compact Flash card is a Kingston 4Gb card. It was formatted in the camera.
    The camera was bought approx 2003. Its a digital Pentax Optio 33GS (top of the range at the time shooting 3.2 megapixels!).
    On my Macbook Pro 15” (bought new approx 2010) the card does not appear in Finder but does appear in Disk Utility.
    The information for the main entry on the LHS in Disk Utility is displayed as follows:
    Disk Description: 4Gb Generic Storage Device Media
    Write status: Read/write
    The sub entry which appears as disk1s1 on the LHS is:
    Mount point: Not mounted
    Format MS-DOS (FAT16)
    I  attempted to erase the Card using Disk Utility; I selected the main entry on the LHS and I chose the format MS-DOS (FAT). This returned a Disk Erase Failed msg “Wiping volume data to prevent future accidental probing failed.”
    I then tried again, this time selecting Windows NT File system (Tuxera NTFS) as I have Tuxera installed. This did not work either; it failed with the same error msg.
    OK so then I tried Mac OS Extended (Journaled) but this failed as above also.
    I am not quite sure why, but when I reinserted my card into my camera, my camera could not read the card so I had to reformat the card within the camera.
    Oh yes, I also tried rebooting my Macbook with the card inserted but this made no difference.
    I have run our of ideas. All help gratefully received.
    Thank you. Carol
    PS ... apologies to anyone who saw my previous post in which I referred to my card as an SD card when in fact it is a Compact Flash card
    MacBook Pro, OS X Mavericks (10.9) 
    I have this question too (0 

    Okay, I am making progress here now.
    Using the link in my message above timestamped Dec 13, 2013 4:24 AM, I filed a tech support request describing the problem. Because they asked for details to confirm that the problem was with their product, I copied and pasted pretty much verbatim the text from my message above.   
    Around noon, same day, I got a message back from technical support saying they were sorry for the problem and would provide me with a replacement unit. Two hours later, I got a message from their RMA department saying that because the product has a two year warranty, they needed a copy of my receipt. I located a copy of my receipt for the purchase from Amazon on September 10, 2012 and forwarded that to them.
    At this point, I am optimistic that it's going to work out okay. So far, I am very impressed with the responsiveness of Kingston's technical support and customer service departments.
    If I actually do receive a working replacement, I will post an update here.

  • Expresscard/34 Compact Flash card reader?

    Does anyone know if there is such a thing as a Expresscard/34 Compact Flash card reader?
    Thanks
    Mark

    Yes, all pro digital photographers use CF cards and most use FireWire card readers. The rest use USB2 card readers.
    Many of us keep a $7 PCMCIA card adapter for emergency backup but rarely use it because it is sooooooo sloooooow. It also takes over your computer not allowing you to do much else during the downloading of photo/files.
    Do that a few times and you see the need for upgrading to a new standard.
    It would be nice to be able to just pop a card into the side of the laptop without plugging in a reader.
    On the other hand - Sprint and Verizon do need to make an Express/Card 34 for internet access. I may be getting a MacBook Pro next month and not being able to connect to the internet from anywhere is my biggest fear, more so than the PhotoShop problem.
    Steve
    homepage.mac.com/daddysteve

  • SSD Flash card reader for proprietary HDD

    Hi,
    Im an Apple service provider, I have a late 2010 MB Air which is damaged, client wishes to retrieve data from internal hard drive, which is a Flash card, the type that uses Apples proprietary interface (its a slim stick with a connector at the bottom)
    Does anyone know of a sled or card reader that will enable me to read from the flash stick?
    Thanks
    Scott

    Yes that is what I understood! As I told you before the Photofast SSD Upgrade Kit comes with an USB3-MBA-SSD-Flashdrive-Reader But it's not longer available b/c of Apple and they don't list it on their website. You can try to find one on Ebay.
    Btw. the Taiwan website of Photofast still shows the product: http://www.photofast.tw/products/
    Message was edited by: mark_muc

  • Which compact flash card reader (still available) works with core i7?

    Help! My card reader died. I'm having trouble finding a compact flash card reader for my iMac Core i7. I'm shooting with a Canon 7D. Any suggestions?

    Maybe a bit pricey http://store.apple.com/us/product/H6333VC/A?fnode=MTY1NDA2NA&mco=MjQwODk2ODQ
    In essence, all USB 2.0 Card Reader should work (SanDisk for example) as well.
    Stefan

  • Reading Compact Flash cards

    My new Macbook Pro arrives tomorrow and I'm wondering what will be the fastest way to upload images from my Compact Flash cards. I presently have a PowerBook G4, for which I was able to find a very fast CF card reader that slid directly into the PCMCIA slot (I believe that's what that slot is called). Since the Macbook Pro doesn't have the same slot, what is my best (fastest) option for uploading images from my CF cards?

    probably an external USB card reader

  • Has had 2 iTunes gift cards and the scratch off strip on the back leaves us unable to read the numbers and we can not retrive anysongs without the correct numbers and letters. What can we do? Please help...

    Has had 2 iTunes gift cards and the scratch off strip on the back leaves us unable to read the numbers and we can not retrive any songs without the correct numbers and letters. What can we do? Please help...

    iTunes Store: Invalid, inactive, or illegible codes

  • I'm looking for a compact flash card reader that will work with the ipad 4 with the lightning port. please help?!

    I purchased the ipad 4/retina diplay 64 GB model today and i need a compact flash card reader that works with it.
    has anyone had any luck with this??
    thank you.

    I found this with a simple Google Search:
    http://photojojo.com/store/awesomeness/ipad-cf-sd-reader/
    http://www.amazon.co.uk/Camera-Card-Reader-Connection-iPad/dp/B005NN8V3M
    But Diovonex is correct, use the standard Camera Connection kit and transfer them from the camera directly as described in this other thread.
    https://discussions.apple.com/thread/4751292?start=0&tstart=0

Maybe you are looking for

  • Tint2: Multiple Desktops in one panel but spread over complete width

    Hi, I just installed Arch again und my desktop computer which has 2 monitors. I use tint2 as a panel and I have it on my secondary monitor only. I am using Openbox Multihead as Window Manager. Now I am able to get two distinct settings for tint2: - S

  • How do i edit a pdf file with acrobat 9 standard

    i have a doc that was sent to me thru email, i saved it as a pdf file now i want to edit it and it seems impossible. Please help! Thank you

  • Statistical value GRWR

    hi all, I have maintained condition record for condition type GRWR for import purpose with the relevant inco terms.  But the same is not getting copied to statistical value in import data, and also not coming in MEIS report.  Any suggestions please

  • Lightroom 1.4 and Windows 7

    Some background: I have had Lightroom since 2007. My current version is 1.4. I do not have the CD/DVD of the software because I downloaded it from the Adobe website. A few weeks ago I upgraded from Vista 64 to Windows 7. The issue: Lightroom has alwa

  • SAP Script Problem in output in DEV and QA systems

    Hi all, I'm working on Bill of Lading form. we tested the form well in development system and moved it to QA. It gives me spacing issues in QA. few columns moved out of their designated area etc... The point to be noted is I have given fixed length o