How to print on a printer that has no OSX driver?????

I recently bought a new lexmark X2350 all in one printer, when i got it home i realised that there was no driver provided. I googled with no luck i treid and i emailed lexmark they were less than helpfull.
Is there any universal printer drivers out there or any programs that can help get around this problem?
Thanks
Conor

I recently bought a new lexmark X2350 all in one
printer, when i got it home i realised that there was
no driver provided. I googled with no luck i treid
and i emailed lexmark they were less than helpfull.
Your only real option is going to be returning the printer or selling it and buying a compatible printer.
Is there any universal printer drivers out there
There are universal drivers for printers which use standardised languages such as Postscript or PCL5 but even if the X2350 did use a standard printer language without a specific driver, the other functionality of the X2350 would not be available.
You are going to have to get a new printer.
iFelix

Similar Messages

  • Looking for an inexpensive all in one HP printer that has an SD card slot. Any suggestions

    Looking for an inexpensive all in one HP printer that has an SD card slot. Any suggestions

    ChrisPbass,
    I would suggest contacting HP Home & Home Office. They will be able to narrow down the field to what would be best for your particular use. There number is below.
    1 (888) 999-4747.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • I buy for mac app but not for the iPad, so how do I reinstall a program that has already purchased? I need help because I bought the imovie'11 but when he opened it only brought 8 movie trailer templates instead of the 15 it says on the program. How do I

    I buy for mac app but not for the iPad, so how do I reinstall a program that has already purchased? I need help because I bought the imovie'11 but when he opened it only brought 8 movie trailer templates instead of the 15 it says on the program. How do I solve this problem? Once paid for a program incomplete. I also liked that the AppStore itself had a button to reinstall programs already bought, because it is very hard to understand how to do this in the store, only option is to install and hide purchase, and how do I reinstall, attention'm talking about reinstalling a computer mac, not an ipad or iphone.
    Thank you.

    Prodesigntools.com , go ahead and download the software from there and use your serial number to serialize it.

  • How do you fix an ipod that has a black screen and it turns on but when it turns on the screen gets a lighter black but you still can't see the apps or anything?

    How do you fix an ipod that has a black screen and it turns on but when it turns on the screen gets a lighter black but you still can't see the apps or anything?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar              
    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit

  • How can I debug a sequence that has a subsequence is running in a separate thread?

    Hi,
    How can I debug a sequence that has a subsequence is running in a separate thread?
    I have to have a continues check for a  digital in signal to be able to terminate the sequence if a physical button is pushed.
    This is running in a separate thread, but this way I cannot debug the main sequence.
    Is there any workaround for this?
    Thanks,
    Andras

    This KB might help you:
    http://digital.ni.com/public.nsf/websearch/46D1E157756C37E686256CED0075E156?OpenDocument
    Let me know if this does not help.
    Allen P.
    NI

  • HT1212 how do u restore an iPod that has been disabled and has never been connected to the computer

    How do i restore an ipod that has been disabled and has never been conected to itunes

    Disabled
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
    Downloading past purchases from the App Store, iBookstore, and iTunes Store        

  • How can i copy a picture that has been installed with the flash player

    how can i copy a picture that has been installed using the flash player

    You can't. You can take a screen cap of it, but the container doesn't allow access to the individual images used in a SWF or FLV.

  • HoW do I save a recording that has been sent to me via text message? Thanks

    HoW do I save a recording that has been sent to me via text message? Thanks

    You will need a document storage, player, or manager to save the file (DropBox, File Manager, Box, VLC, MoliPlayer for example).
    To actually save the file, with it open in iMessage, tap the file icon (lower left) and select the app to save it in.

  • How do i create a report that has drill-down with class?

    How do I create a report that has drill-down levels so that I can have summary information at the top level but then view specific records at a more detailed level?

    can i know ur email address.
    this is my other one coding
    but problem is very very slow when i 1 see my output
    TABLES: proj, coep.
    *&            TYPES DECLARATION                                        *
    *TYPES: BEGIN OF tb_coep,
             wtgbtr TYPE coep-wtgbtr,
          END OF tb_coep.
    DATA : int_proj TYPE proj OCCURS 0 WITH HEADER LINE.
    DATA : int_coep TYPE coep OCCURS 0 WITH HEADER LINE.
    DATA : gd_date(10). " FIELD TO STORE OUTPUT DATE
    TYPES : BEGIN OF t_date,
              year(4)  TYPE n,
              month(2) TYPE n,
              day(2)   TYPE n,
           END OF t_date.
    *&            SELECTION-SCREEN                                         *
    SELECTION-SCREEN BEGIN OF BLOCK b01 WITH FRAME TITLE text-001.
    SELECT-OPTIONS: so_pspnr FOR proj-pspnr OBLIGATORY.
    SELECTION-SCREEN ULINE.
    SELECTION-SCREEN END OF BLOCK b01.
    *&            TOP-OF-PAGE                                              *
    *&            fetch the data for the list                              *
    SELECT * INTO int_proj FROM proj where
             pspnr in so_pspnr.
    append int_proj.
    CLEAR int_proj.
    ENDSELECT.
    SELECT * into int_coep FROM coep WHERE
             wtgbtr in so_pspnr.
    append int_coep.
    CLEAR int_coep.
    ENDSELECT.
    LOOP at int_proj.
      write : / int_proj-pspnr, int_proj-post1.
    ENDLOOP.
    LOOP at int_coep.
      write : int_coep-wtgbtr.
    ENDLOOP.
    Edited by: Dickson on Jul 10, 2009 10:53 AM

  • How do i deauthorize a pc that has a bad hard drive

    How do I Deauthorize a pc that has crashed and the old drive is not accessable?

    Wait until you have five authorizations and then deauthorize all.
    See iTunes Store: About authorization and deauthorization.
    tt2

  • How can I uninstall an app that has locked my phone?  Can I uninstall the app online from my computer?

    How can I uninstall an app that has locked my phone?  Can I uninstall the app online from my computer?

    I don't know about uninstalling an app from a web page but if all else fails you could try recovering with the Nokia lumia recovery tool.
    FAQ - How can I recover/reset/restore my phone software? - Nokia - USA

  • How to I upload a folder that has multiple files in it?

    How do I upload a folder that has multiple files in it? I need to upload an entire folder onto a web page but when I choose the folder it opens it up and becomes individual files instead of just the one folder.

    You generally can't upload a folder to a website, but some sites allow you to select multiple files. You'll have to refer to the specific website instructions to see if that's possible.
    Alternatively, it might be appropriate to first compress the folder in the Finder using rightclick, then "Compress", which creates a single .ZIP file - then upload this file.
    Matt

  • How to check A document library that has document publishing enabled and content approval

    HI
    1) how to check A document library that has document publishing enabled
    2)A document library or a list that has content approval enabled
    adil

    For both question, check version settings of that library
    >>1)Document Version History "Create
    a version each time you edit a file in this document library?" should set to either create major versions or Create
    major and minor (draft) versions.
    http://office.microsoft.com/en-us/sharepoint-server-help/publish-or-unpublish-a-version-of-a-file-HA101862529.aspx
    >>2)Content Approval  "Require
    content approval for submitted items?" should be set to Yes
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • How can you find an ipod that has been lost

    how can you find an ipod that has been lost and the icloud is not turned on

    lost/stolen                                      
    No app is required.                                               
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    iCloud: Find My iPhone
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it unless you had iOS 7 on the device. With iOS 7, one has to enter the Apple ID and password to restore the device.
    - Apple will do nothing without a court order                                                        
    Reporting a lost or stolen Apple product                                               
    - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • HT1420 how can i deauthorized a computer that has crashed. i have hit my limit but i have no way to access itunes on those computers

    How can I deauthorize my computer that has crashed. I have hit my limit but have no way to access itunes on any of those computers

    By using the Deauthorize All function.
    (69001)

Maybe you are looking for

  • Creating folder or file in specific path

    Hi, Can we create files or folders in a specific path (could be on a remote server also) using oracle?

  • Anyone having issues with custom paper sizes?

    I've narrowed down my printing problems to be primarily when using custom paper sizes. I still get regular crashes with standard sizes, but cannot print at all if I set up a custom size in A3. I am able to print custom sizes in Lightroom so it must b

  • Group Messaging wont turn off on iOS 5

    I have group texting off, but ever since i've upgraded to iOS 5 when I send an mass text to a few people, it turns into group texting. How can I fix this since my friends can see each others responses and its very annoying?

  • Lazy instantiation of AM's data model.

    Hi, is there a way to force lazy instantiation of an AM's datamodel. Currently we do it manually by removing the data model content and finding/creating the components as needed. This is quite distressing because we now have to keep track of instance

  • Portal- TREX Server Error ?

    Hello All I am facing one strange issue. I am working on portal Version: 7.00 SP9 and have TREX 7. I have created the custom search options,component, and result sets. Sometimes when I click on search button the J2EE server gets restarted automatical