How ASM Manages Disk Failures

Hi,
Was going through Oracle ASM document and came across this topic, need some clarification on this please.
"The disks are first taken offline and then automatically dropped. In this case, the disk group remains mounted and serviceable. In addition, because of mirroring, all of the disk group data remains accessible. After the disk drop operation, Oracle ASM performs a rebalance to restore full redundancy for the data on the failed disks".   -- What does this mean?
Thanks

Simple example.
Single normal redundancy diskgroup DATA1 with 2 failgroups called MIRROR1 and MIRROR2. Each failgroup has 3 x disks (let's say 512GB).
Disk 2 in failgroup MIRROR1 fails. The MIRROR1 failgroup is not available as a result. DB operations continue unaware of the problem as MIRROR2 is online and working fine.
The dba cannot fix disk 2 within the meantime for repair period of ASM. ASM forces disk 2 out the MIRROR1 failgroup by force dropping it. MIRROR1 has now 2 disk remaining.
ASM starts a rebalance process to stripe the contents of the MIRROR1 failgroup across 2 disks - as oppose to 3 disks. If the space in use fits on 2 disks the rebalance operation will succeed. MIRROR1 will become online and available. But it will only be able to carry 1TB of data, as oppose to MIRROR2 with it 3 disks and 1.5TB capacity.
If the space used cannot be striped across the remaining disks in MIRROR1, the rebalance will fail due to insufficient capacity and the failgroup will remain offline.
In either scenario, the recommended action is to add a new 512GB disk to MIRROR1, reverting it back to a 3 disk failgroup, and then rebalance the failgroup.

Similar Messages

  • How to simulate disk failure in ldom?

    Hi there,
    we want to simulate a disk failure in an ldom running solaris 10.
    The control domain has physical fc-attached disks that are exported to the ldoms as vdisks.
    ldm rm-vdisk -f does not work:
      Failed to remove vdisk instance
      The -f option has no effect because the device cannot be removed safely
    Is there another way to "steal" the disk from the running ldom?
    Regards
    Tony

    I would make it invisible on the storage.
    Which result do you expect?
    Using ZFS? Your system probably freezes, because zpool default failmode is `wait`.
    Best regards,
    Marcel

  • Hard disk failure, replaced; how to get songs from iPod back into iTunes

    Hard disk failure, replaced with new hard drive etc;
    How do I get all songs from iPod back into iTunes?
    (mix of CD sourced and iTunes shop sourced)

    I can't believe there's no answer to this. Apple wants to charge customers for support but this has got to be happening thousands of times a day what with Windows OS reinstalls being what they are-numerous! Please let me know if/when you get a reply, thx!

  • How to remove archive log files from ASM managed 11g R2 database?

    Hi,
    I am planning to automate deletion of older archive log files from my 11g R2 Production instance which is ASM managed.
    Also want to remove the archive log files files from standby database.
    Please provide your inputs on how can I remove the older archive log files.
    Regards,
    Avinash

    Greetings
    Did you check RMAN,
    RMAN>show all;
    CONFIGURE RETENTION POLICY . . . .
    CONFIGURE ARCHIVELOG DELETION POLICY TO [CLEAR | NONE | APPLIED ON STANDBY];
    DELETE NOPROMPT EXPIRED ARCHIVELOG ALL;
    DELETE NOPROMPT ARCHIVELOG ALL COMPLETED BEFORE 'SYSDATE-10';
    This will be part of your RMAN Backup scripts/process
    Check the urls below:
    11gRel2:
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV90079
    http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642/rcmmaint.htm#BRADV89634
    10g:
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14193/toc.htm#sthref45
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/rcmconc1.htm#i1008093
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14192/maint003.htm#sthref712
    Regards & Thanks
    BN

  • How to create ASM device disk groups

    I have new Oracle unbreakable linux installed. I have Oracle 11g running. Now I'm wanting to install ASM. When going through dbca - there are no available disk groups. When I click on "Create New" - there are no member disks for me to use. Normally these are already created for me by unix admin, but this is home set-up. Appreciate any help.

    Hi,
    You need to apply below RPM's and configure the ASMLIB, follow below steps, after the setup install the ASM and then it will show the avaliable disks.
    Required RPM for ASM Configuration
    oracleasm-support-2.0.1-1.i386.rpm
    oracleasm-2.4.21-37.EL-1.0.4-1.i686.rpm
    oracleasmlib-2.0.1-1.i386.rpm
    Configuring ASMLib
    Before using ASMLib, you must run a configuration script to prepare the driver. Run the following command as root, and answer the prompts as shown in the example below. Run this on each node in the cluster.
    /etc/init.d/oracleasm configure
    Configuring the Oracle ASM library driver
    This will configure the on-boot properties of the Oracle ASM library driver. The following questions will determine whether the driver is loaded on boot and what permissions it will have. The current values
    will be shown in brackets ('[]'). Hitting <ENTER> without typing an answer will keep that current value. Ctrl-C will abort.
    Default user to own the driver interface []: oracle Default group to own the driver interface []: dba Start Oracle ASM library driver on boot (y/n) [n]: y Fix permissions of Oracle ASM disks on boot (y/n) [y]: y
    Writing Oracle ASM library driver configuration: [ OK ] Creating /dev/oracleasm mount point: [ OK ] Loading module "oracleasm": [ OK ] Mounting ASMlib driver filesystem: [ OK ] Scanning system for ASM disks: [ OK ]
    Next you tell the ASM driver which disks you want it to use. Oracle recommends that each disk contain a single partition for the entire disk. See Partitioning the Disks at the beginning of this section for an example of creating disk partitions.
    You mark disks for use by ASMLib by running the following command as root from one of the cluster nodes, run it from node 1:
    /etc/init.d/oracleasm createdisk DISK_NAME device_name
    Tip: Enter the DISK_NAME in UPPERCASE letters.
    Ex:
    [root@vmractest1 ASMlib]# /etc/init.d/oracleasm createdisk VOL1 /dev/sdc1
    Marking disk "/dev/sdd1" as an ASM disk: [ OK ]
    [root@vmractest1 ASMlib]# /etc/init.d/oracleasm createdisk VOL2 /dev/sdd1
    Marking disk "/dev/sdd1" as an ASM disk: [ OK ]
    [root@vmractest1 ASMlib]# /etc/init.d/oracleasm createdisk VOL3 /dev/sde1
    Marking disk "/dev/sde1" as an ASM disk: [ OK ]
    Verify that ASMLib has marked the disks:
    [root@vmractest1 ASMlib]# /etc/init.d/oracleasm listdisks
    VOL1
    VOL2
    VOL3
    On all other cluster nodes, run the following command as root to scan for configured ASMLib disks:
    /etc/init.d/oracleasm scandisks
    Ex:
    [root@vmractest2 ASMlib_install]# /etc/init.d/oracleasm scandisks
    Scanning system for ASM disks: [ OK ]
    [root@vmractest3 ASMlib_install]# /etc/init.d/oracleasm scandisks
    Scanning system for ASM disks: [ OK ]
    And then check that everything is as in the first node:
    [root@vmractest2 ASMlib_install]# /etc/init.d/oracleasm listdisks
    VOL1
    VOL2
    VOL3
    [root@vmractest3 ASMlib_install]# /etc/init.d/oracleasm listdisks
    VOL1
    VOL2
    VOL3
    The above steps are clearly explained in the document " http://blogs.oracle.com/content/dav/oracle/mtblog/A/Al/AlejandroVargas/gems/StepbyStepRAConLinux3.pdf " under section *11- Configure ASMlib for ASM Management*
    If you still have issues please do let us know.
    Regards,
    Satya.

  • A10 Hard disk failure and replacement - How do I use Recovery Disks?

    I have a Satellite Pro A10 which has suffered a hard disk failure. I have replaced the hard disk drive (with a non-toshiba drive) but cannot load the operating sysytem etc from the recovery disks supplied with the computer when new. When starting the computer up with recovery disk No 1 in the CD drive I get the message "Invalid system disk, Replace the disk and then press any key" Any suggestions as to the remedy would be most welcome.

    Hello Tony
    Please check at first if your new HDD is properly recognized by BIOS. It yes you should prepare the HDD for installation. I recommend you to use some tool and make a partition on new HDD. If you want you can format it before you start the installations procedure.
    I am pretty sure that after that the recovery installation can be done successfully.
    Bye

  • How to calculate the disk failure level for a 3-way mirror pool?

    On another post in this forum, the following information regarding a 3-way mirroring storage pool is given:
    Pool requires a quorum of 50% plus drives to be present to survive.
    with 3 way mirror - we have a guarantee of surviving 2 disk failure.
    Maintaining the above requirements and providing the guarantee -
    mandates us to have minimum 5 disks in pool. As if we loose 2, we still
    have 3 in the pool (>50%) for pool to maintain it's quorum.
    Just to be sure, I would like Microsoft to confirm that the following calculation applies to any number of disks in a 3-way mirroring pool.
    If the number of disks in a 3-way mirroring pool is n, INT(n/2) disks can fail without data loss.
    Examples:
    With 5 disks, INT(5/2)=INT(2.5)=2 disks can fail.
    With 6 disks, INT(6/2)=INT(3)=3 disks can fail.
    With 9 disks, INT(9/2)=INT(4.5)=4 disks can fail.
    Am I right in this assumption?
    Thanks for your answer.

    Hi,
    >>Am I right in this assumption?
    Based on my understanding, it’s not this case.
    Mirror spaces are designed for increased performance and protect your files from drive failure by keeping more than one copy. Two-way mirror spaces make two copies of your
    files and can tolerate one drive failure, while three-way mirror spaces can tolerate two drive failures.
    Regarding this point, the following thread can be referred to for better understanding.
    Storage Spaces - Disk resiliency
    http://social.technet.microsoft.com/Forums/en-US/8f13ecf3-61c8-4505-90da-e8a01023c62d/storage-spaces-disk-resiliency?forum=winserverfiles
    In addition, regarding storage spaces, the following article can be referred to for more information.
    Storage Spaces Overview
    http://social.technet.microsoft.com/wiki/contents/articles/15198.storage-spaces-overview.aspx
    Best regards,
    Frank Shen

  • HARD DISK FAILURE IS IMMINENT

    Product Name: HP Pavilion p6390d
    OS: Windows 7 32 - bit
    Error Message: Hard Disk Failure is Imminent
    Things I did before having this error:
    I reformatted my computer to erase an error from my program (specifically: solidworks) since it has conflicts regarding on 2 versions i installed and 1 of which has lost some of its files and i dont know how it got lost and so i resorted to reformatting.
    I did the normal formatting process, like format my hard disk and i followed the process neatly. I got a success on my formatting, then i installed my microsoft office and other important stuff needed for my work. A couple of hours passed it seems to give me an error on HARD DISK FAILURE. Which i thought was just an error maybe on my formatting so what i did was press the ASK ME AGAIN LATER button since i had already backed up my files. So i reformatted it once again hoping the error would leave but i notice the moment i booted the windows 7 32 bit installer i seem to have this error on my boot screen (BELOW IMAGE). And then after a couple of minutes the lagging would come but i still managed to put this THREAD up here and hoping someone would give me a solution on what to do or suggestions on buying something. Please feel free to SUGGEST anything like buying a new hard disk or something. I'll be waiting on your reply 24/7. Thanks
    Additional Information:
    After my first format i installed AVG on my desktop just to stop small viruses that might affect my computer. I scanned it. and then afterwards i tried their new added feature which was PC TUNE UP, REGISTRY CLEANER and i used their program since they were the ones who detected that there are errors in my registry and other stuff (I still didn't have the HARD DISK ERROR at this time) and so i successfully downloaded the software and use it. and so i uninstalled the program since it was only a trial and can only be used 1 time. After sometime i seem to receive the message. And so my story goes on.(part where i reformatted my computer again) 
    This question was solved.
    View Solution.

    Derek, welcome to the forum.
    The hard drive has S.M.A.R.T. technology.  This tests your hard drive for possible failure.  In your case, it appears that your drive is ready to fail.  I suggest buying a new drive.
    Please click "Accept as Solution" if your problem is solved.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

  • Trying to salvage iCal data after hard disk failure!

    Hi all,
    I had a major hard disk failure recently, and also discopvered that my regular backups weren't including my iCal data! Eek! All that info I use for tax records gone!
    Anyway, the wonderful DiskWarrior managed to salvage a drive that was not visible to the naked eye and it recovered various pieces of information. Many of these pieces seem to be re-packaged, or should I say 'Un-packaged'. I have a heap of folders of files that are probably supposed to be within another file structure to be useful to iCal.
    I have a few folders with very long names (such as EBD6EF28-1595-49DD-8AEA-8525C9F2CB55.calendar) these have the corestorage.ics
    Info.plist
    Index files in them, so appear to be the /App support/iCal folders, with a file extension added?!
    Also I have folders called the same as the .calendar folders above (but no extension) and these are filled with events like this:
    FEAD3FA1-FC1B-4D5B-8C3B-2AB72EA87DF7%2F-.icalevent
    FDDD239C-6B90-11DA-B375-00039383DFDE%2F-.icalevent
    In textEdit I can see that these are all my events... so near and yet so far. If all else fails I will store these for records.
    I can get Calendars to appear but iCal 2.0.5 won't open or imprt the event files...
    Can anyone suggest how I might restore said structure so that iCal can import them?
    Kind regards
    Rosie

    Well, the structure of an ics file is easy to get (drag an event to desktop and open it with a text editor) and is well-described on the web, but I don't know about the structure of your icalevents, other than what we can see in the plist editor. After trimming out the time zone info, I get this for an ics file:
    BEGIN:VEVENT
    SEQUENCE:3
    TRANSP:OPAQUE
    UID:5E87B2F7-CF39-447E-B252-B3BF5F9C4A61
    DTSTART;TZID=Europe/Dublin:20081122T093000
    DTSTAMP:20081030T004304Z
    SUMMARY:IPF Thurles
    CREATED:20081110T210926Z
    DTEND;TZID=Europe/Dublin:20081122T140000
    END:VEVENT
    According to Fat Cat's web page PlistEdit Pro is scriptable, so it might be possible to do something with Applescript.
    AK

  • Create Data Guard Using ASM Managed RMAN backup

    we have an oracle database 11.1.0.7 working on Windows server 2003 (64bit). The storage in ASM managed (same 11.1.0.7). Our total database size is 4TB.
    I will have to create a physical standby database (Data Guard) of this instance. Now I am having issues on how to transport my RMAN backup pieces (which is also ASM managed).
    I cannot do an over the network RMAN backup because it will take months to complete.
    We have external 4 hard disks (2 TB each). But my RMAN backup pieces are ASM in format.
    Any ideas on how to easily create a data guard in this set up.

    TheAlchemist wrote:
    can you provide us any clear steps....Hope you asked for Restoring from backups.
    1) Prepare PFILE and put in nomount status.
    2) Restore standby controlfile
    RMAN> restore standby controlfile from '+DG/...'
    3) Mount controlfile
    SQL> alter database mount standby database;
    4) Restore database.
    If you are restoring into another diskgroups, then use as below.
    RUN {
    SET NEWNAME FOR DATAFILE 1 TO '+Dg1/....';
    SET NEWNAME FOR DATAFILE 2 TO "+Dg1/...';
    RESTORE DATABASE
    If same diskgroup you want to use then, just give RMAN> restore database;
    After successful restore
    5) Start MRP
    SQL> alter database recover managed standby database disconnect from session;

  • Toshiba Satellite L650-07U, Hard disk failure and replacement

    Hi all,
    I have Toshiba Satellite L650-07U Laptop, Model: PSK1EC-0700Q with 4GB RAM, 650GB HD, Windows 7 Home Premium installed. At the time of first use, i made Recovery DVDs which took 4 blank DVDs using Recovery media creator.
    From 2 weeks it is giving problem, at start its slowdown with every application,  then suddenly it started Hard disk failure error and ask to backup important files. From that instant i did all my backup save in another portable Hard drive.
    I had hiren boot CD, and ran RAM test and found it OK, and then run Hard Disk test and found few bad sectors at few certain point, As 650GB Hard disk was taking alot time of time for checking bad sectors, so i stopped that application.
    First I tried Recovery DVDs to restore Windows, but it failed as Laptop DVD-Writer was unable to boot from those created DVDs (DVDs are OK as had checked it on Desktop computer DVD-ROM), Laptop DVD-Writer is also working as I test few more bootable CDs and it booted perfectly, but it is not booting from Recovery DVDs.
    Than i tried to restore from Recovery partition using Factory restore settings, it erases all data and reinstall new and fresh copy of Windows 7 Home Premium. It works fine for few hours than again pops up Hard Disk Failure message again and again. I searched here in Toshiba Forum and have found similar problem with other members and finally decided that it need to replace Hard Disk with new one. As It is now two and a half month old, thats why i need to buy new Hard Disk for my Laptop.
    I checked all partitions of drive using Hiren Boot CD, and had found that there are four default partitions in Toshiba original laptop drive,
    One hidden partition of 1.5 GB
    One hidden partition of almost 21 GB
    One hidden partition of almost 12 GB
    One partition of 561 GB, which was the original partition where windows 7 was installed along with all of my Data.
    Now I want to replace faulty drive with a new one and have a lot of question in my mind which I need to share with you guys.
    At the time of first use I installed Windows 7 64 bit edition, and made Recovery DVDs, and at second time of restore to factory setting I had installed Windows 7 32 bit. I have confusion about recovery DVDs (which is not booting from default DVD-Writer of Laptop), either it has 64 Bit recovery data or 32 bit? Or have both 64 and 32 bit Data.
    Toshiba restore to factory setting without using any recovery DVD/USB is the best possible way to restore Windows 7, How can I make same recover hidden partitions from original/faulty hard drives to new hard drive partitions? Is this possible and how?
    On Default hard drive there was one partition of 561GB instead of two or more partitions. Is this possible to split partitions in new hard drives instead of one big partition?
    As Recovery DVDs are not able to boot from laptop default DVD-Writer, is it possible to open those DVDs on another System and copy tem in USB drive and use it for booting? If it is possible than please show me the steps for making bootable USB from these Recovery DVDs.
    Thanks,
    masterleous
    Solved!
    Go to Solution.

    Satellite L650-07U (PSK1EC-07U00Q)
    This site is for US computers. I doubt you'll get your questions for that Canadian model answered here.
    There appear to be two recovery partitions. Maybe one for 32- and one for 64-bit Windows. Or maybe one is for English and the other for French.
    Your User's Manual isn't much help either. You probably need to ask Toshiba tech support in Canada.
    About all I have to offer is this: Be wary of drives with advanced-format technology. See my message about that.
    -Jerry

  • Music Files Deleted After Hard Disk Failure and First Sync After Hard Disk

    Hi,
    I recently had a hard disk failure and lost all of the data on my hard drive. I replaced the hard drive and reinstalled all of the software including iTunes. I am running Windows XP Home. The first time I plugged my iPod Nano into my computer after the hard drive replacement it synced to iTunes and since iTunes had no music files it deleted all of the music files on my Nano. How do I get them back and why on earth would iTunes do such a stupid thing??? My Nano contained many songs that I bought from iTunes and I want to get them back. I have found some third party software that will undelete the deleted files but it costs $69. I don't feel that I should have to pay to correct a defective feature in iTunes. Does Apple have an undelete utility? Can I redownload the songs that I purchased from iTunes?

    *The first time I plugged my iPod Nano into my computer after the hard drive replacement it synced to iTunes*
    When you connected did you get a message that your iPod was linked to another library, and then press Erase and Sync? When an iPod is set to update automatically and you connect to a computer with an empty iTunes and accept the message above it will erase the originals completely (as you have discovered). Also as you've seen, none of the recovery programs are particularly cheap so you have to decide if in your particular circumstances it's worth it to get your songs back. It may be if you have a lot of purchased tracks which you will have to pay to download again. If they came primarily from your CDs then it's most likely not as you can re-rip them.
    *Can I redownload the songs that I purchased from iTunes?*
    If you didn't make a back-up of your purchases to restore from then I'm sorry to say that the policy on lost purchases is that you have to pay to download them again:
    "Once a Product is purchased and you receive the Product, it is your responsibility not to lose, destroy, or damage the Product, and Apple shall be without liability to you in the event of any loss, destruction, or damage." iTunes Store: Purchased content can be downloaded only once
    You could try contacting the iTunes Music Store Customer Service and you might be able to persuade them to sanction a second free download. There have been occasional reports in the iTunes forum of this happening, however just be aware that they are not under any obligation to do so. If you click on any of the links on this page you'll find a space at the bottom to email your query: iTMS Customer Service

  • Hard disk failure imminent

    I have a Pavilion 1400-Z desktop. It was purchased last November.  I have only had it for 2 months.  Now everytime it reboots I get an error message about an imminent hard disk failure.  It says in a message after I login that the hard disks reporting failure are volumes C:\,D:\
    These are both partitions set up in single 500gb drive that were set up as part of the factory install.
    Is there anything that can be done other than replacing this hard drive?
    Obviously it is still under warranty.  If replacement is the only solution, how do I go about getting the process started.  I've barely gotten to use my new computer and it is already failing. 
    Failing Drive SATAO
    Failing Attributer: #05
    I am very disappointed that I continue to have hardware problems with factory installed HP components. 

    Since your computer is still under warranty, your best bet is to contact HP Customer Support and start the troubleshooting / repair process.
    Please send KUDOs
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Hard disk failure HP G7000 laptop

    Hi,
    I'm getting hard disk failure on a HP G7000 laptop. The machine boots fine from DVD drive using a Linux boot disk.
    Vista installed on machine.
    No recovery disk was created when machine was first bought and any disks provided with the machine when bought can't be found.
    The Vista licence tag is on the base of the machine so I have a licence key for Vista.
    1. What type of hard drive do I buy as replacement? SATA 2.5 inch?
    2. Can I use any Microsoft Vista install disk and type in the licence key on the base of the machine?
    Thanks
    Clive

    Hi,
     The failure ID will either be a Smart or Disk Self Test failure - both would indicate that your Hard Drive is failing and will need to be replaced.
    If your notebook is still under warranty, contact HP and arrange to have the drive replaced. Or incase your unit OOW you can purchase a New Hard drive.
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Hard Disk Failure, No Backup,  OUCH!

    I have suffered a fatal hard disk failure on one of my drives and I had to buy a new disk. Due to the nature of the striping RAID-0 array I use the other disk is rendered useless and I lost everything. Must reformat and reload software which is a lot of work but is at least possible. That operation is ongoing as we speak. It's the lost data that really hurts. Lesson learned. Conduct regular backups. "OK ComputerGods, I hear you now...I repent."
    Here's my problem for this forum. I had roughly 2,500 songs on my iTunes which were ripped from my own CDs. The ripping operation took a lot of time and energy to do. Like I said I don't have a computer backup of those songs. I still have the CDs of course but I would like to avoid spending all that time and effort ripping again. I need to move my iTunes account to the new disk anyway and I'm not sure exactly how to procede and more importantly I have no idea how to retrieve the (ripped) songs from my iPod and get them back onto the new disk. I already know that I can simply reload the music I bought on iTunes. That's not the issue. It's the 2,500 or so songs I ripped that I don't want to lose.
    So my questions are:
    1) How to move iTunes account to (basically a new machine) without starting from scratch?
    2) How to salvage the ripped music I already have on my iPod and get it back onto my computer?

    *How to salvage the ripped music I already have on my iPod and get it back onto my computer?*
    iTunes has an option to copy your iTunes Store purchases directly from an iPod to the computer, you'll find details in this article: Copying iTunes Store purchases from your iPod or iPhone to a computer
    For everything else (music from CDs, other downloads etc) there are a number of third party utilities that you can use to retrieve the music files and playlists from your iPod. You'll find that they have varying degrees of functionality and some will transfer movies, videos, photos, podcasts and games as well. You can read reviews and comparisons of some of them here:
    iTunes & iPod software
    Wired News - Rescue Your Stranded Tunes
    Comparison of iPod managers
    A selection of iPod to iTunes utilities:
    TuneJack Windows Only (iPhone and iPod Touch compatible)
    SharePod Windows Only (iPhone and iPod Touch compatible)
    iPod2PC Windows Only
    iDump Windows Only
    YamiPod Mac and Windows
    iPod Music Liberator Mac & Windows
    Floola Mac & Windows
    iPodRip Mac & Windows (iPhone and iPod Touch compatible)
    iPod Music Liberator Mac & Windows (iPhone and iPod Touch compatible)
    Music Rescue Mac & Windows (iPhone and iPod Touch compatible)
    iGadget Mac & Windows (iPhone and iPod Touch compatible)
    iRepo Mac & Windows (iPhone and iPod Touch compatible)
    iPod Access Mac & Windows (iPhone and iPod Touch compatible)
    TouchCopy Mac & Windows (iPhone and iPod Touch compatible)
    There's also a manual method of copying songs from your iPod to a Mac or PC. The procedure is a bit involved and won't recover playlists but if you're interested it's available on page 2 at this link: Copying Content from your iPod to your Computer - The Definitive Guide

