How can I upload files to an sd card on my mac mini

I am trying to upload music files to an sd card in the built-in card reader on my mac mini and when I insert it it tells me that it is read only. I cannot add files to the card.
Is there any way to make sd cards writable from the built-in reader?
Thanks.

If Limnos is right about NTFS, might see if these work in Lion...
You could format that HDD as Fat32/MS-DOS, but you'd be limited to 4 GB Filesizes.
NTFS-3G Stable Read/Write Driver...
http://www.ntfs-3g.org/
MacFUSE: Full Read-Write NTFS for Mac OS X, Among Others...
http://www.osnews.com/story/16930
MacDrive for the PCs... allows them to Read/Write HFS+...
http://www.mediafour.com/products/macdrive/

Similar Messages

  • How can i upload files from one ip address to another  ip address machine ?

    how can i upload files from one ip address to another ip address machine ?

    i need to copy files from one client m/c to server m/c like sftp
    please suggest solution on this

  • How can i upload files in servlets and also using jsp

    means that uploading files(.doc) or any files by using servlets and jsps

    yawmark wrote:
    saichand wrote:
    means that uploading files(.doc) or any files by using servlets and jsps
    [http://www.google.com/search?q=How+can+i+upload+files+in+servlets+and+also+using+jsp]
    ~Good topic titles are indeed brilliant search keywords. It's sad to see that it won't even come in the mind of the topicstarters to Google it before posting the topic.

  • In KE13N How can I Upload files

    In KE13N How can I Upload files ? , Other than file should be in which format?

    Hi
    You need to first save file description from the planning layout.
    You need to go to transaction KEPM open the planning method. It will open in excel format provided you layout is excel integrated . In the menu there will be a option to format setting do this, save the excel sheet in the desktop.
    Once you do format settings and there will be a menu appearing as save file description click on this. After this you can update the excel file downloaded to your desktop and upload through transaction KE13N.
    Anand

  • How can I best make use of all my devices ? Mac mini, Apple TV, AirPort Extreme, airport express, ipad 2 (all purchased in 2011) and an old imac with OS X. I use my iPhones personal hotspot for all Internet.

    How can I best make use of all my devices ? Mac mini, Apple TV, AirPort Extreme, airport express, ipad 2 (all purchased in 2011) and an old imac with OS X. I use my iPhones personal hotspot for all Internet.

    Maybe you are looking to re-purpose this equipment versus getting rid of it if so, the best thing to do is search the internet for tutorials.  And I say this because it's what I would do, there are a lot of tutorials online.    Hope you can find good use for them.  Worse case scenario if you can't find something right now, package them very nicely and when you come across something unbox and enjoy.  I've re-purposed a mac color classic and LOVE IT!!

  • How can we upload file into to OCS Content repository when we are in Apex

    We have installed the Oracle Application Express 2.2.1 into the OCS 10.1.2 database.
    The Apex authentication is set to operate with OCS SSO.
    We have made a form. There is a browse button on the form. We would like if the uploaded file appeared in the OCS content database repository as
    opposed to Apex document repository.
    To put it into another word, how can we upload the file into to OCS Content repository when we are in Apex.
    Generally speaking, how can we reach content from Apex?
    We have found many java based examples to use content sdk, but how can we use them with Apex? We believe that
    content hasn't got plsql interface.
    i would highly appreciate it if you sent me a full example program.

    Hi Ram,
    Thanks for the reply
    We have a requirement to device a solution to upload the policy documents related to iProcurement
    I am planning to create an OA page to upload the content and planning to use the AOL function security to restrict the users those who can access this page .
    Is there any better way to implement the security?
    Is this approach feasible or is there any better way to approach this requirement?
    Thanks

  • How can I upload file in JSP portlet?

    Hello,
    How can I upload a local file in JSP portlet? What do I have to use and where can I found infromation about that?
    Does someone has experiance in uploading file?
    Thank you!
    Kristjan

    http://jakarta.apache.org/commons/fileupload/
    http://jakarta.apache.org/commons/fileupload/using.html

  • How can i Upload Files from my Flex 2.0 Application?

    How can i do a Upload File funtionality with Flex 2.0? Do i
    have to make the component? How is the code in Flex/ Action Script
    to make this possible?. I'm new in this Flex world and it seems to
    me very interesting to make RIA's Applications; in fact i'm making
    a little Employees Application for my company and i'm trying this
    technology and of course i need the functionality that i asking
    for.
    Regards.
    Andres.

    I haven't tried this, but I believe what you could do is
    append
    requestHeaders to the urlrequest object that you pass into
    the file.upload()
    method. The requestHeaders is an array of name/value pairs
    that would be
    included with your post. At least in theory, I believe that
    shoudl work.
    Good luck.
    Phil
    "tantalo" <[email protected]> wrote in
    message
    news:e3q3mt$138$[email protected]..
    > Hi. Phil, how i commented in the forum the examples
    works ok, with a
    > little
    > changes to make a file Upload. Now i have another doubt,
    i need to make a
    > submit of a form with another fields and the file
    selected.
    >
    > I made a HHTP Service for that purpose with the tags
    Requests like:
    >
    > <mx:HTTPService id="empleadoRequest"
    > url="
    http://andresbarrios:8080/directorio/empleados/insertarEmpleado.jsp"
    > useProxy="false" method="POST">
    > <mx:request xmlns="">
    >
    <empresa>{empresa.selectedItem.data}</empresa>
    >
    <ubicacion>{ubicacion.selectedItem.data}</ubicacion>
    >
    <departamento>{departamento.selectedItem.data}</departamento>
    > <cedula>{cedula.text}</cedula>
    > <nombre>{nombre.text}</nombre>
    > <apellido>{apellido.text}</apellido>
    > <!--Falta Fecha de Nacimiento -->
    > <sexo>{sexo.selectedItem.data}</sexo>
    >
    <estado_civil>{estado_civil.selectedItem.data}</estado_civil>
    >
    <telefono_celular>{telefono_celular.text}</telefono_celular>
    > <extension>{extension.text}</extension>
    >
    <correo_electronico>{correo_electronico.text}</correo_electronico>
    > </mx:request>
    > </mx:HTTPService>
    > I have the global variable called "file" that contains
    the file selected.
    > I
    > want to send this file variable in the HHTPservice call
    EmpleadoRequest,
    > can i
    > do that with a Request tag like another field? or the
    only way is trougth:
    > file.upload(upload.cfm) ?;
    >
    > I want only make a one call to the server to submit the
    fields of the form
    > and
    > to upload the file at th e same time can you help me How
    can i do that?
    >
    > Thanks.
    >
    > Regards.
    >
    > Andres.
    >
    >
    >

  • How Do I transfer Files From My PC to my new Mac mini?

    I am saving all my Word documents, music files, picture files on CDs to upload to my new Mac. But, what about things like certain program files, like Adobe, etc., and Mozilla Firefox favorites, passwords, etc.? I expect to get my new Mac mini within 2 weeks, and I want to be as prepared as possible. Help! Also, the operating system listed on my purchase order says Mac OSX Snow Leopard, but there wasn't anything to select that option, so I put Mac OSX (10.6.5) because I assumed that was the most current.
    Thanks in advance for your help.
    My PC is running Windows XP.

    welcome to the bright side of computing, Joe !
    you might find [_*Switch 101*_|http://www.apple.com/support/switch101> informative.
    also see
    *from a user*:
    http://www.myfirstmac.com/index.php/mac/articles/one-page-crash-course-in-switch ing-to-the-mac
    *Very useful tutorials on Macs here*:
    http://www.apple.com/findouthow/macosx/
    *Last but not least*:
    Learning how to use Apple OS X in 27 easy lessons!
    http://www.apple.com/support/mac101/work/
    JGG

  • How do I transfer files from one user account on the mac mini to another user account?

    I had to set up a new user account for my son.  I need to transfer files from his old user account and from my user account to his new user account on the mac mini.  How do I do this? 

    Move them to /Users/Shared/ and then into the new account.
    (85692)

  • How can I install window 8 on external hard drive on mac mini

    So, I have mac mini and I'd like to install win8 on external hard drive and can anyone give me guides to do it?
    also I wonder would I be able to run win 8 after installation using parallels desktop?
    thanks in advance

    I have to agree that Windows8 is a waste of time, especially if you don't have a touch screen and compatible apps.
    However, the latest version of Parallels supports running Windows8, Parallels can either run Windows from a 'virtual disk' file which can be stored wherever you want including on an external drive, or it can also be configured to run Windows from a Boot Camp partition created using Apple's Boot Camp Utility.
    See http://download.parallels.com/desktop/v7/update2/docs/en/Parallels%20Desktop%20U ser's%20Guide/32733.htm
    In order to run Boot Camp from an external drive and therefore be able to setup the Boot Camp partition on the external drive you first have to install and run OS X on the external drive. Then the Boot Camp utility will let you add the Boot Camp partition on the external drive. You cannot run OS X and the Boot Camp utility from an internal drive and try adding the Boot Camp partition to the external drive. The Boot Camp Utility only lets you add the partition on the same physical drive it is running from.
    Personally I have legal XP and Windows7 licenses (currently using Windows7) and even if the Windows8 upgrade was totally free of charge I would not bother with it. I would also not bother with it at work as an IT Manager.

  • How can i upload file using ajax post request and jsp

    Hi
    this is my code files
    addPhoto.jsp
    <html>
    <head>
    <title>Add Photo</title>
    <script>
    var optionNo = 0;
    var i=1;
    var val=0;
    var file = 0;
    var exten = new Array(".jpg",".jpeg",".gif");
    function addValues()
         for(var i=0;i<5;i++)
              optionNo += 1;
              oNewOption = new Option();
              oNewOption.text = optionNo;
              oNewOption.value = optionNo;
              addSelect.add(oNewOption);
    function addBoxes()
         var str = "";
         var j=0;
         val = document.getElementById('addSelect').value;
         for(j=1; j<= val; j++)
              str = str + '<font size=3>file:' + j + '</font>';
              str = str + '<input type="file" id=filepath'+ j +' name=file'+ j + ' onchange="uploadFile(hidden'+ j + '.value)"><div id="result'+ j +'"></div>
              str = str + '<input type="hidden" name="hidden' + j + '" value=' + j +'>';
         document.getElementById('addPhoto').innerHTML = str;
    function uploadFile(value)
    var str = "filepath" + value;
    file = value;
    var param = document.getElementById(str).value;
    var parameter = "filepath=" + param;
    alert(parameter.length);
    if(checkValidity(param))
    var url = "uploadFile.jsp";
    if (window.XMLHttpRequest) {
    req = new XMLHttpRequest();
    } else if (window.ActiveXObject) {
    req = new ActiveXObject("Microsoft.XMLHTTP");
    req.open("POST", url, true);
    req.setRequestHeader("Content-type", "multipart/form-data");
    //req.setRequestHeader("Content-length", parameter.length);
    req.setRequestHeader("Connection", "close");
    req.onreadystatechange = callback;
    req.send(null);
         else
              document.getElementById("result" + file).innerHTML = "upload .jpeg,.jpg,.gif Files Only";
    function callback() {
    if (req.readyState == 4) {
    updatepage(req.responseText);
    function updatepage(str){
         document.getElementById("result" + file).innerHTML = str;
    function checkValidity(str)
         var i=0;
         var j=0;
         var str1 = str.substring(str.lastIndexOf("."),str.length);
         alert(str1);
         for(i=0;i<exten.length;i++)
         if(str1.search(exten) != -1)
              j++;
              break;
         if(j>0)
              return true;
         else
              return false;
    </script>
    </head>
    <body onload="addValues()">
    <h5>Add Photo(s)</h5>
    <select id="addSelect" name="addSelect" onchange="addBoxes()">
    <option id="select" selected>Select</option>
    </select>
    <div id="addPhoto"></div>
    </body>
    </html>
    uploadFile.jsp
    <%@page import="java.io.*"%>
    <%
    /*try
    String contentType = request.getContentType();
         System.out.println(request.getMethod());
         System.out.println("Content type is :: " +contentType); 
         if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
              DataInputStream in = new DataInputStream(request.getInputStream());
              DataInputStream in1 = in;
              int formDataLength = request.getContentLength();
    System.out.println(formDataLength);
              byte dataBytes[] = new byte[formDataLength];
              int byteRead = 0;
              int totalBytesRead = 0;
              while (totalBytesRead < formDataLength)
                   byteRead = in1.read(dataBytes, totalBytesRead, formDataLength);
                   totalBytesRead += byteRead;
              out.println("<br>totalBytesRead : " + totalBytesRead + " : formDataLength = " + formDataLength);
         } catch(Exception e) {
              e.printStackTrace();
         try
         String filePath = request.getParameter("filepath");
         System.out.println(filePath);
         File f= new File(filePath);
         String path = f.getName();
         String contentType = request.getContentType();
         System.out.println(contentType);
         //InputStream in = new FileInputStream(filePath);
         DataInputStream in = new DataInputStream(request.getInputStream());
         int formDataLength = request.getContentLength();
         System.out.println(formDataLength);
    byte[] buf = new byte[1024];
    OutputStream out1 = new FileOutputStream("c:/docs/" + path);
    int len;
    while ((len = in.read(buf)) > 0) {
    out1.write(buf, 0, len);
    in.close();
    out1.close();
         out.write("File Uploaded SucssesFully");
    catch(Exception e)
         e.printStackTrace();
         out.write("error while Writing File");
    %>
    the above code in request.getContentType() i am getting 0. I am not passing the content length. for the same application with out using Ajax i am
    getting the size of file... it is very very urgent for me.. pls help me out on this...
    Any one having the code on this pls mail me the code...
    my mail id ... [email protected]
    Regards
    Ashok Kumar

    Sure, you can upload a file, using a form input element of type file. You pick this up with a servlet, though you need a special request wrapper to sort out the multi-part request you get back that way (there's a suitable package on jakarta.apache.org/commons)
    The servlet decrypts the file and can pass the results to a JSP for display.
    Don't try to do the complicated stuff in a JSP, it all gets incredibly messy, and that's not what JSPs are for.

  • How can I upload files to a website with iPad?

    I'd like to use my iPad to apply for jobs on university websites but when I get to the option to upload a file, my resume, it's grayed out, option not available. Is this really not possible? Is there anyway to do this?

    I will not be buying an ipad until It is suitable to replace all the functions of my laptop
    You'll be waiting a long time then. The iPad has never been touted as a laptop replacement. There will always be things that are better done on a laptop or desktop computer. iPad simply isn't designed for or intended to be used for all the functions a laptop is.

  • How can i get files from an sd card? removable drive does not pop up on desktop

    i tried connecting the sd card to get files and all that pops up is iphoto, but theres no pictures or anything thats on it.

    First, run Disk Utility to check that the SD card is being recognized and mounting. In the list of devices on the left column, you should see first the internal HDD and the boot volume, then the CD/DVD device, then the SD device and volume.
    To have the SD volume show up on the desktop, make sure that the Finder's General Preferences have the External Disks option checked.

  • HT204384 My new 11" Macbook air do not have SD card slot, how can I upload photos from my SD card?

    Hello,

    I agree with Glenn229.
    Four years ago, I purchased this product and am still happy with it:
    Kingston 19-in-1 USB 2.0 Flash Memory Card Reader FCR-HS219/1
    There may be more current products these days, but that should give you the idea.
    I have no financial or any other interest in Kingston.  I only use this product as a customer.

Maybe you are looking for

  • How do I fix my Location bar so that it's sorted my names (albalphabetical order), like my Bookmarks?

    I have finally organized my Bookmarks into alphabetical order, and for some reason whenever I type in a website in the Location bar, the suggested websites shown below aren't in alphabetical order. For example, If I type in 'youtube.com' it doesn't g

  • EPG/ Overlay on Composite video out

    I know there was an issue originally with the DTR-T1000 youview box firmware where the EPG/overlay would not be visible on the the composite video (YELLOW) output if an HDMI cable was connected at the sametime, but I thought that had been fixed with

  • Remove "Java Applet Window" from the window

    Hi, can anyone tell me how to remove the word "Java Applet Window" from a applet/frame/dialog running on the browser? Thank you very much. yunhe

  • Solaris 8 (Intel) and Voodoo Banshee

    Hi all, I need install the Solaris 8 operation system in a INTeL machine and it has this kind of video card. Please, there is a driver for this video card? I downloaded the Solari's HCL and I could not see this card in the Capatibility List. If someo

  • Brciekd lumia, now wont even turn on and wont char...

    Having had SOOOO MANY issues with this useless piece of junk, I thought master resetting  might help some problems... 29 hours later the cogs are still turning... Ive tried all the solutions to reset the phone by pressing button sequences etc... some