When was my Linux system installed?

linux

How can I tell when my Linux system (Ubuntu, Debian, etc..) was installed?

How can I tell what date my Linux system was installed?

Try the following command

sudo ls -alct /|tail -1|awk '{print $6, $7, $8}'

Or alternatively use this and look for the Birth Line.

stat /

Next Post