19
Fri, Apr
5 New Articles

TechTip: TrueCrypt Open-Source Disk Encryption Software

Security - Other
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Here's a scenario that is sadly all too common today. You're traveling on the road with your laptop, which suddenly is stolen. What do you do if you have a spreadsheet or database full of personal information on the hard drive? If you answer, "I don't worry. My drive has encryption on it," I'd be pretty surprised.

Unfortunately, many of us often think about the fact that we should be doing more to protect our data, but ultimately it doesn't occur. A lot of people I talk to who don't use encryption don't do so because it can be intimidating, complex to understand, and difficult to use. With TrueCrypt, you can easily create volumes on your hard drive and encrypt them to securely store your data.

What Can TrueCrypt Do for You?

The open-source project TrueCrypt is a great alternative to many of the costly disk encryption software programs on the market. Many people don't need their entire disk encrypted, but instead require only a small place to secure their data on their drives—a vault. TrueCrypt allows you to create a predefined amount of space, called a "volume," where you can safely stow away any personal data with the security options you choose during volume creation.

From a small 10M volume to an entire partition on your hard drive, your volumes will be protected by a password of your choice, or keys if you choose, and encryption algorithms such as AES-256, Blowfish, CAST5, Serpent, Triple DES, and Twofish. AES-256 is recognized by the NSA for safely securing classified information. You can find more information about the various methods of security used on the Encryptions Algorithms page of the documentation.

Downloads and Installations

Visit the downloads page to find packages for Windows XP, Fedora Linux 4 and 5, openSUSE 10, and Ubuntu 4 and 5. If you can't find the specific download for your OS, you can compile the source code available. You'll also need your specific kernel source code for your Linux installation. For information on compiling, make sure to follow the instructions in the Readme.txt file after unzipping TrueCrypt.

Since installations will vary, I won't detail instructions for doing so. The documentation provided will assist with installation on any operating system you plan to use. For machines that have root access denied to normal users, remember to accept allowing non-admin users to run TrueCrypt during the installation questions.

Creating Volumes

Once installation is complete, you can start creating volumes. The Linux version offers only a command-line interface, but it's very simple to use. Initiate a shell session and start by creating a mount point as root. TrueCrypt will use this point to mount the virtual file on in order to read and write data in and out on the fly.

# mkdir /mnt/tc

I won't show you how to create a keyfile, which you will be asked to do during volume creation. My advice is to read the section of the docs on keyfiles before you decide to secure your volumes with them.

Next, create a small volume to experiment with. For my installation, the TrueCrypt binary was installed to /usr/bin/truecrypt. During installation, the script asks you where to install the actual program. Again, if you want to use it as a normal user, you'll have had to answer "yes" to allowing it run as a non-admin account. I'll assume creation and mounting of volumes as a normal user from here on out.

# cd /home/maxhetrick
# truecrypt --create mydata.tc

This command starts a series of questions. You can safely select all of the default answers, but when asked, you should choose a volume size of 128M and type in a password to protect the volume. The password should be a fairly lengthy phrase to ensure security. If your system has a mouse connected, choose "yes" when asked and then randomly move your mouse around until enough random data is collected to encrypt the volume. If you don't have a mouse connected, you'll be asked to enter at least 320 random characters.

Once finished, take notice that TrueCrypt created what appears to be a 128M file in your home directory.

# ll -h
# -rw-rw-r--  1 maxhetrick maxhetrick 128M Mar 11 21:53 mydata.tc

The volume looks and feels like a regular file; however, once mounted, it provides a space to read and write data to and from. Whether you store 1M or 120M of data on it, it will appear to be 128M all the time. Also, if someone were to attempt to look at the volume while it's unmounted without your password, they would see only random data.

Mounting and Unmounting Volumes

Now that you have a volume created to test, you'll need to mount the volume so you can access it:

# truecrypt -u mydata.tc /mnt/tc
# Enter password for '/home/maxhetrick/mydata.tc':
# mount
/dev/mapper/truecrypt0 on /mnt/tc type vfat (rw,uid=500,gid=501)

The -u option ensures that your normal user and group ID are mapped to the volume, which means you have permissions on the mounted volume. Now that you have the volume mounted, you can create, copy, move, edit, and delete anything you like, as you would on any directory. Go ahead and copy a file to the newly mounted volume:

# cp mysecretdata.txt /mnt/tc/
# df -h
/dev/mapper/truecrypt0 128M  2.0K  128M   1% /mnt/tc

What I've done is copy over a small text file from my home directory to the mounted volume.

Now, run the df command to see that the system treats the mounted volume like any other mounted or mapped piece of media.

Once finished creating new files or moving existing files over to the encrypted volume, you can then unmount it:

# truecrypt -d /mnt/tc

The -d option dismounts and unmaps the mapped volume. If you don't specify the path to the mount directly, TrueCrypt will unmount and unmap all volumes it finds.

What I've shown you demonstrates the very simple form of volume creations with basic options.

Hidden Volumes

An interesting feature for the security paranoid is the option of creating hidden volumes within a normal volume. TrueCrypt refers to this as the commonly used term "plausible deniability." If someone were to use violence toward you to gain access to an encrypted share, you could theoretically hand over the outer volume password with fake data located on it. Since the hidden inner volume is actually the one used to store your information, the thief would never know a second volume exists. If you remember, the system shows it as a continuous-size file, not distinguishing free space from random data.

Encrypt Away!

As mentioned, the project also runs on Windows. The Windows version has both a command line interface and a very nice GUI for use. You can find many practical uses, such as using the Traveler Mode for encrypting USB flash drives. Be very careful with full partition encryption, though. Since TrueCrypt completely formats the area chosen, you could easily select a live partition, which could result in data loss.

With TrueCrypt packages available for many Linux versions and Windows, you now have no excuse to not encrypt data on your machines. It not only offers some very secure encryption and peace of mind for those on the road, but best of all, it's open source...which we all know I adore.

Max Hetrick is a PC Support Analyst/Specialist who holds a certification as an MCSA. He also has experience with installation and maintenance of Linux operating systems from the PC to server levels. Max can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..

Max Hetrick

Max Hetrick is an Information Systems Assistant for an electric utility. He has experience with installation and maintenance of both Windows and Linux operating systems from the PC to server levels. Max is also an open-source software advocate. He welcomes all comments and can be reached at This email address is being protected from spambots. You need JavaScript enabled to view it..

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: