Mp3 cd burnt on macbook not working in cd player

I've burnt 2 mp3 cd's using iTunes on my macbook, neither will work in my mp3 player. Other mp3 cd's burnt using a PC work fine, can anyone give me tips on why this is happening and how to rectify this?

tohben wrote:is /Volumes/efi on OS X the same as /mnt/efi on linux?
In some sense, mount points are arbitrary -- you can mount a partition at /mnt/efi, at /boot/efi, at /Volumes/fred, at /some/weird/place, or whatever. There are a few limits on this based on certain critical directories -- for instance, attempting to mount anything at /etc is likely to lead to pain. Likewise, if a partition holds critical system files, it may need to be mounted at a particular location to do any good. For instance, if you split /var off onto its own partition, you'd want to mount that partition at /var (except perhaps for some very rare maintenance tasks). For the ESP, though, you can mount it just about anywhere -- under either Linux or OS X. The most common mount point in Linux is /boot/efi, followed in popularity by /boot. AFAIK, there's nothing remotely resembling a "standard" mount point for the ESP in OS X.
Speaking to your broader issue, tohben, I think you'll find this much easier if you download the official rEFInd binary .zip file from the rEFInd download page and run the install.sh script from OS X. That will do the installation for you. It's probably best to install it to the OS X root partition rather than to the ESP, because some users have problems with ~30-second delays when starting rEFInd from the ESP, but normally not when started from an HFS+ volume. (The default behavior of install.sh under OS X is to install to the OS X root partition; to install to the ESP, you must add the --esp option.) If you want rEFInd to read your Linux filesystems, you can add the --alldrivers option to install.sh to install drivers; or you can manually install only the driver(s) you need.

