Blender for design. (AppImage)
Cura for slicing. (AppImage)
Crealty3d Ender 3.
Blender for design. (AppImage)
Cura for slicing. (AppImage)
Crealty3d Ender 3.
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,
Actually, I don't think you need to do that mount command because it's done by the following necessary steps for persistence. In Guest VM,
sudo nano /etc/fstabSharedf /home/kali/Documents/Sharedf/ virtiofs defaults 0 0When you reboot it should have the Shared folder shared.
(If you want to screenshot first, and want to rotate the screen: xrandr -o left (and use xrandr -o normal to return to regular view).)
Open Terminal in the folder with all the images and
convert *.png -shave 90x280 shaved*.png
Uses qpdf, imagemagick, ocrmypdf, and pdftotext.
0 Rename pdf to orig.pdf
1 Extract the paragraph from the pdf
2 Create vr.pdf (VeryReadable)
3 Create text layer on vr.pdf as a new pdf
4 Convert that new pdf to .txt
5 Delete everthing except the new txt file and the new layered pdf * rm output* && rm final* && rm vr.pdf && rm just-the-chapters.pdf
All at once:
qpdf orig.pdf --pages . 318-419 -- just-the-chapters.pdf && convert -density 288 just-the-chapters.pdf output-%02d.jpg && convert output*.jpg -level 25% final-%02d.jpg && convert final*.jpg vr.pdf && ocrmypdf -l spa vr.pdf bookonech9-10.pdf && pdftotext -layout bookonech9-10.pdf bookonech9-10.txt && rm output* && rm final* && rm vr.pdf && rm just-the-chapters.pdf