Ultimate TrueCrypt Guide:Create And Mount Virtual Encrpyted Partition


Recommended Posts

Ultimate TrueCrypt Guide : Create And Mount Virtual Encrpyted Partitions

Ever felt the need to keep your secret stuff or some confidential data away from prying eyes.

Well here is a excellent solution to hide your confidential files in a virtual encrypted partition.

Software Requirement

True Crypt

TrueCrypt is an open-source encryption software that enables you to create a

virtual encrypted disk within a file and mount it as a virtual disk, that can be

accessed via a drive letter. Any file that is stored on this virtual drive is

automatically encrypted on-the-fly, and can only be accessed while the drive

is mounted with the correct password or key.

TrueCrypt supports a variety of encryption algorithms including

  1. AES-256
  2. Blowfish (448-bit key)
  3. CAST5
  4. Serpent
  5. Triple DES
  6. Twofish

Other features include support for FAT32 or NTFS formatting, hidden volumes,

hotkeys for mounting/dismounting and more.

Download: http://www.truecrypt.org/downloads.php

True Crypt is available for Linux and Windows both and is a FREEWARE.

Lets Begin....

Note: TC = Turbo Crypt

=================================================

Guide

=================================================

Step 1 : Creating the TC Image File which will be mounted as encrypted partition.

Starting True Crypt will present you with this interface.

mainqc0.gif

Click on "Create Volume" to create the image file and select "Standard True Crypt Volume".

Click Next.

create1db7.gif

Click on select file and select a folder on your hard drive where you would like to save your

TC image file , give approrpiate name [here "Test"] dont touch other buttons.

Click Next.

create2jw4.gif

Select Encryption Algo and Hash Algorithm

create3ch9.gif

You can benchmark and select your Encyption Algo , select the one with fastest speed

Here you can see that on my PC "Twofish" was the fastest.

create4benchhk2.gif

Size of the TC Image file which you will mount , here the size can be the max free

space on your partition.

I have selected 50 MB.

create5sizert9.gif

Enter your password which will be used to encrypt your image file with the

selected algorithm.

create6passkeyfileku8.gif

==========================================

OPTIONAL part

Key file is not compulsary its for extra protection.

You can also have a Key file along with the password for double encryption.

NOTE: if you loose this key file then all the data in the image will be locked forever

Check the KeyFile box close to password to add key file.

You can also generate a random keyfile using the hash algo

create6keyfileml1.gif

create6genkeyfileqm0.gif

==========================================

If the password length is below 20 chars it will give you a warning but you

can continue with the password size below than 20 chars.

create6passlength20ih8.gif

Formstting the image file , i choose NTFS over Fat and click on Format.

create7formatqq2.gif

create7formatdonecj3.gif

Now the image file is created and now to access this partition all you need is to mount it.

create8wt8.gif

Step 2 :

Click select file and browse the above created TC Image file which can be mounted.

mount1selectgb0.gif

Enter password and Key File if you have one.

mount1passix3.gif

Mounted , now open My Computer and add files to your encrypted partition.

mount1doneur6.gif

Step 4 : Dismounting

Right click on TC Tray icon and dismount.

dismountvw9.gif

Hope this guide helps you keep your private data safe.

Enjoy :)

  • 4 months later...
  • 2 weeks later...

I've used truecrypt for years, best program out there. I keep a hidden volume stored on my hard drive with a shortcut on my desktop that asks for a password and then up pops a newly created, temporary, X drive, complete with a lock icon :p i love this program, 5*s

  • 2 months later...
  • 1 month later...
  • 5 weeks later...
Thanks, but how do you mount the volume in Linux?

From v5 of TrueCrypt there is a similar GUI. If you want to mount a volume from the command line it's:

truecrypt tcFilename

Other useful commands:

Create a volume

truecrypt -c tcFilename

Mount a volume with no filesystem for formatting

truecrypt --filesystem=none tcFilename

Dismount volume:

truecrypt -d tcFilename

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Meta will now use data from outside businesses to personalize AI responses by David Uzondu In an update that's rolling out globally (except in a handful of countries), Meta will use your data from outside businesses to personalize your AI responses and your primary feeds. Meta already utilizes your shopping activity to target ads, but the company now plans to expand this tracking to personalize other "parts of your experience" like feed algorithms and AI assistant chats. The company is replacing the two settings ("Your activity off Meta technologies" and "Activity from other businesses") that currently let you disconnect off-platform activity with a single, renamed setting called Activity from other businesses. If you don't want Meta to manipulate your feed and AI responses using your outside history, you can just turn the Activity from other businesses setting off in your account settings. This toggle resides within your Accounts Center, applying your choice to every connected profile. Turning this off will not stop companies from sending your data to Meta. The company will still collect your web interactions, but it only uses them to train products, while still accessing external accounts you connect. When The Verge spoke to Meta spokesperson, Emil Vazquez, the representative said that this update will exclude several locations at launch including the European region, the UK, Brazil, Thailand, South Africa, Turkey, South Korea, Ecuador, Nigeria, and Kenya. The new update comes at a time when the social media giant is recovering from a major PR disaster involving generative AI. Last week, there was a huge security issue on Instagram where attackers figured out a way to exploit a prompt injection vulnerability. Hackers managed to trick Meta AI into handing over account ownership (even if the victim had 2FA enabled). Some of the affected accounts include the dormant Obama White House profile, cosmetics brand Sephora, the Chief Master Sergeant of the Space Force, and security researcher Jane Manchun Wong. Internally, the company also had to scale back plans on its Model Capability Initiative (MCI), an employee-monitoring program designed to train corporate AI models by recording worker keystrokes and screen activity, after employees raised privacy concerns and complained about severe battery life drain.
    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      512
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!