私は次のコマンドを知っています。
find /path/to/mountpoint -inum <inode number>
しかし、これは非常に遅い検索なので、これを行うより速い方法があるべきだと思います。より速い方法を知っている人はいますか?
答え1
debugfs
ext4ファイルシステムでは、次の例を使用できます。
$ sudo debugfs -R 'ncheck 393094' /dev/sda2 2>/dev/null
Inode Pathname
393094 /home/enzotib/examples.desktop
答えは即時ではありませんが、それより速いようですfind
。
出力を簡単に解析してdebugfs
ファイル名を取得できます。
$ sudo debugfs -R 'ncheck 393094' /dev/sda2 | cut -f2 | tail -n2 > filenames
答え2
BTFS
man btrfs-inspect-internal
説明する:
inode-resolve [-v] <ino> <path>
(needs root privileges)
resolve paths to all files with given inode number ino in a given
subvolume at path, ie. all hardlinks
Options
-v
verbose mode, print count of returned paths and ioctl()
return value
例:
sudo btrfs inspect-internal inode-resolve 15380 /home
答え3
基本的な問題は、この方向に動作するほとんどのファイルシステムにインデックスがないことです。この種のタスクを頻繁に実行する必要がある場合、最善の方法は、スケジュールされたタスクを設定してファイルシステムから必要な情報を取得し、必要な情報でデータベースを作成し(sqlite3など)、インデックスを作成することです。ファイルのインデックスノード番号をすばやく見つけるために使用されます。
例:
#!/bin/bash
# Generate an index file
#
SCAN_DIRECTORY=/
DB_DIRECTORY=~/my-sqlite-databases
if [ ! -d ${DB_DIRECTORY} ] ; then
mkdir ${DB_DIRECTORY}
fi
# Remove any old database - or use one created with a filename based on the date
rm ${DB_DIRECTORY}/files-index.db
(
# Output a command to create a table file_info in the database to hold the information we are interested in
echo 'create table file_info ( inode INTEGER, filepath, filename, numlinks INTEGER, size INTEGER);'
# Use find to scan the directory and locate all the objects - saving the inode, file path, file name, number of links and file size
# This could be reduced to just the inode, file path and file name ... if you are looking for files with multiple links the numlinks is useful (select * from file_info where numlinks > 1)
# Find output formats
#
# %i = inode
# %h = path to file (directory path)
# %f = filename (no directory path)
# %n = number of hard links
# %s = size
# Use find to generate the SQL commands to add the data to the database table.
find $SCAN_DIRECTORY -printf "insert into file_info (inode, filepath, filename, numlinks, size) values ( %i, '%h', '%f', %n, %s);\n"
# Finally create an index on the inode number so we can locate values quickly
echo 'create index inode_index on file_info(inode);'
# Pipe all the above commands into sqlite3 and have sqlite3 create and populate a database
) | sqlite3 ${DB_DIRECTORY}/files-index.db
# Once you have this in place, you can search the index for an inode number as follows
echo 'select * from file_info where inode = 1384238234;' | sqlite3 ${DB_DIRECTORY}/files-index.db
答え4
ほとんどのUnicesで利用可能なfsdbコマンドを見ることができ、Linuxでも利用できると確信しています。これはファイルのコア inode 構造にアクセスできる強力なコマンドなので注意してください。構文も非常に簡潔です。
fsdbでは実際にinodeのファイル名を取得できませんが、するinodeを指定するときに直接inodeにアクセスできるようにすることは、デフォルトでファイル自体(または少なくともデータブロックポインタ)に「移植」されるので、その点でfindよりも高速です;-)。
あなたの質問は、ファイルで何をしたいかを指定しません。 NFSファイルハンドルをデコードできますか?
SC。