this post was submitted on 10 Jan 2024
24 points (96.2% liked)
Linux
48186 readers
1149 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
You could run an offline
fsck
to make sure it's not being caused by disk corruption or something. An offline malware scan at the same time wouldn't hurt, however unlikely. (That is, boot from external media so you know the drive's not in use.)The
file
command might be able to identify it if it's of a known format, but if, as you say, it's all zeros that won't be particularly fruitful (it'll just say "data" if a test on my own computer is anything to go by).Or you could
lsof | grep theweirdfilename
to see if any active processes are using it, not that this would show up if it was malware (which is unlikely, especially if you did that scan earlier).If, as you say, it's all zeros, you could just
bzip2
it (or similar) if you don't want to delete it for whatever reason. That way if something complains you could uncompress it again.That said, if it doesn't show up as useful and isn't fixed by any of the above it'd probably be OK to delete it.
You're right, file just shows data. lsof did not return anything either, I had already renamed the file to be able to reference it in the terminal anyway.