Any idea to get lightscribe capability under Arch ?

I tried qemu to install win2k as guest OS, but that does not fit as Qemu virtualizes the drive as "Qemu CDROM" --> lightscribe software does not see a lightscribe capable drive :-(
Therefore I still cannot use the lightscribe drive from within qemu.
Any idea ?

How men
Now checking rpm2cpio, as "4L" comes as http://www.lacie.com/download/drivers/4 … 6.i586.rpm + http://www.lacie.com/download/drivers/l … -intel.rpm
Thank you kmaster

Similar Messages

  • Can not use all the tools in my drawing markups any ideas on getting them to work?

    Can not use all the tools in my drawing markups any ideas on getting them to work?

    Hi tonys60181,
    Could you please let me know what version of Adobe Acrobat are you using.
    What all drawing tools are you unable to access?
    Is this issue specific to one PDF file or all?
    What exactly happens when you try to use any drawing markup?
    Please let me know.
    Regards,
    Anubha

  • I am trying to restore ipad from previous back up. it requests a password it is none of the passwords I have used in the last decade any ideas to get around this?

    I am trying to restore my ipad from previous back up. itunes requests a password, it is none of the passwords I have used in the last decade any ideas to get around this?

    The password would be either your iTunes ID password or your admin password for the Computer.
    MJ

  • Any ideas what Apple is keeping under the wraps for official io7 release in fall?

    Any ideas what Apple is keeping under the wraps for official io7 release in fall? Seen the reviews but I was really looking forward to the swype feature. Strange why Apple is keeping quiet on that?

    Hi sanagoesapple,
    This is all we know about it:
    http://www.apple.com/ios/ios7/
    We are just users like you - we have no inside information....
    Cheers,
    GB

  • Any IDEA of Getting Server Time & RUn JavaScript Clock

    Hi ,
    Any idea of getting Server Time & running javascript Clock
    I tried using ..
    var tDate=<%=new java.util.Date()%>;
    But it is not working
    Plz help

    You can create a date in javascript like this
    new Date(year, month, day, hours, minutes, seconds, milliseconds) You don't have to supply all the parameters (this is javascript after all)
    Getting it from java, into javascript...
    <%
    java.util.SimpleDateFormat sdf = new java.util.SimpleDateFormat("yyyy,MM,dd,HH,mm,ss,SS");
    Date now = new Date();
    String sNow = sdf.format(now);
    %>
    var tDate = new Date(<%=sNow %>)

  • Can't open my Yahoo email.  Message says "connection to the server failed". Any ideas to get there?

    Can't open my Yahoo email.  Message says "connection to the server failed". Any ideas to get there?

    Hi saghd,
    I have an article for you that will walk you through some troubleshooting steps regarding this issue:
    iOS: Troubleshooting Mail
    http://support.apple.com/kb/ts3899
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • Any ideas for getting AirPlay to work???

    I have been researching the subject of enabling AirPlay on my iPod Touch (Gen4) and iPad2 for quite some time. I have read a number of blogs and articles and reviewed many of the postings on this forum. Unfortunately, none of the information has allowed me to enable AirPlay on my iPad2 with my Dell running Windows7.
    Here is what I have done thus far:
    1) I have enabled Home Sharing on my iPad (under iPod settings) and on iTunes on my PC. In using the Remote app on the iPad, I can see my library.
    2) I have made sure both devices are on the same Wi-Fi network.
    3) I have performed a plethora of restarts on the iPad.
    4) I have disabled the firewall on my PC.
    5) I have performed so many syncs I have lost count.
    6) I have gone through the troubleshooting steps provided on the Apple website.
    7) I have validated that iTunes is current, using 10.2.1.1.
    Everything that I have tried has yielded the same result, I am unable to see the AirPlay icon in the iPod app, videos, etc. Two things to mention, although I was under the impression these two things did not matter: 1) I do not have any music on the iPad (I didn't think it mattered) and 2) I do not have any videos on the iPad.
    Any ideas what I can try next?

    AirPlay lets you stream content from your iOS device to an Apple TV or an AirPort Express.
    From here:
    http://www.apple.com/ios/
    Get even more play out of AirPlay — the wireless technology that lets you stream content from your iPhone, iPad, or iPod touch to your HDTV via Apple TV.1 In addition to music, movies, and photos, AirPlay now streams video from your Photos app. So you can shoot a home video and instantly share it with everyone in the room. Even AirPlay-enabled apps and websites get the big-screen treatment with iOS 4.3. And if your photos are the feature presentation, you can play a slideshow with all the stunning themes available on Apple TV.

  • Any ideas on getting airplay to work with u-verse router?

    Ok, so my airplay is just horrible on my apple tv/iphone/macbook pro combo.
    Airplay is a total joke, it will play to the apple tv for maybe 20 seconds and then it just gets all choked. The "remote" app does the same thing. I upgraded my internet connection thinking that at&t would come out and give me a new router too, but i guess they just bump the download speeds to the router. I'm pretty sure that the router is the problem. It's a "2wire" 802.11g supplied by att.
    Any ideas would be appreciated. I'm going to call the support number for the apple tv, but it's been my experience that support people are just looking at the same simple trouble shooting info that is posted on the internet. So i'm not expecting much.

    well i did get airplay to work better by trying all the channels in the router and settling on channel 4 as being the most reliable.
    Now if I could only get netflix to stream without stopping every minute or so. We have a 12mbps internet connection. Which is about 4 times faster than the standard At-t connection speed
    I still think that this stuff requires a much better router than most people have. My router is a G router, and it seems maxxed out. I wish i knew that things would work well with a faster N router.

  • I have tried to reinstall Photoshop Elements 9. The disc I own and the download installation program from Adobe both do the same thing. "Shared Technologies" failed to install and undoes installation.  Any ideas to get it to install?

    I need help getting Photoshop Elements 9 to install inspite of my "Share Technologies" failing to install.  Any ideas?

    Hi,
    See if this document helps - there are a few things that can clash with the installation.
    Install rollback and Shared Technologies | Windows
    Good luck
    Brian

  • ANY IDEA TO GET THE NAME OF THE FILE

    Hi guys , i´m using method cl guifrontend_services=>file_open_dialog  to search any file in my hard disc, with that ,I get the whole path,  however I only want the name of the file , eg.
    G:MusicGuns N' RosesG N' R Liespatience.mp3  i only want "patience "  any ideas. thank you .

    Try
    DATA: BEGIN OF itab1 OCCURS 0,
                 word(40),
               END   OF itab1,
               l_lines TYPE i.
    SPLIT file_name AT '\' INTO TABLE itab1.
    DESCRIBE itab1 LINES l_lines.
    READ TABLE itab1 INDEX l_lines.
    This will put each bit of text between the '/' into a separate line in table itab1.  If you read the last line, you'll get the last bit of the text which is your file name.

  • 1000s of photos randomly sorted into 1000s of folders.  Any ideas for getting them out without opening each one??

    Somehow, very much unintentionally (it might have something to do with a 2 yr old "typing" on the keyboard while I wasn't looking), 1000s of my photos have been placed into separate folders, 2 or 3 random photos or videos in each folder.  I have started opening each folder and moving the photos out, but with almost 1600 folders to go, I need to know if some else has ever encountered this issue, and if so, did you find a quicker way to get the photos out of the folders without having to manually open each one?
    For the record, I now have my computer set to lock my screen when I leave my desk, lesson learned. 

    I am using an iMac with iOS 7.0.4. All of the photos were on iPhoto '11 after I updated to 9.4.3, and Aperture 3.4.5, but a few months ago they all disappeared from the iPhoto and Aperture libraries, Events, Photos and Faces sections. A few weeks later, I noticed a bunch of new folders on my external hard drive with the same title in a serial list of numbers, had somehow been created.  Since I still had the pictures backed up on an external hard drive, I didn't worry about it too much at the time, but today I needed to find a picture from years ago and that brought up the need to fix the mess. In opening the 200 or so files that I have already opened, I noticed that they all listed in their details that they had been modified on 7/27/2013, from 12:07 am to 12:33 am (I guess it wasn't the 2 yr old's fault after all, because she would have been sleeping, sorry kiddo).  The peculiar thing is that there is no rhyme or reason to the way the photos and videos were put in the folders. Some folders have only photos from a broad range of time, some have photos and videos, but none of them are sequential in time within the folder. When I transfer the photos and videos out of the folders, into the main overall picture folder, some of them are already in the main folder and some of them are not, meaning that I can't just take for granted that they are all copies, and delete all of the folders with that certain name.
    Since I have now cleared my child of being the culprit for all of this mess, I'm thinking it must have been caused by a computer glitch or an update, as Terence suggested, especially considering the time of night when the changes took place.  All that is listed in the software update section of my System Preferences area is an update to the AirPort Utility to version 6.3 on 7/26/23 at 12:23 pm. iPhoto had updadated to 9.4.3 on 4/27/13, but none of the files showed modifications on any date other than 7/27/13.  Aperture had also updated to version 3.4.5, but it had updated days earlier on 7/11/13. Nothing had updated since 7/11/13 until AirPort Utility updated on 7/26/23, and nothing updated after that until 9/12/13.

  • Any ideas on getting facebook 'like' links working in SMS and MMS?  A few issues Apple might fix please?

    Hi,
    I work in a Mobile Marketing company where clients use our bulk SMS / MMS messaging service in Australia.  A few things I've noticed where iPhones are falling short in comparison to the competition in RECEIVING messages (and I hope are fixed because I'm an apple fan) - a few inconsistencies:
    * Facebook links eg  "Like us at http://m.facebook.com/example"... Last night the link worked on my iphone when I sent it from our platform to my handset.  (4s Firmware 3.4.03, Version 6.1.3, Telstra)  It took me to the page on safari, and even earlier this morning it did - yet now it won't (and I haven't made any changes).  I have tried restarting, (soft and firm reboot) as well as ensuring I'm logged in - or out on another page.   The link does work on computer as well as on my collegues (4s 6.1.3, Firmware 3.4.03  Vodafone au 14.1) and it IS working there - but not sure for how long (considering it was working on mine earlier too)   FYI It also works on 9 differnt android versions of handsets in the office here too.
    * occasionally this happens with shortened links too (like a shortened google map link).  There seems to be no pattern to the issue. 
    * When clients send MMS through our platform, the delivery on the iPhones is inconsistent.  eg, the client can send WMV / GIF / JPG with a Title, Header and Footer message.  The artrwork should fall in the middle of the header and footer.  However another inconsitency - sometimes it does, and sometimes it doesn't.  I can't see any pattern of it as the layout changes intermittently (from minute to minute).    This particular issue is limited to  iPhones on software 6 versions. 
    * In a message, when the LAST WORD in SMS / MMS  is a 'link; - like web address or phone number to call, OCCASIONALLY it does not come up as a link (therefore recipient is unlikely to type it out to get to it).  Again, no pattern, just 'sometimes' does this happen.  Have tried putting a space after it, that doesn't work.  Only if another word is put after it will it always work. 
    * Got feedback yesterday that NO LINKS in message (landlines, mobiles, web address) were working on iphone 5.  Not sure if this is a constant or another inconsistent link?
    Anyway, I'd really like our clients to be able to use a "like us on facebook" link in their messaging with success... could Apple please look into solving these inconsistencies?
    Hoping you can help. 

    You are not addressing Apple here. We are users like yourself.
    The only thing I could think of in regards to this issue since it has worked on some occassions and not others is what if you deleted cookies and history from Safari. Does that make it work again? While SMS/MMS are a carrier function, I also know that some texts from different phones to the iPhone can produce strange results if the other device is using some type of font that is not supported by the iPhone. If you search the forum, you might find something related to that if you search for "strange characters in SMS" or something similar.
    When you produce these bulk SMS, do you write just the link, or do you write the HTML code in the SMS?

  • Any ideas on getting CDM to work in non-global zones ?

    I'm trying to find a way to use SGD in a Solaris containers enviroment. For the most part this works great except I can not get the client drive mapping to work. This is due to the fact that nonglobal zones are unable to be nfs servers however I see in the client.prf file I can add a different host to the config as the nfs server. has anyone tried this and gotten it too work ?
    when I try I am able to physically mount the share but if i let SGD do it I get :
    nfs mount: localhost: : RPC: Program not registered
    nfs mount: retrying: /smb
    any thoughts ?

    Hi tonys60181,
    Could you please let me know what version of Adobe Acrobat are you using.
    What all drawing tools are you unable to access?
    Is this issue specific to one PDF file or all?
    What exactly happens when you try to use any drawing markup?
    Please let me know.
    Regards,
    Anubha

  • In the latest update to Dreamweaver, tables guides/guidelines are missing when the border is set to 0. Before they used to show a guide in design view. Any idea on getting this back?

    I noticed that under VIEW > VISUAL AIDS there is a table borders option. But that whole menu is grayed out.
    For designing e-mails, this would be extremely useful.

    Are you in Live or Design View?

  • Trying to download adobe program 'adobe p;hotshot CS5 Optional Automate Plug-ins' but get a message "does not contain valid signature"  Any ideas to get around that please.

    Trying to download adobe program  adobe photoshop CS5 Optional Automate Plug-ins, but get a message  that it does not contain valid signature and it won't install the app.  Can someone help with this please?  Trying to reach Adobe by phone is impossible.
    ev

    First, have you installed all the updates for photoshop cs5 by going to Help>Updates from within photoshop cs5?
    The automated installer only installs the following plugins:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4965
    The following plug-ins and associated files are available via an installer:
    Automate Plug-Ins:
    • Contact Sheet II 
    • Picture Package (ContactSheetII) 
    • Web Photo Gallery (WebContactSheetII) plus presets 
    • Script for Layer Comps to Web Photo Gallery
    Other Optional Plug-Ins:
    • TWAIN
    Other plugins including the pattern maker plugin need to be installed manually using this download:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4964

Maybe you are looking for

  • Safari 5.1.6 won't open on Lion 10.7.4

    Process:         Safari [542] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.Safari Version:         5.1.6 (7534.56.5) Build Info:      WebBrowser-7534056005000000~6 Code Type:       X86-64 (Native) Parent

  • Mobile Account Creation and old topic

    http://discussions.apple.com/thread.jspa?threadID=1786733&tstart=1 -- This was never successfully answered and has been archived and marked as so? The problem it turns out, is that Leopard doesn't seemingly like the AD user's home folder location. I'

  • IDOC- JDBC    ---  ORA-00936: missing expression  - Error

    Hi all, I am working on a IDOC-> JDBC scenario. it works fine in development but in quality i amgetting the following message. Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Error processing request in sax parser: Er

  • Where do my questions go after I hit the 'Post Message' button?

    I've been through two techs, a phone call, and still cannot get questions or problems solved. So I came here to the forums, and post questions and they vanish into the digital cloud of nothingness. I need help to get an ipad to sync to the cc so I ca

  • Facetime for Mac not working

    I downloaded and install the Beta and got this message "You are missing a critical security patch. Please use Software Update to install Secrurity Update 2010-005" Which I tried to but that update does not show up