Maybe you are looking for

  • Dual Internal HDD in MacBook Pro? How? Which Models?

    Alright well it's official; my logic board failed on my 2011 MBP, and now I need to replace it. I have been trying to research the mythical dual internal hard drive setup in the MacBook Pros but haven't found any specifics on which models can and whi

  • Premiere corrupted the audio track of XDCAM EX

    I am very new to Premiere.  I received a file from a friend who wants me to convert the video to NTSC DV widescreen.  I imported the MP4 file and added it to the timeline.  I was able to convert fine with exception to an aspect ratio issue.  So, I de

  • Cannot Download Yosemite - error message

    I tether my iPhone to my iMac for internet access and downloads of software, etc.  While trying to download Yosemite several days ago, the download stopped "froze," with "calculating" appearing for how much time remained in the download.  It just sto

  • Converting MP4 to FLV

    Hi, I posted this in the Flash Encoder forum a few days ago, but haven't gotten any responses. So I'm hoping someone here might know. I'm trying to take a MP4 file, and convert it to a .flv to use on our Intranet. When I open Flash Encoder, I select

  • Users from same OD have different group memberships on each client

    Hello - I am getting the dreaded "This user can not login because an error occurred" when a network user tries to log in. Oddly - on some clients he can log in, but not others. I have checked the open directory settings in directory utility on each c