Linux

Copy EXIF information from one file to another

This is a short post about how to duplicate or copy the EXIF information from one file to another using exiftool. The command comes handy when you have one image with EXIF information and you would like another image to have the exact EXIF information. exiftool -TagsFromFile CopyFromFile.NEF ToFile.JPG This works in both Windows and […]

Read More
Linux

Installing VMware Workstation 7.1.1 64 bit on Ubuntu 10.10

Installing the 64 bit VMware Workstation 7.1.1 on Ubuntu # ./VMware-Workstation-Full-7.1.1-282343.x86_64.bundle When you try to start VMware Workstation for the first time you will get the following error message You have to read the log file to get the details why VMware would not start, in my case it is named /tmp/vmware-root/setup-24056.log Oct 02 00:10:54.570: […]

Read More
Scripting

Randomize filenames

This is a simple bash script to create random filenames of all jpg-files (*.jpg) in a folder using the linux commands mv, sha1sum and cut. #!/bin/bash # Randomize filenames for fname in *.jpg; do mv “$fname” $(echo “$fname” | \ sha1sum | \ cut -f1 -d ‘ ‘ | \ cut -b 1-5).jpg done The […]

Read More