Truecrypt share mounted container

First edit your /etc/fuse.conf to allow other users by uncommenting the user_allow_other line at the bottom. (use gksu gedit /etc/fuse.conf)

Next you’ve got to mount the Truecrypt volume with read permissions for “other”. Do that from the command line using:


truecrypt --fs-options="uid=1000,gid=1000,umask=0002" -m="ro" -k "" --protect-hidden=no /path /куда


-m=”ro” = read only
-k “” без ключей
–protect-hidden=no
/path = path to you container

для анмаунта
umount /media
truecrypt -d /путь до файла контенера

Enable Root User on Ubuntu 16.04.1 LTS

Steps To Enable Root User On Ubuntu 16.04.1 LTS:

1) First of all login your account

2)Open terminal (Alt +Ctrl +T)

3)Set Root user Password 

technhit@technhit-virtual-machine:~$sudo passwd root
[sudo]password for technhit:
Enter UNIX password:
Retype UNIX password:
passwd:password updated successfully
technhit@technhit-virtual-machine:~$

enable-root-ubuntu1

4) Now open file 50-ubuntu.conf with nano command.

technhit@technhit-virtual-machine:~$sudo nano /usr/share/lightdm/lightdm.conf.d/50-ubuntu.conf

enable-root-ubuntu2

5)Now Add the following line to the end of file:

greeter-show-manual-login=true

enable-root-ubuntu3

6) Press Ctrl +X then press Y to exit

7)Now restart your system and login as root.

enable-root-ubuntu4

Scroll to top