Linux чем занято устройство

How to get over «device or resource busy»?

I tried to rm -rf a folder, and got «device or resource busy». In Windows, I would have used LockHunter to resolve this. What’s the linux equivalent? (Please give as answer a simple «unlock this» method, and not complete articles like this one. Although they’re useful, I’m currently interested in just ASimpleMethodThatWorks™)

Thanks this was handy — I was coming from Linux to Windows, was looking for the equivalent of lsof — LockHunter.

What the hell? Unix does not prevent you from deleting open files like Windows does. This is why you can delete your whole system by running rm -rf / . it will happily delete every single file, including /bin/rm.

@psusi, that is incorrect. You either have a bad source of information or are just making stuff up. Linux, like Windows, has file and device locking. It’s kind of broken, though. 0pointer.de/blog/projects/locking.html

@foobarbecue, normally those are only advisory locks and the man page at least seems to indicate they are only for read/write, not unlink.

Solutions on this page don’t work for me, still not be able to delete the file, but in my case i’m bothered by the size the file, so i do this little trick: vim unwanted_file , then simply delete the content inside the file in edit mode, this way i release the disk, but the file is still there.

9 Answers 9

The tool you want is lsof , which stands for list open files.

It has a lot of options, so check the man page, but if you want to see all open files under a directory:

That will recurse through the filesystem under /path , so beware doing it on large directory trees.

Once you know which processes have files open, you can exit those apps, or kill them with the kill(1) command.

@marines: Check if another filesystem is mounted beneath /path . That is one cause of hidden «open files».

lsof command directly to the path does not work. So basically need to go in the path location and then run lsof busy_file then kill all the process

lsof seems to do nothing for me: lsof storage/logs/laravel.log returned nothing, and so did lsof +D storage/logs/ . umount responded with not mounted .

Just to elaborate on @camh answer: Use mount | grep . That shows any /dev/ might be mounted on the the . Use sudo umount -lf /dev/ and then try to remove . Works for me. Thanks @camh

sometimes it’s the result of mounting issues, so I’d unmount the filesystem or directory you’re trying to remove:

Late to the party but maybe useful for feature checks, mount the dir rather than mounting the file, because that was causing me the issue.

Читайте также:  Astra linux wifi выключен

I had this same issue, built a one-liner starting with @camh recommendation:

lsof +D ./ | awk '' | tail -n +2 | xargs -r kill -9 
  • awk grabs the PIDs.
  • tail gets rid of the pesky first entry: «PID».
  • xargs executes kill -9 on the PIDs. The -r / —no-run-if-empty , prevents kill command failure, in case lsof did not return any PID.

@ChoyltonB.Higginbottom as you asked for a safer way to prevent kill failure (if lsof returns nothing) — Use xargs with -r / —no-run-if-empty . For non-GNU xargs, see this alternative: stackoverflow.com/a/19038748

kill -9 is a favorite for use but does have serious implications. This signal is «non-catchagable, non-ignorable» to the process. Thus, the process may terminate without saving critical state data. Perhaps a simple kill first, and if that doesn’t work, then the -9 ? Finally, bear in mind that if the process is blocked on I/O, kill -9 isn’t going to work. That’s not an oversight in this suggestion, just something to keep in mind.

  1. Go into the directory and type ls -a
  2. You will find a .xyz file
  3. vi .xyz and look into what is the content of the file
  4. ps -ef | grep username
  5. You will see the .xyz content in the 8th column (last row)
  6. kill -9 job_ids — where job_ids is the value of the 2nd column of corresponding error caused content in the 8th column
  7. Now try to delete the folder or file.

I use fuser for this kind of thing. It will list which process is using a file or files within a mount.

fuser helps only in the specific case when you want to unmount a filesystem. Here the problem is to find what’s using a specific file.

Sorry, wrong objection: fuser doesn’t help here because the problem is to find all the open files in a directory tree. You can tell lsof to show all files and filter, or make it recurse; fuser has no such mode and needs to be invoked on every file.

