What time did Ubuntu installed on machine?

How can I learn what time OS installed time and release information.

ll -d /var/log/installer | awk '{print $6}'

cat /etc/lsb-release

Command not found. What can I do?

# ll
ll: command not found
# cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=9.10
DISTRIB_CODENAME=karmic
DISTRIB_DESCRIPTION="Ubuntu 9.10"
# 

Sorry. It's my alias. Change it to ls -l.

1 Like

Try this command:

ls -lct /etc | tail -1 | awk '{print $6, $7}'

1 Like