
Seagate HDD Date Codes

dating foreigners in usa
There are quite a few reasons you may find that you need to change your time zone – for example, if you’re using a pre-made image for a virtual machine you may find that the default timezone is not set to your country. You can change the time manually, though there is a quick and easy way:
sudo dpkg-reconfigure tzdataThis reconfigures the tzdata (timezone data) package and runs you through a series of prompts asking which country/city you live in, and updates the time accordingly. You can check the current system time with:
dateto verify that it worked!
Ubuntu: How to create a file or folder using today’s date
This is a useful little trick to use in your scripts – particularly for things like periodic backups.
For a file:
touch $(date +%F)creates the file 2012-11-18 For a folder, let’s add the time after the date:
mkdir $(date +%F-%H:%M)creates the folder 2012-11-18-09:00 We can use this in a command, like so:
tar -cf $(date +%F).tar /path/to/files/This creates the tarball (archive) file 2012-11-18.tar from the files in the /path/to/files/. To see the other options, type man date or visit the Ubuntu webpage on date here.