Best sd card with class for my Lumia 520 in 32gb

I want to know that which sd card I purchase of 16 gb or 32 gb that will satisfatorily work in my Lumia 520

Welcome to the Linux world. I have been a Linux user for 10 years and I can tell you that you will get no support except from fellow users. Learn to use the Linux user boards and also google.
This might help:
Linux board
put a memory card in the slot and run from the command line:
sudo modprobe usb-storage
If this solves your problem, try adding usb-storage to your /etc/modules file so that when your computer restarts it will automatically load the usb-storage module.
You may even have to manually mount the memory card. Install gparted from apt-get and check if the memory card does not show up as an unmounted storage device...then you can manually mount it by using the command line. You may also have to edit the fstab entries to make it hot pluggable.
Post back if you do not understand any part of this or need more help.

Similar Messages

  • ALV with classes for selected fields

    Hi ALL,
            Please can anybody will give the example code for
    <b>ALV with classes for selected fields</b> from database table .

    Hi,
    *& Report  YR_TANS_ALVTEST                                             *
    REPORT  yr_tans_alvtest                         .
    INCLUDE ya_yr_tans_alvtest_top.
    TABLES yttans_test.
    DATA itab LIKE yttans_test OCCURS 0.
    DATA gr_alvgrid TYPE REF TO cl_gui_alv_grid .
    DATA gc_custom_control_name TYPE scrfname.
    gc_custom_control_name = 'CC_ALV'.
    DATA gr_ccontainer TYPE REF TO cl_gui_custom_container .
    DATA gt_fieldcat TYPE lvc_t_fcat .
    DATA gs_layout TYPE lvc_s_layo .
    data wa_itab like line of itab.
    TYPES : BEGIN OF ty_help,
              roll_no LIKE yttans_test-roll_no,
              name LIKE yttans_test-name,
            END OF ty_help.
    DATA: git_returntab TYPE TABLE OF ddshretval INITIAL SIZE 0.
          CLASS lcl_event_handler DEFINITION
    CLASS lcl_event_handler DEFINITION .
      PUBLIC SECTION .
        METHODS:
    handle_double_click FOR EVENT double_click OF cl_gui_alv_grid IMPORTING
        e_row e_column es_row_no.
      PRIVATE SECTION.
    ENDCLASS.                    "lcl_event_handler DEFINITION
    DATA gr_event_handler TYPE REF TO lcl_event_handler .
    *&      Form  handle_double_click
          text
         -->I_ROW      text
         -->I_COLUMN   text
         -->IS_ROW_NO  text
    FORM handle_double_click USING i_row TYPE lvc_s_row i_column TYPE
    lvc_s_col is_row_no TYPE lvc_s_roid.
    leave to list-processing.
    read table itab index is_row_no-row_id into wa_itab.
    write:/ 'Roll no: ', wa_itab-roll_no, /'Name: ', wa_itab-name,
    /'Marks: ', wa_itab-marks.
    LEAVE SCREEN.
    ENDFORM .                    "handle_double_click
          CLASS lcl_event_handler IMPLEMENTATION
    CLASS lcl_event_handler IMPLEMENTATION .
    *--Handle Double Click
      METHOD handle_double_click .
        PERFORM handle_double_click USING e_row e_column es_row_no .
      ENDMETHOD .                    "lcl_event_handler
    ENDCLASS .                    "lcl_event_handler IMPLEMENTATION
    SELECT-OPTIONS roll FOR yttans_test-roll_no .
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR roll-low.
      DATA: lit_help TYPE TABLE OF ty_help.
      DATA: wa_returntab LIKE LINE OF git_returntab.
      SELECT roll_no name INTO TABLE lit_help FROM yttans_test.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'ROLL_NO'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'roll-low'
          value_org       = 'S'
        TABLES
          value_tab       = lit_help
          return_tab      = git_returntab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      READ TABLE git_returntab INTO wa_returntab INDEX 1.
      roll-low = wa_returntab-fieldval.
    AT SELECTION-SCREEN.
      SELECT * FROM yttans_test INTO TABLE itab WHERE roll_no IN roll.
    START-OF-SELECTION.
      CREATE OBJECT gr_event_handler .
      CALL SCREEN '9000'.
    *&      Module  STATUS_9000  OUTPUT
          text
    MODULE status_9000 OUTPUT.
      SET PF-STATUS 'STATUS_9000'.
      SET TITLEBAR 'TITLE_9000'.
    ENDMODULE.                 " STATUS_9000  OUTPUT
    *&      Module  USER_COMMAND_9000  INPUT
          text
    MODULE user_command_9000 INPUT.
      DATA: ok_code TYPE sy-ucomm,
            save_ok TYPE sy-ucomm.
      save_ok = ok_code.
      CLEAR ok_code.
      CASE save_ok.
        WHEN 'BACK' OR '%EX' OR 'RW'.
          CALL METHOD gr_ccontainer->free.
         CALL METHOD cl_gui_cfw=>flush.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    *&      Module  alv_display_9000  OUTPUT
          text
    MODULE alv_display_9000 OUTPUT.
      PERFORM display_alv .
    ENDMODULE.                 " alv_display_9000  OUTPUT
    *&      Form  display_alv
          text
    FORM display_alv .
      IF gr_alvgrid IS INITIAL .
        CREATE OBJECT gr_ccontainer
          EXPORTING
       PARENT                      =
            container_name              = gc_custom_control_name
       STYLE                       =
       LIFETIME                    = lifetime_default
       REPID                       =
       DYNNR                       =
       NO_AUTODEF_PROGID_DYNNR     =
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT gr_alvgrid
          EXPORTING
       I_SHELLSTYLE      = 0
       I_LIFETIME        =
            i_parent          = gr_ccontainer
       I_APPL_EVENTS     = space
       I_PARENTDBG       =
       I_APPLOGPARENT    =
       I_GRAPHICSPARENT  =
       I_NAME            =
          EXCEPTIONS
            error_cntl_create = 1
            error_cntl_init   = 2
            error_cntl_link   = 3
            error_dp_create   = 4
            OTHERS            = 5
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        SET HANDLER gr_event_handler->handle_double_click FOR gr_alvgrid .
        PERFORM prepare_field_catalog CHANGING gt_fieldcat .
        PERFORM prepare_layout CHANGING gs_layout .
        CALL METHOD gr_alvgrid->set_table_for_first_display
          EXPORTING
       I_BUFFER_ACTIVE               =
       I_BYPASSING_BUFFER            =
       I_CONSISTENCY_CHECK           =
       I_STRUCTURE_NAME              =
       IS_VARIANT                    =
       I_SAVE                        =
       I_DEFAULT                     = 'X'
             is_layout                     = gs_layout
       IS_PRINT                      =
       IT_SPECIAL_GROUPS             =
       IT_TOOLBAR_EXCLUDING          =
       IT_HYPERLINK                  =
       IT_ALV_GRAPHICS               =
       IT_EXCEPT_QINFO               =
          CHANGING
            it_outtab                     = itab[]
            it_fieldcatalog               = gt_fieldcat
       IT_SORT                       =
       IT_FILTER                     =
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            too_many_lines                = 3
            OTHERS                        = 4
        IF sy-subrc <> 0.
          LEAVE TO LIST-PROCESSING.
          WRITE 'error'.
        ENDIF.
      ELSE.
        CALL METHOD gr_alvgrid->refresh_table_display
    EXPORTING
       IS_STABLE      =
       I_SOFT_REFRESH =
          EXCEPTIONS
            finished       = 1
            OTHERS         = 2
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    ENDFORM.                    "display_alv
    *&      Form  prepare_field_catalog
          text
         <--P_GT_FIELDCAT  text
    FORM prepare_field_catalog  CHANGING p_gt_fieldcat TYPE lvc_t_fcat .
      DATA ls_fcat TYPE lvc_s_fcat .
      ls_fcat-fieldname = 'ROLL_NO'.
      ls_fcat-coltext = 'ROLL No.'.
      APPEND ls_fcat TO p_gt_fieldcat.
      ls_fcat-fieldname = 'NAME'.
      ls_fcat-coltext = 'NAME'.
      APPEND ls_fcat TO p_gt_fieldcat.
      ls_fcat-fieldname = 'MARKS'.
      ls_fcat-coltext = 'MARKS'.
      APPEND ls_fcat TO p_gt_fieldcat.
    ENDFORM.                    " prepare_field_catalog
    *&      Form  prepare_layout
          text
         <--P_GS_LAYOUT  text
    FORM prepare_layout  CHANGING ps_layout TYPE lvc_s_layo.
      ps_layout-zebra = 'X' .
      ps_layout-grid_title = 'Students Details'.
      ps_layout-smalltitle = 'X' .
    ENDFORM.                    " prepare_layout
    Regards,
    Tanveer.
    Mark helpful answers
    Message was edited by: Tanveer Shaikh

  • Best Multifunction Printer (with FAX) for Mac Pro running OS 10.4.11?

    What is the Best Multifunction Printer (with FAX) for Mac Pro running OS 10.4.11? thanks for your advice.

    sad to say, the mininum MAC osx version for the printers should be at least 10.6

  • Wanted Computer Controled Electronic Cards with Software for Motion Control

    Hi everybody
    Already worked on designing a cnc table to cut sheet materials.
    But we don't know enough for electronics. We think a system which is
    software driven from pc. So, we look for Wanted Computer Controled
    Electronic Cards with Software for Motion Control but we don't know more
    which motors, electronic cards and control panel we have to use.
    Please help me. Thanks.
    Atilla KESKEKLER
    Ahmet Bayman Cad. No 10/4 Otosanayi 4.Levent 80650 Istanbul Turkiye
    Tel: + 90 212 270 74 00 Fax: + 90 212 270 75 89
    www.aareklam.com.tr [email protected]

    Dear Atilla,
    You should contact AutomationSolutions (www.AutomationSolutions.com) to receive help with designing your system. They can spec your motors and help you picking the correct controllers and drivers from National Instruments to control the motors that you want to use. Please let me know if you need more information about the capabilities of Motion Control systems from National Instruments.
    Thank You,
    Morten Jensen
    National Instruments

  • Best partition setup with btrfs for / on SSD

    Hello there,
    I am about to set up a new Arch box and have decided to go with btrfs for / with lzo compression turned on. However, I have some quesitons:
    - should I create a dedicated subvolume for /?
    - should I use a subvolume for /var or create a partition for it? If create a partition for it with - let's say 15GB - that would mean that all r/w access for it will happen on the same blocks on my SSD and thus incrase wear on the SSD as opposed to not limiting /var to its own partition. But then again, I have no idea if brtfs with lzo compression would be a good option for /var...?
    - Should I make a dedicated partition for /home on the SSD and if yes, should I opt for ext4 or btrfs? If the latter, should I turn on lzo copmression or not?
    Thanks for helping me with those questions.

    The idea of subvolumes defeats the purpose of separate partitions, those are soo 2001.
    Format it with GPT, create a subvol for / so you can do easy snapshotting and fallback.
    Don't put /var into a separate subvol as it contains your pacman db.
    But definately one for /home.
    And compress=lzo for all of them, the compression is smart and will not bother trying to compress things that can't be compressed, unless you force it, which you shouldn't.
    Also don't use -o discard, use a nightly fstrim cron job instead.

  • Gift-cards with preorder for iPhone 4?

    I am going to pre-order the iPhone 4 online on the 15th and choose to pick it up in the store. But I'm confused about what it means to pre-order.
    Are you actually making a purchase? or just reserving an iPhone to purchase in the store?
    If you have to buy on-line when you pre-order, can you use 2 or 3 apple gift cards for the purchase? or do you have to use a credit card?
    thanks!

    You do know that contacts are NOT part of the iTunes backup, right?  The only part of contacts that get backed up is the information needed to maintain your favorites and recent call log.
    Contacts are meant to live permanently on your computer (Outlook, Address Book) or a cloud-service (Google, iCloud) for safekeeping and archival.
    Sounds like you might not have been using your phone as recommended and that your contacts are gone.  That's unfortunate.  Now might be a good time to review the User Guide to refamiliarize yourself with the way you should be using your phone to minimize data loss in the future.
    Good luck.
    GDG

  • What is the best Book or online class for Adobe Indesign, Photoshop & the rest in Australia?

    Hi All,
    I live in australia and love using the creative cloud platform. I would like to further my training both basic and advanced in a few of the services. Is there a good set of books or physical online class (like through Seek learning etc) for Adobe??
    Regards,
    Sam

    You can't beat the online www.Lynda.com online classes.
    If you want a beginner's book on InDesign, I recommend Sandee Cohen's InDesign Visual QuickStart Guide (Peachpit Press). For an advanced class, look for Real World InDesign (Peachpit Press).

  • Wifi pcmcia card with antenna for PB g4...

    Will any wireless card work in the pcmcia slot of my PB G4 or does it need to be Apple specific? I already have the built in Airport extreme but I want to get a pcmcia card that has an external antenna attachment. My neighborhood has free wifi spots that are a bit out of range.

    Google is your friend:
    http://www.data-alliance.net/servlet/the-68/Orinoco-Wireless-Laptop-Card/Detail

  • Problem with store in my lumia 520

    Hi.....
    i cant download apps from store above 20mb...
    first above 100mb required wifi.... But now it asks for only 20mb....
    what i do....
    please help me.......

    Hi krishna212,
    Welcome to the forum!
    Did you encounter any error message? What type of connection used? Please note that you will need a WI-FI connection when downloading apps or games larger than 50 MB. You can also try to download an application via web and sent it to your phone automatically. Just visit:
    http://www.windowsphone.com/en-us/store
    Check this out for more information:
    http://www.windowsphone.com/en-US/how-to/wp8/apps/download-apps-and-games-faq
    Keep us posted. 

  • Mms/ apn settings for nokia Lumia 520

    Please help edit apn settings

    Many APN settings are pre-installed with the Settings > access point options and if known you'll see your carrier access point there. If it is not tap it to activate. If the APN settings are not available in a preset you can enter the manually there as well by tapping the + icon at the bottom of the screen. What settings you need would usually be found on your carrier website or through their support.
    Click on the blue Star Icon below if my advice has helped you or press the 'Accept As Solution' link if I solved your problem..

  • Best graphics card for mac pro 1,1 Intel

    Can anyone tell me the best graphics card to buy for a mac pro 1,1 intel for use with Cinema 4D R12? 
    Many thanks. 

    This is the iMac forum - try the Mac Pro forum for faster response https://discussions.apple.com/community/desktop_computers/mac_pro

  • Headset for my Lumia 920

    I´m looking for a good headset with microphone for my Lumia 920 !
    It has to be waterproof, I mean when I´m running and biking ?
    Any suggestions from someone using one ? (not a salesman)
    Solved!
    Go to Solution.

    a quick search of Google, i couldn't find anything either matching your needs. as it is only a new product that has only been out in the market for a couple of months, perhaps a manufacturer will make such an accessory in time. until then, nothing more you can do.

  • Dolby audio settings for Lumia 520

    As every nokia Lumia windows phone 8 device has a Dolby audio settings with a equalizer in the settings menu, there are presets and a
    custom one. This is not available in Lumia 520. This is utter discrimination,just because it is a low end Lumia device. If Nokia didn't want to give us Dolby audio settings, then why show a audio menu like in other devices and when we open its blank. This is teasing us. They shouldn't have put the audio settings in the settings menu for Lumia 520. Firmware. This is very bad nokia. Either update the firmware by removing audio from the settings or just give Lumia 520 users a equalizer. All the devices have the same chipset 520,720,620. A qualcom msm8227 with 2 krait cores and same adreno 305 gpu. But 520 doesn't have the equalizer , the other devices do have it. I expect a. Prompt reply. Nokia.

    I am so disappointed with the way this lumia 520 turned out to be. There is no speed dial function, when even typing the numbers you have to type it,fully without the phone giving suggestions. There is no means to go forwards when using internet explorer, and you cannot set personal ringtones unless you use a computer or an app that does that. It is so messed up and uncool. I just hope all these are corrected in the amber update, speaking of which we don't even know when it would be released.

  • What is the best design tablet with stylus to have an easy interface with Adobe Photoshop?

           What is best design tablet with stylus for use with Adobe Photoshop for this holiday seasons offering 2013?
    I am trying to find a tablet with good stylus  to work with Adobe Design products primarily Photoshop. I would like one that worked in layers with photoshop.
    The folks a Wacom don't even answer the phone just a recorded message go to the web site with questions.  Not a good sign for a company. So what is a good design tablets for pressure sensitive stylus? Will wacom cintiq tablet interface well with Apple Imac IOS 10.8?
    I love my Samsung note 3 but it will not easily transfer images to apple Imac 10.8.
    Please help me find tablets with good adobe design interface?  Just tell me which way to jump. It is easier to leave Apple for PC or Android  than to abandon Adobe knowledge. The products have to work together.
    Does wacom Cintiq not embrace an easy interface with Apple  Imac IOS 10.8 latest software. Wacom seems to be championing Windows 8 as a companion to their tablet interface.
    Can an Ipad deliver good layered designs using adobe software design programs and a stylus?
    What should I buy for an Adobe design tablet with pressure sensitive stylus for ths Holiday Season? 
    Should i wait until next year?
    Will the tablet work in  Photoshop layers?
    this link seemed ominus
    http://forums.adobe.com/message/4950467

    subhash007 wrote:It's not 802.3ad link aggreagated interface. In the switch side, the ports will be configured as normal access ports and the bonding config will be done on the server side.
    To be honest, I don't understand how the Linux bonding mode can work without anything configured the other end.
    My understanding of 'bonding' comes from Multilink PPP (MLP) where the data stream is chopped up and split across two (or more) circuits. At the other end, a similar MLP-enabled device reforms the data stream from the multiple circuits, maintaining packet order. But this requires MLP-enabled 'bonding' devices at each end.
    Perhaps you could help me better understand the Linux bonding...
    subhash007 wrote:If any single homed server is connected to Switch 2, what will be traffic path for its data packets?Switch 2 ------------------> Switch 1 ----------------------> Active firewall                                   ORSwitch 2 ------------------> Passive Firewall -----------> Active Firewall
    If the firewalls operate in the same fashion as Cisco ASAs, then the inter-firewall link doesn't carry traffic. It's for failover detection and HTTP replication only. But like I said, I'm not familiar with this vendor's products.
    subhash007 wrote:Also will there be any change in traffic path if the trunk between Switch 1 & Switch 2 is converted to L3 routed interface? Since there is no VRRP, i can convert the trunk to L3 right?
    Same as above.

  • Black update for Lumia 520 in India

    Nokia

    hi mate, if you check this page here: http://www.nokia.com/global/support/software-update/wp8-software-update/wp8-availability-in-asia-pac...
    you can see that the Lumia Black update is indeed available for the Lumia 520. However, its roll-out is done in stages so you may not receive the update yourself for another week or so. please keep checking back every day on the phone itself to see if the update is there.

Maybe you are looking for

  • Oracle 8.1.7 on Linux 7

    Hi, Is it possible to install Oracle 8.1.7 on Linux 7.0? I know it wasnt possible a while ago with 8.1.6. Thanks in advance for your help!!! Mike

  • Preparing to wipeout Mac.....

    Well, I got my Mac back from the Apple store and they said that there is nothing wrong with it. So, in hopes of correcting this continual crashing problem, I'm preparing to do a clean install of everything. In my other post, here were the steps given

  • Reconciliation from iPlanet in OIM 9.1.0

    Hello folks, Did anybody succed to bring the users from iPlanet into OIM 9.1.0? If there is somebody who can help me please let me know. Have a nice day! Razvan

  • SAP Collections - Customer integration

    Hello all, I am trying to create a business partner from a customer trough transaction FLBPD1, but despite Iu2019ve done the entire configuration needed, as mentioned in SAP note 956054 u2013 BP_CVI: Customer/vendor integration of ERP 6.00, I always

  • Ndiswrapper-beyond package

    It seems that in the huge upgrade, there was an update for ndiswrapper-beyond, however this driver seems to be compiled with the new gcc and the beyond kernel is still compiled with the "old", which means that i can't modprobe it: ndiswrapper: versio