If you have an error like this one when running TrueCrypt right
after you upgraded to Lion:
MacFUSE file system is not available (1)
From: http://soup.schmidp.com/post/137004743/Mac-OS-X-10-7-Lion-Truecrypt
To get it running follow these steps:
From http://hints.macworld.com/article.php?story=20090126091139753
Quite often when reading macosxhints, I read a hint that involves a terminal command, usually a defaults write hidden preferences trick. The easiest way to enter these commands is to copy them from Safari, and paste them on to the command line in Terminal. The problem is that most of the time I’m using xterm running under X11, and it doesn’t support cut and paste with Aqua.
One can get around this problem by entering the following at the shell prompt.
That’s it. pbpaste is a shell command that writes the contents of the clipboard to standard output; piping it into the shell causes the shell to execute the command that was on the clipboard. pbcopy works in the other direction — text sent to the standard input of pbcopy ends up on the clipboard. For example:
1
| echo "Hello Aqua" | pbcopy |
puts Hello Aqua on the clipboard.