VST synthesizers and instruments (Access Virus)

ACCESS VIRUS

https://www.dogsonacid.com/threads/who-wants-a-free-virus-c-running-in-their-computer.813354/page-2

https://dbwbp.com/index.php/9-misc/37-synth-eprom-dumps ROM

TTTThis

Improvement for Linux

Copying files. If same AND different file size VS if same and same size.

Provide details on what file and location, date created, thumbnail

TTTThis

When all the files on your SD card become 'locked'

https://askubuntu.com/questions/491104/all-folders-and-files-in-sd-card-and-usb-drive-appearing-as-locked , trying first with the SDHC drive (sda or sdb or sdc) which you can find with:

fdisk -l

The command

sudo mount --options remount,rw /dev/sdb

Might have to do it not by dev/sda or sdb, but instead by mountpoint https://askubuntu.com/questions/213889/microsd-card-is-set-to-read-only-state-how-can-i-write-data-on-it

sudo mount --options remount,rw /media/username/mountpointofsdcard

But after those attempts, it still said "error taking ownership of filesystem on read-only file system udisk-error-quark", so I tried to reformat it (the files were readable but the disk had become read-only).

TTTThis

Making encrypted flash drives

https://www.youtube.com/watch?v=ZNaT03-xamE

lsblk

to view media. Let's say your flashdrive is in 'sda'

fdisk /dev/sda

to wipe it. Enter d for delete, then n for new partition, then p for primary, and hit enter to accept the defaults and type YES

lsblk 

to look again. Now you have a sda1

cryptsetup luksFormat /dev/sda1

to encrypt it. Select a password for it

cryptsetup open /dev/sda1 drive

to open it and name it, for the time being, 'drive'. Enter the same password you gave it

lsblk

and you should see 'drive' there

mkfs.ext4 /dev/mapper/drive

to make a filesystem on it (because it doesn't have one yet). it'll auto be on mapper. It'll take some seconds or a minute

mount /dev/mapper/drive /mnt/

to mount it (to mnt for the time being)

TTTThis

Add Images to MP3s with eyeD# metadata editor (python)

https://askubuntu.com/questions/788954/how-to-add-id3-cover-art-by-command-line

TTTThis