linux – 什么是匿名的inode?

前端之家收集整理的这篇文章主要介绍了linux – 什么是匿名的inode?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我做了一个谷歌搜索关于“匿名inode”,它似乎与epoll相关…但实际上是什么?

解决方法

至少在某些上下文中,匿名inode是没有附加目录条目的inode.创建这样一个inode的最简单方法就是这样:
int fd = open( "/tmp/file",O_CREAT | O_RDWR,0666 );
unlink( "/tmp/file" );
// Note that the descriptor fd now points to an inode that has no filesystem entry; you
// can still write to it,fstat() it,etc. but you can't find it in the filesystem.
原文链接:https://www.f2er.com/linux/400849.html

猜你在找的Linux相关文章