My USB-Stick is marked busy even though not mounted (?)

Also Subject lines are too short.
Hello there, my name is Ayutac, I use Arch for some while now and I probably screwed up.
tl;dr: My USB-Stick is marked busy even though not mounted (?)
Previous History: I was trying to get the newest Arch iso on a stick of my friend, so I got the iso here and moved the stick's content to my extern hard drive. I used the opportunity to experiment how good "mv -t target_dir *" would work and interrupted it because I was stupid. Two folders somehow weren't movable through mv anymore, so I mv'ed everything else – now explicit – and moved the content of the two folders via pcmanfm. After that there were about 16kB on the stick left.
Next I copied the iso using
dd bs=4M if=/path/to/archlinux.iso of=/dev/sdc && sync
as suggested by the wiki. I looked at the stick; to my surprise the two folders I left there where still there, though filled with gibberish data. I thought I might give it a try, shut down, booted from stick. Black screen with a blinking text cursor for minutes. I concluded it didn't work and tried some other way. Following the wiki I was given the task to format the usb stick anew.
Thinking I knew what I was doing I used fdisk several times (including rebooting), getting myself two partitions with FAT32 (or so I think). But that somehow screwed it up.
The problem: After partioning and rebooting it seems I can't mount the partitions to copy the content of the iso. lsblk says
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 931.5G 0 disk
├─sda1 8:1 0 21.7G 0 part
├─sda2 8:2 0 350M 0 part
├─sda3 8:3 0 95.4G 0 part
├─sda4 8:4 0 1K 0 part
├─sda5 8:5 0 95.4G 0 part /
├─sda6 8:6 0 7.6G 0 part [SWAP]
└─sda7 8:7 0 711.1G 0 part /home
sdb 8:16 0 465.8G 0 disk
└─sdb1 8:17 0 465.8G 0 part /run/media/nait/nanika
sdc 8:32 1 3.6G 0 disk
├─sdc1 8:33 1 650M 0 part
└─sdc2 8:34 1 3G 0 part
sr0 11:0 1 1024M 0 rom
(sdc is the stick) but I get
> sudo mount /dev/sdc1 /mnt/usb
mount: /dev/sdc1 is already mounted or /mnt/usb busy
> sudo umount /mnt/usb
umount: /mnt/usb: not mounted
Furthermore "lsof | grep sdc" returns nothing, neither does "cat /proc/mounts | grep sdc" or "cat /etc/mtab | grep sdc". The only clue is
> systemctl -a | grep sdc
dev-sdc.device loaded active plugged 1000 ARCH_201409
dev-sdc1.device loaded active plugged 1000 ARCH_201409
dev-sdc2.device loaded active plugged 1000 ARCH_201409
sys-devices-pci0000:00-0000:00:14.0-usb3-3\x2d3-3\x2d3:1.0-host9-target9:0:0-9:0:0:0-block-sdc-sdc1.device loaded active plugged 1000 ARCH_201409
sys-devices-pci0000:00-0000:00:14.0-usb3-3\x2d3-3\x2d3:1.0-host9-target9:0:0-9:0:0:0-block-sdc-sdc2.device loaded active plugged 1000 ARCH_201409
sys-devices-pci0000:00-0000:00:14.0-usb3-3\x2d3-3\x2d3:1.0-host9-target9:0:0-9:0:0:0-block-sdc.device loaded active plugged 1000 ARCH_201409
I tried to shut the devices down, but that didn't seem to work.
Furthermore the pcmanfm shows two mount points of the iso/stick but returns error message when clicking on them:
Error mounting /dev/sdc1 at /run/media/nait/ARCH_201409: Command-line `mount -t "iso9660" -o "uhelper=udisks2,nodev,nosuid,uid=1000,gid=100,iocharset=utf8,mode=0400,dmode=0500" "/dev/sdc1" "/run/media/nait/ARCH_201409"' exited with non-zero exit status 32: mount: /dev/sdc1 is write-protected, mounting read-only
mount: /dev/sdc1 is already mounted or /run/media/nait/ARCH_201409 busy
Goal:
1. Make the stick usable again, with 2 partitions.
2. Copy the iso on the first partition.
3. Have a functioning Arch booting stick.

Welcome to Arch Linux.
A few questions and comments.  First, are the files you copied from the disk safe?  Since the plan was to wipe the disk anyway, I would suggest next time copying rather than moving files.  I always get itchy when I move files.  I have made some stupid mistakes where I copied hundreds of files to one output file, each one overwriting the previous.  Of course, as it was a move, the source file was gone as well.  Fortunately, I maintain backups.   I would also suggest you look into the rsync facility when doing bulk copies.
That said, another excellent way to destroy data is the dd command (There are those who claim dd means just that)  Are you certain that the usb disk had been been placed at the /dev/sda node?  In the thread title, you made the assertion that the drive was not mounted.  dd will run just fine even if the disk is mounted (I do not recommend this).  What were you using to look at those folders that had become full of gibberish?  Command line tools?  A graphical file manager? (Nautilus, Thunar, Dolphin, SpaceFM)  It is possible that the tool you were using was unaware that the contents had changed and was using cached information.
As to your goals.  First, copying the iso to /dev/sdc tells the system to use the entire device for the iso, not the first partition.  Our iso is not designed to be placed in a partition, I don't think you will meet with success trying to block copy the iso to a partition.  If you want to try it, the destination would be /dev/sda1 (for partition 1)  Make sure the partition is large enough.  I would suggest that you use the entire disk by dd'ing the iso to the /dev/sdc (assuming it is c) node, but make certain that all of the partitions are dismounted.  I know you think you did that, but I have my doubts.   Please use command line tools.  I don't trust GUIs that try to help too much.
If you want multiple partitions, use fdisk and re-partition the device.  Then create a file system in each of those partitions. 
It has been a while since I have tried to master a USB that will boot.   I may have a faulty memory, or I may be using really old, outdated, information, but...  I think that a USB has to boot as if it were a CD drive .  I am not certain that a hard drive type structure with multiple partitions and a MBR will work on a USB drive (edit)and have it be bootable.  In other words, goal 1 and goal 2 might not be achievable if goal 3 means that the disk will boot.   I could  be wrong.
Last edited by ewaller (2014-09-27 16:18:25)

Similar Messages

  • TS3899 Email on iPhone is marked read even though I have not read it.

    I have a 4s with iOS 8.1.1. Since the update my email will be marked read, even though I have not read it. At times, I can see the blue dot to the left of the emails go away as I open my folder. Any ideas?

    Yes, I went to settings and turned wifi off.  Thought at first I wasnt letting it set for a sec or two before shutting the iPad off.  so now I wait like a minute or two  before shutting the iPad down.  didnt  seem to help.  Tried  actually logging out of  facebook when I was  done with it,  worked for about  4 days, and now it has started  coming on and coming online again,,  I  went through my notifications and  shut things off,   Well  see if it works.  thank you.

  • Zen Neeon Recharge on LCD screen even though not connected er

    I purchased a Creative Zen Neeon 6 gig MP3 player last December 2005. I'm not having trouble where I can connect the MP3 Player to the computer, it will recognise the device and all the songs stored...what happen is when i safely remove it from the USB cable the Neeon will turn on, show the creative logo and then show the USB charging action on there even though it's not connected....Has anyone else experienced this problem? I've tried re-setting it but again the USB recharge action on the LCD appears again...Anyone fixed this? Any help appreciated, thought i'd try here first before contacting tech support again...

    I tried clean up already, as stated above. Since then I have also tried reformatting the player again, adding new music, and retrying the clean up. The player seems to recognize that there is music on there when it builds the library, because the more music I have uploaded the longer it takes, but when it fully boots up it still shows NO MUSIC at all, no tracks, no artists, nothing.

  • I accidentally deleted my music library from my old Mac and now I have a new Mac. Can i restore all my music somehow? Even though not all 10,000 songs were purchased from iTunes Store?

    Can i restore all my music somehow? Even though not all 10,000 songs were purchased from iTunes Store?
    Im so devastated and desperate to get my music back.
    I deleted my User Account from the old Laptop

    Unless you subscribe to iTunes Match , Apple does not keep a backup of your iTunes library.  Even then it is not the library as it exists on your computer, but some version of the media, and only media files, not playlists.  Even then not all media are definitely available since anything removed from the iTunes Store since you purchased it is not available for re-download.
    FAQ: Why iTunes Match Can Not Be Used as a Backup - https://discussions.apple.com/docs/DOC-4112
    Using Match as a backup for iTunes - https://discussions.apple.com/message/17039436#17039436
    In your case it sounds like you will have to obtain non iTunes purchases from their original source or a backup you may have made at some time in the past.

  • X1 USB mouse resumes from standby even though disabled in Device Manager

    I don't want mouse movement to resume the X1 from standby (sleep). So I have gone into Win 8.1 Device Manager under power mgt tab and unchecked the box that enables this. However, the X1 still resumes from standby if the mouse is moved.
    Is there something else -- like in the BIOS -- that I need to do?

    I have also found that keyboard does not seem to be able to wake this computer in any case, even though the box is checked in Device Mgr for keyboard to do so. However, if I uncheck the box for keyboard, then mouse does not wake computer either. It is as though the checkbox in Device manager for the mouse is not relevant. Only the checkbox for keyboard matters as regards the mouse, and the keyboard can't wake the computer regardless.

  • New USB stick - "The disk you inserted was not readable by this computer'

    I recently bought a 32GB USB stick to transfer data from my current Powerbook G4 with Mac OS X 10.4.11 to a new laptop.
    However, when I insert the disk I am told "The disk you inserted was not readable by this computer" with the options to "Initialise", "Ignore" or "Eject".
    In all honesty I just want to avoid having to send the USB back, getting a refund and finding one that is compatible with my computer.
    Consequently I was wondering if there's a way I can alter the USB disk to become readable by my computer?
    Also the USB is described as an "iBoutique 32GB USB 2.0 Hi-Speed Elite Flash Drive".
    Would be really grateful if you could help as my my current laptop is dying due to it's age and I would like to move the data over to the new laptop as soon as possible.
    Thanks,
    Becca

    It would lose all data re-initialising it.
    A few options...
    You could format that HDD as Fat32/MS-DOS, but you'd be limited to 4 GB Filesizes.
    NTFS-3G Stable Read/Write Driver...
    http://www.ntfs-3g.org/
    MacFUSE: Full Read-Write NTFS for Mac OS X, Among Others...
    http://www.osnews.com/story/16930
    MacDrive for the PCs... allows them to Read/Write HFS+...
    http://www.mediafour.com/products/macdrive/

  • Adobe Update Manager Crashes even though not installed???

    Using Mac OS (Tiger), each time the Apple is re-started, adobe manager update flashes on the screen and crashes the starting of the Mac. This happens even though I have deleted all the "Update Manager" programs that i can find. The "problem report" window says the path of the crash is: Path:    /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Updater.acroplugin/Adobe Update Manager.app/Contents/MacOSClassic/Adobe Update Manager
    Parent:  WindowServer [69]
    But, I follow that path and it does not exist.
    I have tried calling Adobe and have never found a less helpful company in any area of life. If I could delete all Adobe products and find another pdf reader I would gladly do that. Any help, please?

    I'd recommend re-installing Acrobat. If that doesn't help, try deleting your system cache using a utility like Applejack or Onyx.

  • Calendar appears busy even though its not

    Heyo.
    So I tried out the 60 day free trial of MobileMe. Didn't like it and canceled after about 4 days. Now I have the "busy dots" on every single day on the calendar, whether or not I have an appointment on that day.
    Before I used MobileMe I was using outlook to sync data. I'm back to using outlook now.
    Any ideas?

    OK I have more to add.
    I don't think it has anything to do with MobileMe. Other people who have had similar problems attest its due to events that are in the past, or events that end before the start time.
    I think I've isolated the problem to be with my contacts' birthdays. In outlook, when you add a birthday, it creates a recurring appointment starting in the year born with no end date. But when I view in a table view, it lists the "end date" as the same year as the start date.
    When I don't have my contacts' birthdays in my Outlook, the iPhone calendar appears fine. Once I add the birthdays, those dots appear on every day whether or not there is an appointment on that date.

  • HT201210 My ipod has come up with the usb cord to itunes but even though i have gone through the recovery process it is still not working

    i have tried doing this for a number of days and it still isnt restoring!!

    Hi there,
    I would recommend taking a look at some of the troubleshooting steps found in the article below.
    iOS: Unable to update or restore
    http://support.apple.com/kb/ht1808
    -Griff W.

  • Unable to use interective photo galleries (i.e. New York Times' before/after Japan tsunami damages, and others, also in NYT website) Had to use Google Chrome, even though not my default browser.

    On 03/13/2011, I could not use an interactive photo gallery in the New York Times website. I had a slide on each picture which showed the before and after the tsunami damage, in Japan.
    I had to use Google Chrome, though Firefox is my default browser.
    I had the same problem with the photo gallery of dresses during and after the Oscar event.

    That site relies upon JavaScript to use the before and after feature. Make sure JavaScript is enabled, to do that open the Options window, go to the Content panel and make sure "Enable JavaScript" is selected.
    If you have an add-on such as NoScript that blocks JavaScript, you need to set it to allow scripts to run on that site.

  • 3 problems: 1. script running in background; hyperlinks stays on even though not turned on; and every time I click on something I get a yield manager window?

    1. Regularly get an unresponsive script message, over the past six months. This delays Firefox from responding to instructions enormously. I have emptied my Inbox (usually happens with Gmail.
    2. Past two weeks I have hyperlinks activated, despite my ticking off underscore in the Colors section of Preferences, and restarting.
    3. Today everytime I click on a download or web search address, Firefox opens a full screen window called yield manager with advertising poof.
    Help please, because of these three problems I am extremely frustrated with Firefox. (Oh and I am on Apple Mac).

    I don't know how many times I have reset Firefox, so sorry Philipp, your suggested solution does not work for me.
    Thanks though.

  • IPhone's iCal has events back to 2008, even though not in iCal on computer?

    I recently upgraded my iPhone to firmware v3.0, and iTunes to 8.2.
    Upon syncing, I noticed that my iPhone has iCal events going back months (and some even to 2008), that are not in the iCal on my computer. My computer doesn't have ANY events prior to today (July 18), yet my iPhone seems to remember some prior events I had on it dating back to September 2008, and many in between. Why this discrepancy and how can I fix it? (and yes, I've checked the "don't sync events more than 1 day old", and opened up the iCal preferences/advanced tab and checked the "Delete events 1 day after they have passed" box, to no avail).
    Thanks,
    jman995x

    No, not even that...just random stuff....Dental Appt on September 28, 2009....Register for school on January 17, 2009, etc., etc.
    Mind you, there were many more things on (and in between) those aforementioned dates, but for some reason a few of these random calendar events just won't leave my iPhone. Granted, I could manually delete said events from my iPhone, but that is really tedious and there's like 60 of them.
    Any advice as to why random dates are plaguing my iPhone's iCal would be greatly appreciated.
    Jman995

  • I tunes is looking for my i pod even though not connected.  It then freezes trying to play anything.  What can I do to correct?

    I tunes searches for my i pod upon opening and will freeze when trying to play anything in the library until it is connected.  What can I do to fix this?  I

    Try:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server
    Next, try doing a manual install/update using the instructions here:
    iDevice Troubleshooting 101 :: iPhone, iPad, iPod touch

  • Authorization checked for infoObjects even though not relevant to report

    Hello guys,
    I am facing a problem in BI 7.0 authorization checks.
    For a given report the BI team has placed a restriction in the query only for infoObject 0Comp_code (company code) and 0SOLD_TO (sold to party). Accordingly i have created authorization in RSECADMIN and assigned to role--> user.
    But when the user runs the report, he gets as authorization error and during analysis in RSECADMIN i see that "list of Authorization relevant charecteristics(infoObjects) for info provider xxxx" contain other infoObjects as well.
    Is it a case where infoObjects can be made authorization relevant for the whole  info provider eg-ZSD_M42" (where this is a multi provider)apart from being checked for specific reports eg- ZSD_M42_Q0001?
    How do i get around this problem?
    Regards,
    Prashant

    Hi Prashanth,
    What Zaheer said was exactly correct.Make sure all the Auth relevant Chaaracteristics of an Infoprovider  are properly authorized through your Analysis Authorization.Suppose if you don't need security on other Characteristics of an InfoProvider give * in your AA which will byepass check on that particular Auth relevant Characteristics..
    More over,See to that all the key figures are properly authorized as all the keyfigures are by default auth relevant in BI.
    Cheers,,
    Ramkumar C

  • I want to install ML on my MBPs, which support it.  My MB 4,1 does not.  Any idea if ML will run on the MB 4,1 even though not technically supported?

    I'd love to hear from anyone who has tried it.  I assume the lack of support has to do with hardware that isn't quite snappy enough, performance-wise, under ML.
    Alternatively, do I have the license to install Lion on MB 4,1 once I pay for ML on MBPs?  With ML, I'm allowed to install it on up to 5 Macs that I own; if it doesn't run on one (e.g., to MB 4,1), it seems I should be able to get the "next best thing."

    No, it won't run on a machine Apple says is not supported...a part of that non-compatibility has to do with the graphic module on those machines, cannot handle the demands of ML.  If you try to download to a non-support machine MAS won't let you.
    Once you buy ML you have the license to download to any machine you own or control...each much have your AppleID for authentication.
    You do not have a license to install Lion after buying ML...that is a separate license that must be purchased from 1-800-MY-APPLE where they will give you a download code to use at the MAS.

Maybe you are looking for

  • Weblogic 6.0

    Hi,           //I forgot to mention that the server I am using is weblogic6.0. It           worked ok when we use weblogic5.1           I am using a servlet to open attachment in JavaMail. Part of the servlet           I deal with attachment part is

  • Text issues...

    HI all, sorry if this has been asked here before: I while back I upgraded my Safari to a newer version. I am now running on 2.0.2 and somewhere along the way I noticed that certain foreign scripts were not showing up correctly in my browser. The main

  • Connect my MacBook to my TV?

    Hello guys and gals! I was trying to find an AV cable which fit the MacBook laptop, but I can't seem to find it... Can somebody please link to the correct cable I need? Thanks Best regards Jesper

  • Is it possible to stop migration assistant midway? would it harm either of the machines?

    I am migrating from macbook air to macbook pro, and migration assistant has been showing 9 hours! unable to wait for so long, and I do not see any option to stop it. Is there any way I can stop it? Would it cause any damage to either of the macs? Ple

  • Secondary Camera's Problem

    Hey. I Have My Own Nokia C7. And I Have a problem with my secondary camera. When I click to use it, I receive a message " ERROR UNEXPECTED, PLEASE RESTART YOUR PHONE" !! I Restart my phone a lot of time, but nothing works, I still have the same probl