Similar Messages

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Question
    I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Go to your actual realplayer (program), click the top right button (Realplayer with an downwards arrow) and update your software. Make sure Firefox is closed while you do this.
    ::Worked for me::

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • IMessage on Macbook not working correctly

    Recently, my imessage isn't working on my macbook.
    When I click on a message that is already active, the whole chat deletes and the blank chat goes to the bottom of the list, as if it was the least recent chat I've had. When I sent messages, no messages show up.
    Messages on regular chats do not send through, but in group chats it does, however it still does not show my messages.
    I have tried resetting my computer multiple times, signing in and signing out and quitting the program but still it is not working.

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up guest users” (without the quotes) in the search box. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your personal files or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, or by a peripheral device.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode* and log in to the account with the problem. The instructions provided by Apple are as follows:
    Shut down your computer, wait 30 seconds, and then hold down the shift key while pressing the power button.
    When you see the gray Apple logo, release the shift key.
    If you are prompted to log in, type your password, and then hold down the shift key again as you click Log in.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.  The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    *Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode.
    Test while in safe mode. Same problem?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • HT2216 Applications on MacBook not working

    My MacBook turns out but no applications will open. Some keyboard shortcuts work but not the mouse. Not sure what software version I've got or how to find out when it's not working! Any help appreciated.

    If Finder is all that is showing press,
    Shift + Command + A to open the Applications window
    Use Arrow keys to go down to the Utilities folder,
    Move into it and locate and highlight the System Profiler application.
    Press Command  + O to open it
    Use the down arrow, and run down to Software heading and you'll see what the OS version is.
    Posting the OS version here will get your question posted in a better forum, that has more traffic and more chance of someone offering a solution.
    Back to your main problem, in the meantime if you have a USB wired mouse, plug that in and see if things return to normal.

  • Internet Connect ported over from from iBook to MacBook not working

    I recently bought a MacBook to replace my iBook. Not wanting to bring everything over I chose not to use the migration assistant and opted to bring certain files and programs over via firewire target mode. One of my choices was to bring over Internet Connect since I thought that would bring over my VPN settings. I think, however, the G4 version may not be entirely compatible with the intel/universal aspects of my new and already beloved MacBook.
    I can connect to the Internet without problem but when I open Internet Connect I get no signal strength indication, the base station ID is not available, checking the box to show the Airport status in the menu bar does not place the status in the menu bar (it shows up fine in the iBook and my iMac G5). The summary tab just gives me Airport link status not available but does indicate how long my current connectivity to the Internet has lasted.
    Is there any fix or reinstallation for Internet Connect possible? Thanks.
    iMac G5 and iBook G4 and now MacBook   Mac OS X (10.4.2)  

    No part of the operating system from your G4 iBook is compatible with a new Intel MacBook.
    You will have to replace any system files that you "brought over" from the G4 from the MacBook Installation DVD. The iBook is not Universal Binaries. That's why it is not working.
    If you don't wanna use the migration, then you'll probably have to set up your VPN settings manually again.

  • New Macbook not working properly?

    Well I recentely recieved my new Mac Book about 3 weeks back now and I recentely have came to find that my z key does not work when I'm on Mac OS X. But if I run bootcamp and go on windows the "Z" key on the keyboard works, the thing is aswell when I press it on Mac OS X it makes like a beep noise and nothing happen. Can someone please help me because although the Z key isn't used alot it is still no good not having it working.
    Thanks alot,
    Adam =]

    Sorry for double posting but I have more information.
    When I use the keyboard viewer and press Z it actually shows it being pressed on screen it just doesn't appear in text box's. Also I clicked on google search (randomly to try typing) and I didn't type I just pressed the keys using the keyboard viewers and when I pressed Z on the keyboard viewer it didn't come up so it's definately nothing wrong with the hardware it has to be something wrong with the programmes or something. Also I can write Z when I hold down shift + Z but other than that I can't use the cap lock to write it.
    Oh this is all very confusing please help
    Adam =[

  • Macbook not working with Avidav M1931TDB

    I just purchased the mini-DP to DVI adaptor, and hooked it up, and it is not working. Does anyone else have this setup, or can anyone help me out?
    Thanks!

    The monitor is made by Jetway; Avidav is just a brand.
    Can anyone help?
    Thanks

  • HT1338 Power cable for Macbook not working / Apple Care discount?

    My power cable for my Macbook stopped working. I went to the bookstore at my school and at first they told me I could get a discount on a new one ($29 instead of $79) because I have Apple Care. Then they told me that was a mistake and I have to pay full price even though I have Apple Care... True/false????

    It appears your Macbook is at least 2 years old. If you have the extended warranty and there is no physicla damage to your power adapter, then you "might" be eligible for a free replacement.
    Have you tried replacing the duckhead adapter yet? That's the part that normally fails first.
    Gramps.

  • My new Macbook not working :(

    My Mac wont start up, when i turn the power button on the screen remaining in the loading-to-startup stage never gets to the part to log in to account..
    does anyone know whats wrong? and what can i do to fix it?

    Boot from your system install DVD, run your Disk Utility and repair your permissions. if that does not work, run your system installer.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

  • DVD Studio Pro dvd not working in dvd player

    Hi There,
    I'd really appreciate your help.
    I've burnt a dvd using DVD SP - it reads 'formatting succesful' and ejects the disk.
    It works on my mac but not on my dvd player - it reads 'disk error'.
    Here's the thing: I've burnt it with ToastTitanium and it works on my dvd player.
    So it's not the dvds I'm using that's the problem.
    I've checked other forums and I've unchecked the box 'lossless linking' - still not working.
    I'm desperate.
    Please help.
    Sean

    Hey Mate,
    Merry Christmas!
    Just to be clear, here is a screenshot with a new project with no media, no template, no first play set etc...
    And as you can see DVD Standard is greyed out.
    Bizarre...
    Sean

  • Quicktime plugin for screen capture does not work in flash player 11.2

    Hello,
                   I have created a quicktime plugin (it is .component file) for screen sharing purpose.
    I have used quicktime framework for that. plugin is detected in flash player.
    This plugin is working perfectly for flash player 11 and below.But,
    It does not working in latest flash player 11.2.
    I have seen following error on console -
    Google Chrome Helper EH[240:e92b] *** QTCaptureSession warning:
    Session received the following error while decompressing video:
    Error Domain=NSOSStatusErrorDomain Code=-8974
    "The operation couldn’t be completed. (OSStatus error -8974.)".
    Make sure that the formats of all video outputs are properly configured
    Note - Compression format used in plugin is kBMPCodecType.
    Please, help me.

    The issue ended up being the change in resolution to my external monitor. Flash was unable to detect the proper coordinates of the color I was trying to select because I was running my monitor in HD mode rather than selecting an actual resolution from my monitor preferences. Changing the settings to an acutal resolution, instead of generic "HD mode" fixed the issue.

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

Maybe you are looking for

  • Problem upgrading from 1.4.1.02 to 1.4.2 with WInXP

    I wish to upgrade from Java 1.4.1.02 to 1.4.2 ((Please ignore my previous garbled posting, and read this instead). After downloading the Java SDK 1.4.2 Netbeans 3.5 co-bundle I tried to uninstall the old Java SDK 1.4.1.02 from Windows XP professional

  • Apps not installing to iPhone

    I backed up my iPhone 5 with all of my information from my iPhone 4 but my apps haven't installed, I press on the apps to install and it says 'Will Install' but I'm still not getting them on my phone. Any Help? By the way, I'm using ITunes iOs 10.7.5

  • Noticed that flash isnt supported on Mac OS 10.5.8 also...

    firefox/chrome will no longer be supporting it, i do not wanna buy a new macbook i own the white one from 2008 and it still runs perfectly, what do i do?

  • SunFire V40Z does not boot from DVD - suggestions and Tips?

    Hello, I got 2 SunFire V40Z servers from another datacenter. I got them racked and powered up and configured the Service processor and I can access the Sp remotely as well. I am trying to install Solaris 10 on it, but it seems like the system doesn't

  • I can't scroll my tabs when i have many that does not fit ....

    when i open many taps and try to scroll through them ..i cant , i have to use the little arrow in the far left to do so , so i cant scroll using my mouse .... by the way i use TAP MIX PLUS with no proplem before in 3.6.