@Giles: fuser works will lists. Try fuser /var/log/* , if any logs are open it will tell which ones and who has it open. If a simple wildcard, won’t work, find with or without xargs will do the job.

lsof was not in my path while fuser was, allowing me to find the offending process ID to kill, so +1+thanks.

I experience this frequently on servers that have NFS network file systems. I am assuming it has something to do with the filesystem, since the files are typically named like .nfs000000123089abcxyz .

My typical solution is to rename or move the parent directory of the file, then come back later in a day or two and the file will have been removed automatically, at which point I am free to delete the directory.

Читайте также:  Could find kernel image linux

This typically happens in directories where I am installing or compiling software libraries.

I also have the same problem with .nfsxxx files dropped seemingly in random places. However, I am not sure how this suggestion can make sense — obviously renaming the parent directory does not work because its contents are locked. Wouldn’t get the error in the first instance otherwise. I tried it and simply nothing happens, the renaming refuses to happen. Do you want to elaborate/have any other suggestion?

renaming the parent directory always worked for me. No clue why. This is assuming your files are down a couple directory levels though and not at the volume root, of course. Sorry I dont have a better answer than «it just works for me».

Riffing off of Prabhat’s question above, I had this issue in macos high sierra when I stranded an encfs process, rebooting solved it, but this

ps -ef | grep name-of-busy-dir 

Showed me the process and the PID (column two).

I had this problem when an automated test created a ramdisk. The commands suggested in the other answers, lsof and fuser , were of no help. After the tests I tried to unmount it and then delete the folder. I was really confused for ages because I couldn’t get rid of it — I kept getting «Device or resource busy»!

By accident I found out how to get rid of a ramdisk. I had to unmount it the same number of times that I had run the mount command, i.e. sudo umount path

Due to the fact that it was created using automated testing, it got mounted many times, hence why I couldn’t get rid of it by simply unmounting it once after the tests. So, after I manually unmounted it lots of times it finally became a regular folder again and I could delete it.

Источник

Чем занято место на диске Linux

Ситуация, когда на разделах Linux заканчивается место может быть очень часто встречаемой. На вебсерверах такая проблема возникает еще чаще, т.к. большое количество посетителей и ошибки в программах могут приводить к огромному росту лог-файлов и т.д. и появляется необходимость определить чем занято место на диске Linux, чтобы удалить ненужные данные и освободить место. Есть несколько вариантов как это сделать.

1-й способ. Утилита du — подсчет занимаемого места.

Воспользоваться встроенной утилитой du. Сделать это достаточно просто. Например, чтобы определить в текущей папке занимаемое место всеми подкаталогами и файлами, нужно использовать команду:

Вывод этой команды будет примерно такой:

514 folder1 893 folder2 44 file1.sh 53 file2.txt

Немного поясню использованные ключи:
s — означает, что нужно вывести суммарное занимаемое место, т.е. например, не показывать каждый файл из папки folder1 и занимаемое им место, а показать, сколько всего места занимают все файлы в папке folder1
m — означает вывод данных в Мб, можно использовать вместо него ключи b (в байтах) и k (в килобайтах)
* — означает подсчитать все объекты в текущем каталоге. Если не указать * , то будет подсчитано все занимаемое место текущего каталога. Так же, можно подсчитать сколько места занимает конкретная папка со всеми файлами и подкаталогами в ней, для чего нужно написать вместо * название нужного каталога.

Читайте также:  Linux где хранятся сертификаты криптопро

Когда папок и файлов много, можно отсортировать результаты, чтобы было проще определить, какая папка или файл заняли больше всего места:

du -sm * | sort -n

Эта простая команда поможет вам выяснить, чем занято место в конкретной папке или на всем разделе Linux. Команда универсальна, проста в использовании и есть в любых дистрибутивах Linux.

2-й способ. Утилита ncdu — анализ занятого места и его освобождение

Есть так же и другие способы определить чем занято место на диске, например, очень удобная в плане анализа занятого места — утилита ncdu. Установить ее можно, например, так:

  • Для Debian систем (rpm-пакеты) (в т.ч. Ubuntu) командой apt-get install ncdu
  • Для Red Hat систем (dpkg-пакеты) командой yum install ncdu

Дальше просто запустите ncdu и подождите, когда она подсчитает занимаемое место. По-умолчанию программа посчитает размеры папкой текущей папки, из которой программа была запущена. Если нужно посчитать какую-то другую папку, просто добавьте к команде путь к папке, например, так: ncdu /var/www. Если нужно посчитать занимаемое место на всем диске, можно использовать ncdu /.

Программа показывает занимаемое папками место, позволяет заходить в них и сразу видеть сколько подпапки занимают места. Так же в этой утилите можно выполнять различные действия над файлами и папками. Получить справку по клавишам управления можно нажав «?«. Ниже приведу список некоторых из клавиш управления:

  • d — удалить выбранный файл или папку с файлами;
  • n — отсортировать файлы и папки по имени;
  • s — отсортировать файлы и папки по объему занимаемого места;
  • t — показывать сначала папки, затем файлы;
  • g — режим отображения (в процентах, графически, комплексно);
  • a — режим отображения (размер файла, занятое место на жестком диске)
  • e — включить/отключить отображение скрытых файлов;
  • i — показать дополнительную информацию о папке или файле;
  • r — заново пересчитать занимаемое место;
  • q — выйти из программы;

Программа очень удобная, простая и выполняет задачу по анализу и освобождению свободного места полностью, рекомендую ее к использованию.

3-й способ. Графические утилиты.

Есть большое количество графических программ, которые позволяют делать примерно то же, что ncdu, только в графике. В Ubuntu, например, есть графическая программа, которая находится в Приложения > Системные утилиты > Анализатор использования диска. Кроме того, есть много и других программ. Приведу небольшой список, чтобы вы могли их попробовать и выбрать, какая больше нравится:

  • В системах с Gnome обычно есть утилита Baobab, которая графически покажет занимаемое папками место, так же выводит диаграмму;
  • Утилита KDirStat для KDE (WinDirStat для Windows) — в отличие от Baobab показывает вместо диаграммы прямоугольники, размер которых соответствует занимаемому папками пространства;
  • Gd Map — аналог KDirStat для Gnome;
  • Filelight и Philesight — аналоги Baobab (показывает папки в виде диаграммы).

Вот пожалуй, основной набор способов определения занятого места на дисках Linux. Можно конечно найти еще множество других способов, здесь я привел самые основные и распространенные.

Источник

Оцените статью
Adblock
detector