Can't unmount USB drive
If i try unmount usb drive i see this error.
Error unmounting /dev/sdb1: Command-line `umount "/media/michal/MUZA"' exited with non-zero exit status 32 umount: /media/michal/MUZA: not mounted
15.10 usb-drive unmount
add a comment |
If i try unmount usb drive i see this error.
Error unmounting /dev/sdb1: Command-line `umount "/media/michal/MUZA"' exited with non-zero exit status 32 umount: /media/michal/MUZA: not mounted
15.10 usb-drive unmount
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20
add a comment |
If i try unmount usb drive i see this error.
Error unmounting /dev/sdb1: Command-line `umount "/media/michal/MUZA"' exited with non-zero exit status 32 umount: /media/michal/MUZA: not mounted
15.10 usb-drive unmount
If i try unmount usb drive i see this error.
Error unmounting /dev/sdb1: Command-line `umount "/media/michal/MUZA"' exited with non-zero exit status 32 umount: /media/michal/MUZA: not mounted
15.10 usb-drive unmount
15.10 usb-drive unmount
asked May 4 '16 at 18:13
Swis
1727
1727
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20
add a comment |
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20
add a comment |
1 Answer
1
active
oldest
votes
The error points to it not being mounted .. maybe its not mounted at that point. Try running gparted and switch to the usb then look at Mount Point and check where and if its mounted
Or you can type in terminal:
mount | grep ^'/dev/sdb1'
it should return
/dev/sdb1 on /media/michal/MUZA type .....
if it is mounted .. or a different path if it is mounted somewhere else
Just verified .. had a USB with the label CD_ROM and it mounted as /media/username/CD_ROM .. I removed the label and now it mounts with UUID.
If you want it to be mounted at /media/michal/MUZA you will need to change/add the MUZA label to the drive.
I was able to label it in Ubuntu using gparted .. I just went to the USB drive then .. if its mounted I right clicked and unmounted it then I right clicked again and chose Label File System .. Put in the name (name cant have any spaces in it... if you want spaces you need to use an underscore or dash) After I had the name I clicked on the green check mark to apply the settings . Once I did that for some reason I couldn't mount it but then I put it in my Windows machine .. it seemed fine and when I plugged it back in to Ubuntu it mounted as my Label and worked
If you run into a situation where you did get it to label but now instead of the label MUZA it is mounting it as MUZA2 then remove the USB and check the /media/michal folder and see if there is a left over MUZA folder in there. If so you will have to run a terminal and type
sudo rm -r -f /media/michal/MUZA
That should remove the folder and the next time you plug in your USB it should mount as the label without the 2 at the end.
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
|
show 9 more comments
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f767647%2fcant-unmount-usb-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The error points to it not being mounted .. maybe its not mounted at that point. Try running gparted and switch to the usb then look at Mount Point and check where and if its mounted
Or you can type in terminal:
mount | grep ^'/dev/sdb1'
it should return
/dev/sdb1 on /media/michal/MUZA type .....
if it is mounted .. or a different path if it is mounted somewhere else
Just verified .. had a USB with the label CD_ROM and it mounted as /media/username/CD_ROM .. I removed the label and now it mounts with UUID.
If you want it to be mounted at /media/michal/MUZA you will need to change/add the MUZA label to the drive.
I was able to label it in Ubuntu using gparted .. I just went to the USB drive then .. if its mounted I right clicked and unmounted it then I right clicked again and chose Label File System .. Put in the name (name cant have any spaces in it... if you want spaces you need to use an underscore or dash) After I had the name I clicked on the green check mark to apply the settings . Once I did that for some reason I couldn't mount it but then I put it in my Windows machine .. it seemed fine and when I plugged it back in to Ubuntu it mounted as my Label and worked
If you run into a situation where you did get it to label but now instead of the label MUZA it is mounting it as MUZA2 then remove the USB and check the /media/michal folder and see if there is a left over MUZA folder in there. If so you will have to run a terminal and type
sudo rm -r -f /media/michal/MUZA
That should remove the folder and the next time you plug in your USB it should mount as the label without the 2 at the end.
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
|
show 9 more comments
The error points to it not being mounted .. maybe its not mounted at that point. Try running gparted and switch to the usb then look at Mount Point and check where and if its mounted
Or you can type in terminal:
mount | grep ^'/dev/sdb1'
it should return
/dev/sdb1 on /media/michal/MUZA type .....
if it is mounted .. or a different path if it is mounted somewhere else
Just verified .. had a USB with the label CD_ROM and it mounted as /media/username/CD_ROM .. I removed the label and now it mounts with UUID.
If you want it to be mounted at /media/michal/MUZA you will need to change/add the MUZA label to the drive.
I was able to label it in Ubuntu using gparted .. I just went to the USB drive then .. if its mounted I right clicked and unmounted it then I right clicked again and chose Label File System .. Put in the name (name cant have any spaces in it... if you want spaces you need to use an underscore or dash) After I had the name I clicked on the green check mark to apply the settings . Once I did that for some reason I couldn't mount it but then I put it in my Windows machine .. it seemed fine and when I plugged it back in to Ubuntu it mounted as my Label and worked
If you run into a situation where you did get it to label but now instead of the label MUZA it is mounting it as MUZA2 then remove the USB and check the /media/michal folder and see if there is a left over MUZA folder in there. If so you will have to run a terminal and type
sudo rm -r -f /media/michal/MUZA
That should remove the folder and the next time you plug in your USB it should mount as the label without the 2 at the end.
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
|
show 9 more comments
The error points to it not being mounted .. maybe its not mounted at that point. Try running gparted and switch to the usb then look at Mount Point and check where and if its mounted
Or you can type in terminal:
mount | grep ^'/dev/sdb1'
it should return
/dev/sdb1 on /media/michal/MUZA type .....
if it is mounted .. or a different path if it is mounted somewhere else
Just verified .. had a USB with the label CD_ROM and it mounted as /media/username/CD_ROM .. I removed the label and now it mounts with UUID.
If you want it to be mounted at /media/michal/MUZA you will need to change/add the MUZA label to the drive.
I was able to label it in Ubuntu using gparted .. I just went to the USB drive then .. if its mounted I right clicked and unmounted it then I right clicked again and chose Label File System .. Put in the name (name cant have any spaces in it... if you want spaces you need to use an underscore or dash) After I had the name I clicked on the green check mark to apply the settings . Once I did that for some reason I couldn't mount it but then I put it in my Windows machine .. it seemed fine and when I plugged it back in to Ubuntu it mounted as my Label and worked
If you run into a situation where you did get it to label but now instead of the label MUZA it is mounting it as MUZA2 then remove the USB and check the /media/michal folder and see if there is a left over MUZA folder in there. If so you will have to run a terminal and type
sudo rm -r -f /media/michal/MUZA
That should remove the folder and the next time you plug in your USB it should mount as the label without the 2 at the end.
The error points to it not being mounted .. maybe its not mounted at that point. Try running gparted and switch to the usb then look at Mount Point and check where and if its mounted
Or you can type in terminal:
mount | grep ^'/dev/sdb1'
it should return
/dev/sdb1 on /media/michal/MUZA type .....
if it is mounted .. or a different path if it is mounted somewhere else
Just verified .. had a USB with the label CD_ROM and it mounted as /media/username/CD_ROM .. I removed the label and now it mounts with UUID.
If you want it to be mounted at /media/michal/MUZA you will need to change/add the MUZA label to the drive.
I was able to label it in Ubuntu using gparted .. I just went to the USB drive then .. if its mounted I right clicked and unmounted it then I right clicked again and chose Label File System .. Put in the name (name cant have any spaces in it... if you want spaces you need to use an underscore or dash) After I had the name I clicked on the green check mark to apply the settings . Once I did that for some reason I couldn't mount it but then I put it in my Windows machine .. it seemed fine and when I plugged it back in to Ubuntu it mounted as my Label and worked
If you run into a situation where you did get it to label but now instead of the label MUZA it is mounting it as MUZA2 then remove the USB and check the /media/michal folder and see if there is a left over MUZA folder in there. If so you will have to run a terminal and type
sudo rm -r -f /media/michal/MUZA
That should remove the folder and the next time you plug in your USB it should mount as the label without the 2 at the end.
edited May 4 '16 at 20:17
answered May 4 '16 at 18:26
John Orion
2,2871823
2,2871823
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
|
show 9 more comments
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Return this. /dev/sdb1 on /media/michal/36EEC75002B2B4B8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) This usb drive before name "MUZA" now it is format to ntfs (before fat)
– Swis
May 4 '16 at 18:44
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
Ok so its not mounted as MUZA its using the UUID. Do you have it set to mount or is it automatic when you plug it in?
– John Orion
May 4 '16 at 18:46
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
This usb drive before name "MUZA" now it is format to ntfs (before fat) . Automatic mount
– Swis
May 4 '16 at 18:47
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
it probably doesn't have a label anymore .. if you format it again and label it MUZA i believe it will mount as MUZA instead of the UUID
– John Orion
May 4 '16 at 18:51
unfortunately it does not work
– Swis
May 4 '16 at 19:04
unfortunately it does not work
– Swis
May 4 '16 at 19:04
|
show 9 more comments
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f767647%2fcant-unmount-usb-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Is the USB drive mounted at the time you try to umount it?
– Hennes
May 4 '16 at 18:20