由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Linux版 - 用一个linux系统读一个linux硬盘,被读的硬盘会留痕迹吗
相关主题
windows系统读取linux文件系统的硬盘fstab挂载网络硬盘的时候如何隐藏密码
为啥用mmap访问文件的效率高呢?家里linux 机器和 windows 7 机器怎么实现文件共享?
fstab里面users和uid,gid不能一起用吗?可读出硬盘文件表吗?
Linux里如何查找当前release name? (转载)可以在外置USB硬盘上安装Linux并且可以从外置USB硬盘启动Linux吗?
Linux的文件ACL信息存在什么地方的?linux系统transfer
偶也请教一个linux下vm的问题 Intel CPU缓存中毒威胁Linux [zz]
Linux Wine下能运行matlab妈 ?可以在外接硬盘上装linux系统吗
virtualbox: win7 on linux or linux on win7?Linux下有什么工具可以用来测试硬盘的健康程度?
相关话题的讨论汇总
话题: atime话题: linux话题: 硬盘话题: disk话题: access
进入Linux版参与讨论
1 (共1页)
r*****s
发帖数: 262
1
请教一个保密问题。
我有一个linux的PC。 如果有人从我
的光驱用一个光盘linux启动了我的PC。
并且mount了我的linux硬盘,然后读取了硬盘上的数据
在我PC上的linux硬盘里会留下读取的痕迹吗?
如果有,如何找到这个读取痕迹?
谢谢
S*A
发帖数: 7142
2
It depend on how it is mounted.
If it is mount as read only. Then there are no write to the disk at all.
If it is mount as read/write. Then most likely there are some
write into the disk.
If the disk is ext3/ext4 did not disable the "atime" option.
The access time stamp will be modify on reading the file.
You can use find to find it.
The first thing you should do is "dd" the whole disk image
to a back up disk to save a snapshot.
Bao zi please.
A**u
发帖数: 2458
3
高手啊 太崇拜了

【在 S*A 的大作中提到】
: It depend on how it is mounted.
: If it is mount as read only. Then there are no write to the disk at all.
: If it is mount as read/write. Then most likely there are some
: write into the disk.
: If the disk is ext3/ext4 did not disable the "atime" option.
: The access time stamp will be modify on reading the file.
: You can use find to find it.
: The first thing you should do is "dd" the whole disk image
: to a back up disk to save a snapshot.
: Bao zi please.

r*****s
发帖数: 262
4
大哥谢谢
现在只有7。7快钱,发布了豹子
还得请教 如何找到 atime. 这个atime是在你读取文件上, 还是硬盘里的某个地方
或者某个文件总管这个atime

【在 S*A 的大作中提到】
: It depend on how it is mounted.
: If it is mount as read only. Then there are no write to the disk at all.
: If it is mount as read/write. Then most likely there are some
: write into the disk.
: If the disk is ext3/ext4 did not disable the "atime" option.
: The access time stamp will be modify on reading the file.
: You can use find to find it.
: The first thing you should do is "dd" the whole disk image
: to a back up disk to save a snapshot.
: Bao zi please.

D*V
发帖数: 3096
5
/etc/mtab
/etc/fstab

【在 r*****s 的大作中提到】
: 大哥谢谢
: 现在只有7。7快钱,发布了豹子
: 还得请教 如何找到 atime. 这个atime是在你读取文件上, 还是硬盘里的某个地方
: 或者某个文件总管这个atime

S*A
发帖数: 7142
6
atime is one field of the file inode. It is per file.
There are three times field of typical UNIX inode,
ctime: create time
mtime: modify time
atime: access time
You can use "stat" to access the atime.
e.g.
$ stat /tmp/abc
File: `/tmp/abc'
Size: 2444 Blocks: 8 IO Block: 4096 regular file
Device: 803h/2051d Inode: 5684 Links: 1
Access: (0600/-rw-------) Uid: ( 500/ uname) Gid: ( 500/ uname)
Context: unconfined_u:object_r:user_tmp_t:s0
Access: 2011-09-24 10:30:14.095091232 -0700
Modify: 2011-09-16 21:01:14.001845523 -0700
Change: 2011-09-16 21:01:14.001845523 -0700
Birth: -
$
That show the ctime and mtime are the same.
But atime is different.

【在 r*****s 的大作中提到】
: 大哥谢谢
: 现在只有7。7快钱,发布了豹子
: 还得请教 如何找到 atime. 这个atime是在你读取文件上, 还是硬盘里的某个地方
: 或者某个文件总管这个atime

S*A
发帖数: 7142
7
高手个头啊,小混混,混口饭吃。

【在 A**u 的大作中提到】
: 高手啊 太崇拜了
1 (共1页)
进入Linux版参与讨论
相关主题
Linux下有什么工具可以用来测试硬盘的健康程度?Linux的文件ACL信息存在什么地方的?
Splash top is good偶也请教一个linux下vm的问题
双系统硬盘分区方案?Linux Wine下能运行matlab妈 ?
laptop Linux 外挂USB 硬盘virtualbox: win7 on linux or linux on win7?
windows系统读取linux文件系统的硬盘fstab挂载网络硬盘的时候如何隐藏密码
为啥用mmap访问文件的效率高呢?家里linux 机器和 windows 7 机器怎么实现文件共享?
fstab里面users和uid,gid不能一起用吗?可读出硬盘文件表吗?
Linux里如何查找当前release name? (转载)可以在外置USB硬盘上安装Linux并且可以从外置USB硬盘启动Linux吗?
相关话题的讨论汇总
话题: atime话题: linux话题: 硬盘话题: disk话题: access