Re: [Fstransform-devel] preservation of hard links
Status: Beta
Brought to you by:
paperinik
|
From: Massimiliano G. <mas...@gm...> - 2014-10-29 23:14:36
|
On 10/29/14 23:58, Olaf Leidinger wrote: > Heya! > >> On the good side, it's quite well tested, it works with file systems >> full up to 95% (90% on XFS), and can even resume a job after a crash >> or power failure. > > 90% when converting to or when converting from XFS? 90% when converting _to_ XFS. It's an estimation, not an absolute number... on a very large disk it may be slightly higher. > Actually, I can't really guess how many hard links are there on this > partition. The server has 8 GiB of RAM + 8 GiB of swap... I'll try and > report back how it worked. > > Best, > Olaf you can count the number of hard links with this command: find /path/to/filesystem -xdev -type f \! -links 1 | wc -l it's not exact, as each file with N links will be counted N times, but you will get a rough idea. Regards, Max |