Tuesday 28 May 2013

How To Require a Username at Login

I've always kind of liked the extra security that came with having to enter your username as well as your password at login. It also, I find, looks better.

Here's how to do it.

1. Open the following file in a text editor...

/etc/lightdm/lightdm.conf

2. Simply Add the following lines...  

greeter-show-manual-login = true 
greeter-hide-users = true 
allow-guest = false

3. Save, restart and see the effects!

Monday 27 May 2013

An Idiots Guide to Installing Truecrypt Quickly and Easily in uBuntu 12.04+

So Truecrypt isn't available in the software centre any more which is a bit of a pain but it's one of those bits of software you can't really do without.

Not to worry.

1. Open up the terminal and type:

For 32bit systems...

wget http://www.truecrypt.org/download/truecrypt-7.1a-linux-x86.tar.gz

Or for 64bit systems...

http://www.truecrypt.org/download/truecrypt-7.1a-linux-x64.tar.gz

2. Extract it... 

tar -zxvf truecrypt*.gz

3. And install it... 

sudo ./truecrypt-7.1a-setup-x86  

And your done!