https://www.maketecheasier.com/find-out-when-file-was-accessed-linux
Linux
has a robust and mature file system that allows users to exploit a
variety of built-in tools for a range of purposes. Most commonly, users
will access files so that they can be copied, altered, opened and
deleted. Sometimes this is intentional, on other occasions, especially
in the case of servers, it can be malicious.
It is time to channel your inner Sherlock Holmes. We are going file hunting!
The
Here is the stat of my “/etc” folder. Notice the simplicity of the command.
You can see the date it was last accessed, the modify time and the last change.
The command needed is
There are four principal variables that you can use with
This will list all files, including those which are hidden:
This enables the long list format:
This shows the time in a specified format:
This is the show/user date in %m/%d/%y format:
When put together, the command gives us this. It is the basic list of my home directory on an Ubuntu test installation.
You
can see the permissions, the username, date and the location. Mostly
this will suffice in finding the file, but what if you have a directory
with hundreds or thousands of files? Trawling through them manually is
far too time consuming. Therefore, we can narrow down a little by adding
the following flag:
This will list things alphabetically, or if you prefer, list the files by size like this:
Here are some of the options you can set for the
This looks like a very difficult command, but it really isn’t. More can be found on the Ubuntu man page. The result is below.
Hopefully this article will give you the skills you need to work within the Terminal to find out whats been happening with a given system. It will allow you to find out the, “who, where and what” which will let you secure your server or simply find the document you need. What do you use? Is there some killer tool or piece of software that you use? Is there a tool that can run in both the Terminal and has a slick GUI for beginners? Let us know in the comments section and help your fellow enthusiasts.
It is time to channel your inner Sherlock Holmes. We are going file hunting!
Why is this important?
Knowing when a file was used, accessed or changed can help with unauthorized access or simply as a way to keep track of what has happened. This investigation could be on a professional level, with dedicated forensic analysis, or on a home-user level, trying to see which of their photos was copied and potentially where it ended up. This article is also meant to give System Administrators a vital guide to enhance their toolset for their daily activities and tasks.Give me the files, stat!
Open your Terminal and gain root if you need it. Once done, you will be ready to search for that elusive file or check when things have been accessed.The
stat
command can show file size, type, UID/GUID and the access/modify time.Here is the stat of my “/etc” folder. Notice the simplicity of the command.
You can see the date it was last accessed, the modify time and the last change.
But I forgot the name!
This is a common occurrence, especially when digging through an old external hard drive for that document or photo you need. Luckily the Terminal comes to the rescue.The command needed is
ls
.There are four principal variables that you can use with
ls
:ls -a
ls -l
ls --time-style=FORMAT
ls +%D
When put together, the command gives us this. It is the basic list of my home directory on an Ubuntu test installation.
ls -alx --time-style=+%D
ls -als --time-style=+%D
Bonus Search
Using the following commands, users can see when a file was accessed.ls -l --time=atime
time
parameter:- atime – updated when file is read
- mtime — updated when the file changes
- ctime — updated when the file or owner or permissions changes
Find and Seek
Another great tool that Linux has is thefind
command (more about it here). Let’s say I need the most recently modified files, sorted by reverse order, I would type the following into the Terminal:find /etc -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort -r
Hopefully this article will give you the skills you need to work within the Terminal to find out whats been happening with a given system. It will allow you to find out the, “who, where and what” which will let you secure your server or simply find the document you need. What do you use? Is there some killer tool or piece of software that you use? Is there a tool that can run in both the Terminal and has a slick GUI for beginners? Let us know in the comments section and help your fellow enthusiasts.
No comments:
Post a Comment