Security https://www.digitalocean.com/community/tutorials/how-to-install-truecrypt-cli-on-linux https://wiki.archlinux.org/index.php/TrueCrypt Mounting a volume $ truecrypt –mount /path/to/device /path/to/mountpoint example: $ truecrypt –mount /dev/sdc1 /media/thefolder then enter the password and other info if necessary. ERRORS & SOLUTIONS I was able to mount the drive and access it via WinSCP but not anything else. To mount the drive so that you have read and […]
How To Encrypt Removable Drive With LUKS
https://www.cyberciti.biz/hardware/howto-linux-hard-disk-encryption-with-luks-cryptsetup-command/ https://gitlab.com/cryptsetup/cryptsetup
How To Change User Password In Ubuntu
http://askubuntu.com/questions/423942/change-password-on-root-user-and-user-account To change the root password, login as root, then do: $ sudo passwd enter your current password, then the new password and confirm. more: To change your user password: $ passwd To change other users password: $ sudo passwd USERNAME
How To Open A TrueCrypt Container Using cryptsetup
https://tails.boum.org/doc/encryption_and_privacy/truecrypt/index.en.html https://wiki.archlinux.org/index.php/TrueCrypt#Accessing_a_TrueCrypt_container_using_cryptsetup $ sudo cryptsetup –type tcrypt open container-to-mount container-name examples: for a fully encrypted drive: $ sudo cryptsetup –type tcrypt open /dev/sdc1 files1 or for an encrypted file container $ sudo cryptsetup –type tcrypt open /media/mydir/myfile files1 Replace ‘container-to-mount’ with the device file under /dev or the path to the file you wish to […]
How To Determine How Much Disk Space Used In Ubuntu
http://askubuntu.com/questions/73160/how-do-i-find-the-amount-of-free-space-on-my-hard-drive $ df -h
Migrating Nextcloud From Apache To Nginx On Ubuntu 16.04
1. Configuring Apache $ sudo apt-get update $ sudo nano /etc/apache2/ports.conf modify the VirtualHost and Listen lines for port 80 to use port 8000 (or any other port number you would like to use). Note: If you are using a ssl certificate, see ERRORS & SOLUTIONS for a ‘502 Bad Gateway Error’ – the solution […]
How To Access Nextcloud Data Directory
ERROR: can’t cd into nextcloud data directory. Would like to be able to copy/move files in this directory to an external drive for backup. Missing permissions To cd into the directory as sudo Bash shell commands like “cd” can’t be “sudo’ed”, so do this: $ sudo -i now you can cd into the directory and […]