NAS disk name changed - HELP!

I use a NAS for backups and external storage.  At some time in the past week, my backup operations stopped working, and I think I have tracked down the source of the problem.  Somehow, an "extension" got added to the disk name (I did not do this and I am not sure how it happened).  The disk name (Cosmos) has not changed, but when right click and choose "get info", in the "Name and Extension" section, the disk shows up as Cosmos-1.  Unfortunately, the name is greyed out and I can't change it.  Does anybody know how I can remove the -1 extension and change the name back to Cosmos so that my backups see the disk again?  HELP!

Open up Applications > Utilities > Terminal
Type in
cd /Volumes/
("Change Directory to /Volumes/")
and then
ls -a
(list all the files in this directory)
and you will probably see Cosmos and Cosmos-1, among others. Eject the Cosmos volume if you haven't already, then go back to Terminal. Type in
rm Cosmos
("remove the file called Cosmos")
Now mount the drive again and it should be able to take the name "Cosmos" without adding the '-1' suffix.
These phantom volumes can sometimes appear when a command tries to copy files to a volume without actually mounting it first. It is likely that wahtever you are using to make backups isn't properly waiting for the drive to mount before it tries to do a backup.

Similar Messages

  • Harddrive (start up disk) name changed

    Why would the harddrive (start up disk) name change (on desktop) to an unrecognizable number/letter combination? Is it a virus?

    Extremely unlikely that you have any sort of malware causing this. (Malware affecting Macs does exist, but no known viruses do, & the rare, existing malware tries to be stealthy to avoid detection.)
    More likely: you accidentally changed the startup disk name somehow. Try changing it back & see what happens.
    Also, see the second item in the "More Like this" box to the right of this page for more info.
    Message was edited by: R C-R

  • System Disk Name Change - Restore Old Files?

    The name of a friend's main system disk was accidentally changed some time ago. The backup sets from both the old name and new name are still in TM under the same computer name. When we look at the backup sets they appears as (the leading dots are just to show the folder hierarchy since consecutive spaces are deleted):
    Backup.backupsdb
    ..computer_name
    ....2009-01-01-timecode
    ......Macintosh\ HD
    ....2009-06-01-timecode
    ......New\ Disk\ Name
    When we go in to TM to restore, we can see the backup sets that match the current disk name but not the ones with the old disk name.
    How can we go about restoring files that existed when the disk had the old name? Selecting "Browse Other TM Disks" does not show the backup sets with the old disk name.
    Any help is greatly appreciated.
    Ed

    OK, here is the whole story as I understand it (this is a friend's iMac).
    The drive was originally named "Machintosh HD". There are backup sets going back to August, 2008 where the only folder under the date folder in Backups.backupdb is named "Machintosh HD".
    In late August, 2008, the internal drive was renamed " `1| ". The only folder in the date folders in Backups.backupdb is named " `1| ".
    Two weeks ago we installed a new, larger internal HD. At that time, we discovered the problem with the drive name and renamed it "Machintosh HD". We are now able to restore from any backup where the folder in the date folders in Backups.backupdb is named "Machintosh HD".
    For the time period from late August, 2008 - August, 2009 TM greys out the dates for the backup sets. It will not allow us to restore from them.
    Prior to renaming the " `1| " drive, we could restore from any backup set between late August, 2008 - August 2009. We were not able to restore from the backup sets prior to August, 2008 where the name was "Machintosh HD".
    It appears that TM wants to see a directory that matches the internal drive name in order to allow a restore from it.
    I'm sorry for the confusion on the names. I have been using Unix systems for years and automatically include a \ when I type a file or directory name that includes a space.
    Ed

  • Why did my startup disk name change after Lion installaion?

    I recently upgraded my 2008 MacBook Pro to Lion. I noticed later that my hard drive (startup) name was changed to "240ik=-`o9". Has anyone else seen this before? Any idea what caused it? Do I need to be concerned? Thanks.

    goldbear,
    I can't figure out how to rename the drive. You have any idea how? Thanks.
    Just click on the HD icon and depres the "return" key. Then type Macintosh HD.
    One way to prevent that from happening again, is to go to the Finder>Preferences...>General menu and deselect the "Hard disks" option.

  • Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verif

    Help needed. I have a 3TB external hard drive partitioned into 1TB's. I used one partition as backup for the main computer hard drive. But now it is greyed out as shown in the disk utility and its name changed, i dont know how that happened, i tried verifying and repairing it but had no luck. I also tried mounting and unmounting it but still no solution. Anyone to help please?

    Looks bad. I would strongly advise backing up the stuff on the other two partitions as soon as possible in case the rest of the drive goes wrong.
    Beyond that, Disk Utility has limited abilities to repair disks, DiskWarrior uses a different approach and might, emphasis might be more successful. It has certainly done the job for me in the past when Disk Utility could not.
    See http://www.alsoft.com/diskwarrior/

  • Change ASM DISK NAME in 11.2 version

    Hi,
    Is it possible to change ASM DISK NAME for example in diskgroup DATA01. I added disk without NAME, and system-choosen NAME is allocated. Can I set it to e.g., ORCL:DATA09 . Currently its DATA09_009.
    Please suggest your views.
    Thanks a lot.
    Best Regards                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    You can change the label of disk using oracleasm renamedisk; oracle discourages it
    I will changing the label of disk from CLONE1 to CLONE1a and CLONE2 to CLONE2a of diskgroup CLONE
    SQL> col disk_number for 99
    SQL> col name for a15
    SQL> col label for a15
    SQL> col path for a30
    SQL> select disk_number,name,label,path from v$asm_disk;
    0 DATA CLONE1 ORCL:CLONE1
    1 LOGS CLONE2 ORCL:CLONE2
    ASMCMD> lsdsk -G CLONE
    Path
    ORCL:CLONE1
    ORCL:CLONE2
    ASMCMD> umount CLONE
    [root@otest]# /etc/init.d/oracleasm force-renamedisk CLONE1 CLONE1a
    Renaming disk "CLONE1" to "CLONE1a": [  OK  ]
    [root@otest]# /etc/init.d/oracleasm force-renamedisk CLONE2 CLONE2a
    Renaming disk "CLONE2" to "CLONE2a": [  OK  ]
    ASMCMD> mount CLONE
    ASMCMD> lsdsk -G CLONE
    Path
    ORCL:CLONE1A
    ORCL:CLONE2A
    select disk_number,name,label,path from v$asm_disk;SQL> SQL> SQL> SQL>
    0 DATA CLONE1A ORCL:CLONE1A
    1 LOGS CLONE2A ORCL:CLONE2A
    Edited by: vlethakula on Jan 18, 2013 11:48 AM
    Edited by: vlethakula on Jan 18, 2013 11:56 AM

  • Botched short name change attempt has left me with no permissions! Help!

    Early on, my MacBook Pro's hard drive ground to a halt and I had to fork out to get it restored. When it came back, my administrative account was no longer named "Will", but "macbookpro".
    I changed the username simply, but was always bothered by the home folder being called "macbookpro". After buying a WD MyBook and backing up my "macbookpro" user folder with the WD Anywhere application, I (stupidly) decided to follow an outdated Apple guide ( http://support.apple.com/kb/HT1428 ) on how to change the short name via Terminal and root - something I now realise is no longer necessary in Leopard.
    When adding the new account to replace "macbookpro" with, I couldn't, as the existing account had the username I wanted already, just not the short name. I changed what I thought was the username for what I thought was a temporary amount of time from "Will" to "William", so they had different names and I could proceed.
    I followed the rest of the guide up to the point where I log on as new user. Forgetting I wasn't finished, I fired up Adium - which acted like it had never seen me before (something I don't really mind), and to this moment it has refused to sign in to MSN, but does AIM perfectly.
    After being puzzled by Adium I continued the process, finding not "the keychain, which should still have the short name of the original user", but "login.keychain" - I left it.
    Giving up and continuing to use my computer, I attempted to update Camino by downloading the latest version whilst simultaneously resetting all of my Application preferences to how they were before.
    On dragging Camino to Applications, I was told I did not have sufficient privileges to do anything but view it. Everything except what is in my new home folder is read-only.
    Sharing and Permissions shows me that macbookpro is the only account with jurisdiction over Applications - Read & Write, whereas groups "admin" and "everyone" are Read only.
    For most other files, "system" and "admin" have Read & Write permissions, except in the System folder where only system has, whilst "wheel" and "everyone" can only read.
    In my panic, I renamed "William" to "macbookpro" again, meaning that when I log onto my (now completely reset and devoid of preferences) original macbookpro account, I have my permissions mostly back.
    You'd think I would then simply revert to using macbookpro and changing all my preferences, using the Leopard short name change - but "macbookpro" doesn't seem to be able to open ANY applications. At all. For no good reason.
    Short of going through every single file on the hard drive manually and changing the permissions to allow "Will" to read and write, I can't solve this!
    This puts a massive hindrance on my use of this computer, and I don't want to edit permissions on each file as I need it and then discover the only solution is to completely restart!
    Please, somebody help!

    If anybody ever has a similar problem, here's how I solved it as best as I could:
    http://www.macchampion.com/arbysoft/Welcome.html BatChmod is a tool for batch editing file permissions.
    It fixed my Applications and Library, and I can now read and write to both folders.
    I dragged solely the contents of Application Support from my backup over the existing Application Support folder within my user's library, and that restored a few, but not all, of my Application Preferences.

  • Extreme Name Change Resulting in Two Airport Disks Now Showing

    I changed the name of my Airport Extreme and didn't disconnect the Airport Disk before that. I now have two Extremes showing in my Shared back to my mac sidebar. One with the new Extreme disk name and the other with the old name.
    I have tried rebooting the Extreme, restarting Back to My Mac, and rebooting the computer but nothing seems to clear the old name out.
    Any ideas appreciated.

    When you set up a new Apple router, or did a factory reset, it will broadcast a new WiFi as "Apple Network aabbccdd"... the last bunch of characters will be part of the mac address.
    By looking at the mac address on the routers you can match which ones are doing this.
    Can you try a FACTORY RESET, and then re-configure it? Maybe it's just got corrupted and that's all it needs.

  • How to search files in the finder in an external NAS disk

    If I try to search a file on the NAS disk system does not react although I changed the finder options accordingly

    You can check some tools mentioned in this URL : http://www.hongkiat.com/blog/backup-and-sync-tools-for-hard-drives/
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • E-mail Attachment Name Changes

    I have a following problem with mail attachments: When I drag the attachment from my mail window onto my desktop, the attachment name changes to "unknown". So for example, "cat.jpg" would become "unknown.jpg". To make this a bit more complicated, the problem is a bit random and from this it follows that sometimes the file keeps the original and correct file name and sometimes it changes it. Also, this problem occurs only when I drag the attachment (which normally is image) from email window, but if I pull the attachment from above the message window, where it has a little arrow and it shows all the attachment icons, this problem does not happen. I am running Tiger and Mail 2.1. It would we really great if you could take a sec to answer this if you have any idea at all what this problem might to be. Thanks!
    Best, Rauno

    Hi Rauno, and a warm welcome to the forums!
    Hmmm, since it's random, might try this...
    Quit Mail, then In your home folder, try moving this +folder & file+ to the Desktop then reboot...
    First, Safe Boot from the HD, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, then move these files to the Desktop.
    /Users/YourUserName/Library/Caches/Mail
    Move to the Desktop...
    /Users/YourUserName/Library/Mail/Envelope Index
    You can always move them back if it doesn't help.

  • Since upgrade, Time Machine starts and stalls.  Waited 24 hours. Formatted disk-no change.

    Since upgrade to Mavericks on Mini, Time Machine starts and stalls.  Says "292 Mb of 147.68 Gb", wheel spins. Waited 24 hours, no change. Formatted disk-no change.  Tried every solution found in threads; no fix.  Doing manual backups. Help!

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the word "Starting" (without the quotes) in the String Matching text field. You should now see log messages with the words "Starting * backup," where * represents any of the words "automatic," "manual," or "standard." Note the timestamp of the last such message that corresponds to an abnormal backup. Now
    CLEAR THE WORD "Starting" FROM THE TEXT FIELD
    so that all messages are showning, and scroll back in the log to the time you noted. Select the messages timestamped from then until the end of the backup, or the end of the log if that's not clear. Copy them to the Clipboard by pressing the key combination command-C. Paste (command-V) into a reply to this message.
    If all you see are messages that contain the word "Starting," you didn't clear the text field.
    If there are runs of repeated messages, post only one example of each. Don't post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Some personal information, such as the names of your files, may be included — anonymize before posting.

  • "The identity of the backup disk has changed..."

    About 3 months ago I purchased my new MacBook Pro plus two WD 2TB network drives for Time Machine backups. One drive is kept at home and the other is at my office. (I believe in having backups at two physical locations.)
    The drives at both places are identical, with identical names and in both cases are connected to a BT router/DSL modem.
    All has been working nearly perfectly. (I say almost, because occasionally at home I'll get an error saying a backup couldn't be made because the disk wasn't available. Usually this clears up after a few subsequent attempts, or always after a reboot. Fortunately this doesn't happen often.)
    However, I'm now getting an error message every time I move from one location to the other:
    "The identity of the backup disk has changed since the previous backup.
    The disk may have been replaced or erased, or someone may be trying to trick your computer into backing up to the wrong disk."
    Fortunately, the dialog box is very visible and gives the option of going ahead and using the disk...which I do. As long as I'm in the same location, everything then continues to work without issue.
    This is most odd, as neither disk name has been changed and I was working for 3 months without anything like this happening.
    (I might add, with my previous Powerbook, I had an identical Firewire drive at both locations and having the dual backups worked flawlessly without issue for the entire time I used it...nearly two years.)
    Anyone have any idea why this weird message is now surfacing after 3 months of working fine?

    Pondini wrote:
    There was a thread here a few months ago with a very nasty problem, where a user had 3 or 4 identical WD externals, with different names, and was trying to use one with Time Machine. But Time Machine would try to back up to the first one connected, regardless of name!
    I didn't think it was possible, but sure enough, they all had the identical UUID from WD (they'd come formatted for a Mac, and the user had never reformatted or erased them, so OSX never put new UUIDs on them).
    I wonder if the UUID would be copied over if a disk is cloned? When using my first pair of external LaCie Firewire drives, I first set just one up as a TM backup. After the setup and first backup was finished, I used Carbon Copy Cloner to create an exact duplicate to the second drive. I did that deliberately in hopes TM wouldn't be able to tell the difference. It apparently worked as I could connect either disk and Time Machine would readily connect without complaint. Either the cloning procedure worked, or perhaps the drives already had identical UUID's as happened with the WD drives you mentioned. Any thoughts on this?
    Pondini wrote:
    If you haven't, try turning Time Machine OFF before you get that message. Then select the NAS via Time Machine Preferences > Select Disk. I think that will reset the element in the plist mentioned in that thread, and the problem will go away.
    I went ahead and tried this, but the condition still persists. When I have a chance, I'll go back and look at that other thread and see if I can glean anything useful from it. In the meantime, I may just have to live with the current situation. Thanks.

  • The Hard Disk Name is shaded red

    Why is the Hard Disk Name is shadded red???? Its kind of slowing my mac down, can anyone tell me whats wrong?

    If you're talking about the name of the hard drive on your finder (or desktop) being shaded in red, this can be changed by right clicking on the hard drive icon and selecting the colour label to "X" (none). There is no reason why this would be slowing your computer down whatsoever unless i have misunderstood your problem.
    Hope this has helped
    MacBook   Mac OS X (10.4.9)   2G

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • I have received an error message from an attached USB hard drive (not Time Capsule) stating "Disk Name" cannot be repaired. Back up your data and reformat. I opened the Disk Utility in an attempt to repair the disk but am advised that the disk "could not

    I have received an error message relating to an attached USB hard drive (not a back up and not Time Capsule) advising that "disk name" cannot be repaired. Back up your data and reformat. When I attempted to verify the disk with Disk Utility, I was advised that the disk could not be unmounted. What can I do to repair the disk?
    Write Status is Read/Write
    SMART Status is Not Supported
    Partition Map Scheme is Master Boot Record
    HELP!
    timothy7712

    You need something stronger, such as DiskWarrior, TechTools Pro, or Data Rescue.

Maybe you are looking for

  • My experience with memory upgrades (NB305 & NB505)

    I just wanted to share my experience upgrading my NB305 and NB505 Toshiba netbooks from 1GB to 2GB RAM.  I ordered the memory from Crucial Technology on 1/1/12 and received it today (1/6/12).  The memory module for the NB505 (DDR3) cost $15, and for

  • Creating tabs in XML Forms builder

    hi all, is there anyway we can create a form in xml forms builder with different tabs? would that require manual coding? thanks!

  • Re: ArrayIndexOutOfBoundsException when updating JTable from SwingWorker

    This is a common threading bug and there is a simple fix. You may only modify a visible component from the Event Dispatcher Thread. You are modifying the table model (which is part of a visible component) from an application thread (the swing worker)

  • Cover flow no longer works

    i've been using itunes for at least 5 years; never had a problem or issue come up.. but that all changed yesterday night, Cover Flow stopped working completely! I've uninstalled and reinstalled itunes, checked display settings and even reinstalled di

  • HELP!! iTunes shuts down when updating (outlook) contacts

    HELP!! When synching iPod, all music and playlists synch fine -- BUT DURING CONTACT UPDATE, iTunes gives error "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience." Have tried to click on "contacts" tab to disable