/dev/hdb1 already mounted or /bla busy - Printable Version +- Linux-Noob Forums (https://www.linux-noob.com/forums) +-- Forum: Linux Noob (https://www.linux-noob.com/forums/forum-3.html) +--- Forum: Tips and Tricks (https://www.linux-noob.com/forums/forum-59.html) +---- Forum: Filesystem Management (https://www.linux-noob.com/forums/forum-26.html) +---- Thread: /dev/hdb1 already mounted or /bla busy (/thread-1996.html) |
/dev/hdb1 already mounted or /bla busy - Navrax - 2006-05-01 Allow me to start off by saying that I have tried everything in my knowledge. Basically, I'm trying to mount my /dev/hdb1 secondary hard drive (that I thought was mounted from the beginning, which subsequently lead up to the filling up of my hda) but I have been unsuccessful in every attempt. Code: [u]mount /dev/hdb1 /blah[/u] I've booted the Gentoo Universal LiveCD, and succesfully mounted /dev/hdb1 to /anywhere and it showed up in # Mount. I think that this is a kernel problem, it's a working 10.0gb hd... Code: #mount Code: # fdisk -l /dev/hdb Code: # fsck /dev/hdb I'll also add my /etc/fstab... Code: # NOTE: If your BOOT partition is ReiserFS, add the notail option to opts. PLEASE, SOMEONE, IF ANYBODY CAN HELP ME WITH MOUNTING MY HDB I WOULD GREAT APPRECIATE IT, I THOUGHT MY "/SRV" WAS MOUNTED TO /DEV/HDB1 AND IVE BEEN FILLING UP MY HDA!! IF ANYBODY WANTS MORE INFO, PLEASE REPLY, THIS HD WORKS, IT Must be something wrong with the kernel, or that dm-linear error, Please...Someone!!! :( /dev/hdb1 already mounted or /bla busy - hijinks - 2006-05-02 run this command fuser -m /dev/hdb1 That will list the PIDs of what is running on that partition /dev/hdb1 already mounted or /bla busy - znx - 2006-05-02 Quick q.. is your shell sitting in /blah .. ? If so you cannot mount it into the dir whilst you are there :) /dev/hdb1 already mounted or /bla busy - Navrax - 2006-05-03 Quote:Quick q.. is your shell sitting in /blah .. ?Znx, You honestly think that could be the problem. No, no, and no. Is there ANyThING else? It's not even "mount /dev/hdb1 /blah" I try different names and create different new-non-busy directories.... Quote:run this commandYes, I have run "fuser -m /dev/hdb1" and I get nothing outputted back [img]<___base_url___>/uploads/emoticons/default_dry.png[/img] Anybody, i'm losing hope. ?? /dev/hdb1 already mounted or /bla busy - anyweb - 2006-05-03 try Code: try using /dev/evms/hdb1 instead of /dev/hdb1 :) more info (and faq) here > [/url][url=http://evms.sourceforge.net/faq.html]http://evms.sourceforge.net/faq.html cheers anyweb /dev/hdb1 already mounted or /bla busy - zepcom - 2006-05-18 If you're using CentOS or Fedora ... I've researched and found the solution to this problem another way. MY PROBLEM: I too had the second and third hard drive in my system completely unmountable. I could use fdisk and make partitions, and I also could mke2fs the filesystems on these partitions as well... so I know they were not damaged or "in use" as the OS claimed. Yet after creating the filesystems, I always got "device /dev/hdc busy" error messages. I tried the fuser command as mentioned above, but it always came up with no results, meaning that on one was sitting on the filesystems preventing them from being mounted. Well, it's documented here (centos mailing list describing symptoms and solution) and here (bug tracker at CentOS.org). THE SOLUTION: Seems as if a software raid utility got upgraded or installed (yum update caused it for me) called dmraid that took exclusive control over these drives and partitions, not allowing them to be mounted from the command line. The fix: Both posts give options, but what worked for me was to uninstall the DMRAID package: Code: rpm --erase dmraid Code: yum remove dmraid (this is the one I used). After a reboot (dmraid holds control of these devices until the next reboot, even if uninstalled that session) then I was able to mount and unmount each of my partitions. Hope this helps!! Regards, zepcom < a newbie to this board, but an expert in the linux field imho > B) /dev/hdb1 already mounted or /bla busy - jasonwang826 - 2011-09-10 try this mount -t ext4 /dev/mapper/vg_www-lv_root /mp/backup/sdc2 |