How do I display date and time in Linux using command line and GUI options?
To display date and time under Linux operating system using command prompt use the date command. It can also display the current time / datein the given FORMAT, or set the system date and time as root user.
Syntax
Open a terminal and type the following command:
date
Sample outputs:
Sat Nov 7 22:44:59 IST 2009
You can format the date as follows in dd-mm-yy format:
date +"%d-%m-%y"
Sample outputs:
07-11-09
To print the date of the day before yesterday:
date --date='2 days ago'
To print the day of year of Christmas in the current year:
date --date='25 Dec' +%j
To print the current full month name and the day of the month:
date '+%B %d'
GUI Tool: Time Administration
The Time Administration Tool allows you to set the time, date and timezone of your system, as well as setting any time server to synchronize your local time server. Type the following command to start time admin tool:
sudo time-admi
OR
time-admi
You may be prompted for the administrator password (root password), this is necessary because the changes done with this tool will affect the whole system.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- My 10 UNIX Command Line Mistakes
- 10 Greatest Open Source Software Of 2009
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email FAQ to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: 11/7/09




{ 0 comments… add one now }