Blog: TTTThis

Tails OS

virt-manager VMs in Tails https://tails.boum.org/doc/advanced_topics/virtualization/virt-manager/index.en.html

Note: Can't use ‘persistent’ on the first install (from the DL). Have to use that DL and boot it and then install Tails from that to another Tails USB.

  • tails.boum.org
  • is the official site
  • (note, 32bit or 64bit. New versions do not have 32 bit (most recent 2.12 I think)

you put it on a USB, but that one won't allow Persistent. You have to use that Tails USB OS to make another Tails USB from it. ... Use ‘Tails installer’ and write tails to another USB/SSD. Now use that new USB Tails (don't use the original one) and boot it, and you can ‘configure persistent’ on that one. Should work. (Persistence is adding a storage volume which is/can be added to future boots.)

Without Persistence, Tails is such that it removes the fingerprint of the user (from browsing interface). The internet can see you use Tails perhaps but not who the user is. (It can't see browser configuraiton, screen resolution, what drivers are installed, in addition to the things most people think of ie MAC address, IP address, analytics).

Note: Persistence is NOT invisible. You can see it when you boot on that USB.

AppImages in Tails

  • first, put in ‘persistent’ folder
  • then, make executable

QUESTIONS

  • How does Tails clear RAM?
  • Other Samplerbox?

Improvements for Tails

  • should ALWAYS show “pw for persist. If you have not set up Persistent, ignore this"
  • 2nd pw for delete

Add languages

TTTThis

Making purposed folders to automatically render various changes to files (Also, How to batch convert images)

Starting point (doing it manually):.

After installing ImageMagick software sudo apt-get install imagemagick -y on a Debian-based distro, you can just use Terminal and your file manager.

Put  some image files in a folder. Open Terminal in that folder. Use 'magick convert' (which belongs to the ImageMagick software you installed) to resize, rename, and reformat the image files.

Example:

I placed 5 pngs into ~/Desktop/ImageFrom, altogether they weight 2mb. (I also have a folder desktop/ImageTo.) I open Terminal in ~/Desktop/ImageFrom and do mogrify:

mogrify -path ~/Desktop/ImageTo -format jpg -resize 1000x1000 *

This puts versions of all my pngs into my other folder, but they are now jpegs with the longest edge being 500px. They now weigh 225kb altogether.

Here ends the 'Starting point' part.

TTTThis

3D printing notes

Blender for design. (AppImage)

Cura for slicing. (AppImage)

Crealty3d Ender 3.

TTTThis

Lubuntu 18.04

Don't use newer Lubuntu, they suck (no internet).

TTTThis

Qemu Virtual Machine Manager (KVM)

After VirtualBox turned bad (everyone says it's much slower, and it can't even be installed on lots of OSs anymore), people are turning to Qemu, which is better anyway because it's FOSS.

It uses qcow2 files (currently), not .vdi files (which VirtualBox uses). You can 'migrate' .vdi files to become qcow files (use your old VirtualBox VMs in Qemu) but I haven't done that yet.


Install was not simple, but did work.

To make shared folders in the current Qemu, you have to go to Memory > checkmark on 'Enable shared memory', then click the button at the bottom of the list 'Add hardware', then go to 'File System' and here you keep driver as 'virtiofs' (this is just for LinuxHost-LinuxGuest, I've read, not for Windows). Set your source path (yes the actual path) to where you want your sharedFolder to be on your Host (create this folder also). For Target path, just put the NEWdIRECTORYnAME of the folder on your Guest (don't put the actual path to it, just the name). ... Now inside the GuestOS, do sudo mkdir path/to/your/NEWdIRECTORYnAME ... then (still inside the Guest, do sudo mount -t virtiofs NEWdIRECTORYnAME /path/to/your/NEWdIRECTORYnAME (the first name has to be the same as you entered in your Qemu settings a minute ago). Now it should be working on both sides.

TTTThis