Friday, May 3, 2024
 Popular · Latest · Hot · Upcoming
0
rated 0 times [  0] [ 0]  / answers: 1 / hits: 37497  / 2 Years ago, wed, december 29, 2021, 9:12:26

i was finishing up a job with a compact flash when, trying to unmount it:



#> umount /dev/sda2 
umount: it seems /dev/sda2 is mounted multiple times


Looking at what mount says:



#> mount | column -t | grep sda2
/dev/sda2 on /mnt/flashrw type ext3 (rw,nosuid,nodev)
/dev/sda2 on /mnt/flashrw type ext3 (rw,nosuid,nodev,user=myuser)


it seems that I accidentally mounted the same device on the same location (though in two different ways).



I tried to unmount it many times also with:



#> umount /mnt/flashrw 
umount: it seems /mnt/flashrw is mounted multiple times


with no luck. Finally, I tried:



#> sudo umount -f /dev/sda2


but umount locked completely.



So the question is: and now?


More From » mount

 Answers
5

Most probably it was a kernel bug due to an unstable patch interaction. I was using a 3.4.11 vanilla kernel patched with the corresponding RT-PREEMPT patch by Ingo Molnar.



Due to a severe memory leak, I moved to 3.6.4 vanilla + RT-PREEMPT patch and now the system seems to be really stable. The problem has never presented again. Hope this may help someone in the future.


[#35167] Wednesday, December 29, 2021, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
donurp

Total Points: 328
Total Questions: 128
Total Answers: 123

Location: Faroe Islands
Member since Thu, Apr 8, 2021
3 Years ago
;