About 64 results
Open links in new tab
  1. stat Command in Linux Explained [With Examples]

    Sep 15, 2023 · Here learn about stat command in Linux. It displays file information, such as file size in bytes, user ID, group ID, access rights, access time, and file birth time.

  2. cp: cannot stat 'filename': No such file or directory

    Nov 18, 2020 · The output of these commands will tell us more about your folders, and hopefully how to get to the "My files/Linux files/VueScan" in the terminal. Once you have updated the …

  3. Is there a way to change file creation timestamp on Linux?

    Apr 15, 2025 · 1 In general, in Linux, using the stat filename command, you can view the following times associated with a file: Access (atime) is the last read access to the file. Modify (mtime) is …

  4. When is Birth Date for a file actually used? - Ask Ubuntu

    May 24, 2017 · IIRC, Linux yet does not provide any interface for getting the birth time, there is a proposal for xstat() and fxstat(), yet to be implemented. As @muru noted, the newer approach …

  5. How can I get octal file permissions from command line?

    Jun 17, 2012 · File permissions in Linux can be displayed in octal format using Linux stat command. Just press Ctrl + Alt + T on your keyboard to open Terminal. When it opens, …

  6. How to Get Last Modified Date of File in Linux - LinuxOPsys

    Jun 25, 2022 · 1. Using stat command The ls -l command is just okay in giving you basic information about a file such as file ownership and permissions, file size, and creation date. …

  7. Display files permissions in number format i.e "0755"?

    You can display the octal permissions for a file using the stat command: stat -c %a [filename] Or by using find: find [path] -printf '%m %p\n' Note that find is recursive, and will print all files in all …

  8. what does a STAT of I mean for ps -aux? "I" does not appear on …

    Jun 2, 2020 · It does appear in the man page: PROCESS STATE CODES Here are the different values that the s, stat and state output specifiers (header "STAT" or "S") will display to …

  9. How do I find the creation time of a file? - Ask Ubuntu

    May 21, 2014 · 21 The inability of stat to show the creation time is due to limitation of the stat(2) system call, whose return struct doesn't include a field for the creation time. Starting with Linux …

  10. files - mv: cannot stat with * - Ask Ubuntu

    If you're using bash and the source directory is empty, you can modify the shell's default glob expansion behavior with: shopt -s nullglob to enable the nullglob and cause any succeeding …