Ubuntu 12.04 on Thinkpad T440

Being a slightly dated OS release, mating Ubuntu 12.04 to Thinkpad T440 hardware throws up a few challenges. This post lists these and how those can be worked around. Disclaimer: I don't claim to have solved all these issues by myself. Instead all of them were solved by other …

Linux Command Output Redirection Rules

Here's another thing that I learned today -- command output redirection syntax. > redirects the program's output to the specified file which is specified afterwards. If > is preceded by ampersand, shell redirects all outputs (error and normal) to the file right of >. If you don't specify ampersand, then only normal output is …