Blog: Example

Libre Office Writer & Calc

LIBREOFFICE WRITER

If spell check doesn't work, Select-all and R-click > Styles (or Paragraph > Styles) and go to the Font Tab and just change the language to English (USA).

Replace double paragraphs with single. This should be done with Find and Replace and putting ^$ in the first field and nothing in the second. It didn't work for me this time though.


CHANGE BACKGROUND COLOR

Tools → Options → LibreOffice → Application

Define new colors: Tools → Options → LibreOffice → Colors


LibreOffice adding colors with find&replace

  • [1-9] for numbers
  • * for asterisks
  • ... for ellipsis
  • | to separate words (if you want to find John|Jose)
  • ^\s* for any spaces at the beginning of lines
  • (?replace ... with no space after it with a space after it?, same with : remove spaces around *)

... then put & in the replace box, and check ‘regular expressions’. Click ‘format’ > ‘highlight’ and select a color' and close that dialogBox.

For some reason, after applying a find&replace, it just won't do a second one unless you close the document and re-open it.

Instructions from the internet:

  1. Press CTRL+H for a Find and Replace view
  2. In the first box type a word. If you want to replace multiple words, put a "|" inbetween them
  3. In the "Replace" box put a single "&"
  4. With your cursor still in the "Replace" box, press Formatting, click Highlighting.
  5. Press Color and choose whatever color you like
  6. Check the box for "Regular Expressions"

Image

Not used this time:

  • ^$ finds all empty lines
  • $ finds all space after the end of a line

Workaround for removing multiple spaces (although it didn't work for me because it brought stuff too close together also. Just try it to see, but save a copy of your document first.)

  • Search for all $ with Regular expressions, and replace it for a character not used in the document (perhaps █)
  • Search for all ██ “and replace with something else”
  • Search for all █ and replace with \n (to recover the paragraphs)

Regular Expression on LibreOffice

Replace | with : and then

  • ^[^:]*
  • ^[^:]*:
  • Highlight everything before the colon (second one includes the colon) in order to make it bold.

[cal_custom_stack_list words="" id="1"][/cal_custom_stack_list]

  • ^[^:]*
  • ^[^:]*:
  • Highlight everything before the colon (second one includes the colon) in order to make it bold.

  • : [a-z]

  • (plus TopMenu > Format > Text > Uppercase)
  • Every lowercase after a colon, make Uppercase. This hardcodes that Uppercase. If you just do uppercase in Find&Replace, it won't copy-paste to other documents.

  • ^[a-z]

  • ???
  • Select all the first letters and make them capitals.

  • (?-i)(?<=: [a-z]

  • This highlights all the lowercase letters that follow colon and space. (remove the prefix (?-i) to select all letters that follow, not just lowercase.

Regular expressions for Word Lists

(Note that arrow brackets disappear on this site, so if that issue occurs, be aware of it.)

1.

  • \s+\s+
  • \t\t\t
  • Find spaces (only longer than 1 space, so not between words) and replace with 3 tabs.

2.

  • /* with /*/t
  • (t is tab)
  • add tabs after *

3.

  • \s+\s+
  • |
  • $
  • ~
  • replace tabs/spaces with | pipe, and then replace (paragraph)s with ~

4.

  • (.+) and do Format>Bold (to select only things that are bold)
* <span class="hidden">$1</span>
* Replace bold words with <span class>

0.

  • Avoid " within text because it's used by the cal_shortcodes.

1.

  • [[:space:]]+
  • spacebar
  • remove multiple spaces between words and replace with space (note: you will have spaces before start of line sometimes) (Note you may not want to do this as some exercises have purposeful spaces like ... (aquí) 6 ¿Dénde trabaja usted?*6Trabajo aquí. ... in the “Response Drill”.

2.

  • ^\s*
  • nothing
  • for any spaces at the beginning of lines

3.

  • \s+*\s+
  • *
  • Remove all the empty space to left and right of *asterisk.
  • \s+ is spacer \s repeated at least once +
  • Note that this is wider than your specification because \s will also match tab characters. If you don’t want this to happen, replace \s with “ ” (single space, without the quotes).
  • *: the reverse solidus \ is necessary to escape * because it has special meaning in regular expressions

4.

  • $
  • ~
  • Replace (paragraphs) with ~

5.

  • (^[0-9])([a-z])
  • $1 $2 (there is a space between those 2 things)
  • Any time there is a number, make a space after it
  • Parenthesis tell LO to store what was found, so you can reference those things in Replace.
  • You may check, if it is necessary to improve the regular expression using \p{letter} as the one used above does not even find upper-case and will fail on accented characters.
  • (These are backreferences)

6.

  • Remove spaces before any colon, and add a space after any colon.
  • Remove spaces before ..., and add a space after ...

7.

  • (.*)*
  • &
  • To Find all text that comes before the *
  • (in order to highlight-Dark it for spell check on just the Spanish side.

8.

  • sudo apt-get install hunspell-es
  • Tools > Options > Language Settings > Languages > Default languages for documents, and select Spanish, and then do ‘automatic spell check’ and it should work.
  • Spellcheck the Spanish words

9.

  • ,$ = comma (your target) and dollar which is a descriptor for end-of-paragraph
  • or
  • ,\n = comma and \n which is a descriptor for a linebreak
  • Replace commas at end of lines (could be of two types) with a period.
  • ,*
  • Replace commas before an asterisk* with a period

LIBREOFFICE CALC

to constrain text to its columns, highlight it and click the ‘wrap text’ button on the toolbar

gridlines disappear when highlight with color:

Tools →Options→→Calc→View ……→Visual Aids:Grid lines Show on colored Cells

How can I print some, but not all, of the cells on a sheet?

  • Select the cell(s) you want to print
  • Select Format → Print Ranges → Define from the main men
TTTThis

Inkscape: Make SVG vectors, curved objects ...

Turning an image into an SVG for Blender

  • I think svg is like a bunch of code, so doesn't work like an image
  • Use a png. Open in Inkscape. Path > Trace Bitmap. Save as ... (svg). Should work.
  • In Blender, File > Import > sv

Making SVGs for screenprinting

  • Import image
  • draw a shape (rectangle) over it. It will be solid color, so down below double-click the color and make it somewhat opaque.
  • click and shift-click the two things (your picture and the colored square you drew over it)
  • Object > Clip > Set
  • And resize content: File > Document Properties > Resize page to content and click “Resize page ...”

If it's a color

Object > Ungroup


Making a whole object curved

https://graphicdesign.stackexchange.com/questions/103080/inkscape-bend-a-vector-along-a-circular-arc

  1. Select object and Copy
  2. From toolbar, select Bézier tool.
  3. In the tool options above (horizontal bar), choose the option that says "Bend from Clipboard".
  4. Draw a curve with the Bézier tool, and R-click and it should then copy with that curve
TTTThis

C-Pen (pen scanner) on Linux

Does not need scanner software to work. Just turn on the pen and once it's powered up properly, plug it into the computer, then select 'keyboard' and it will scan to whatever document is open.

TTTThis

Kali Linux (including AnyDesk)

Note: sometimes a new install connects to your wifi, but there is no internet service. So (sometimes the last 3 steps don't work or are not required):

  • systemctl enable systemd-networkd
  • systemctl enable systemd-resolved
  • systemctl start systemd-networkd
  • systemctl start systemd-resolved
  • ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
  • service resolvconf restart
  • service network-manager restart

If you intend to have VirtualBox Oracle (VirtualBox is increasingly hard to install on Debian, but don't forget, there are FOSS Alternatives. VirtualBox is not the only VM software.) on the computer, you may want to do that now, since it's the only bitch to install. Should you use install virtualbox-dkms (or will that just not work)? Should you download from their website, and if so, which version (there are lots of issues reported with varios OSs and various VirtualBox editions)?

VERIFYING download is not difficult. Download it, then click on the ‘sum’ thing on the download element to see the SHA256 checksum. That number should match the number you get when you cd Downloads and:


THINGS

  • Time zone: cuba, or Latin American countries are listed like 'Americas/CountryName'
  • Power Manager (otherwise it will dim after 120seconds): Keep screen from locking:
  • Top-left menu > Settings > Power Manager > (fourth tab) Security > Automatically lock: Never, and uncheck []Lock screen when system is going to sleep
  • in Power Settings, you have to click the top buttons for ‘plugged in’ and ‘on battery’ and do both
  • Menu > Keyboard > Layout, unlock the Default settings and +add Spanish, and set a ‘Change layout option.' I selected Ctrl-shift to change language input
  • Disable login screen. Didn't find a way.

SECONDARY THINGS

  • For FONTS, just put a folder with them in home/username/.local/share/fonts
  • Kali has a bunch in user/share/fonts. You can delete some (I'm not sure which ones you can delete without losing render ability. But I deleted the Noto folder (so many fonts), roboto, and some others. I had to change the fonts in CherryTree after (File > Freferences > Fonts) urw-base35 is the one used by LibreOffice (and maybe CherryTree also). Spanish fonts: Antic, Aquiline.
  • Hindi fonts won't display unless you sudo apt-get install fonts-indic
  • Garamond font for book printing
  • .fonts in home directory acts like a place to find fonts
  • /usr/share/fonts is where pre-installed system fonts are (maybe don't delete these)
  • Or find your font location by opening Font Manager and R-click > Open location
  • Make shortcuts on Desktop to Webpages: Make webpage a Favorite in browser, then drag it onto the Desktop.
  • Change wallpaper: Settings > Settings Manager > Desktop
  • Zoom into screen with Start + scroll wheel
  • Fotowall ffrom website and make the 64-bit file executable and just launch it from the file
  • gnome-system-monitor shows internet traffic. Unlike Task Manager
  • sudo apt-get install fonts-thai-tlwg to install Thai fonts ไทย

INSTALL (already has Gparted, good text editors, Screenshot, Python, and something like Task Manager. Does not have snapd, audacity or VLC so no need to remove them).

  • sudo apt-get install hydrogen gimp kdenlive gnome-disk-utility shotwell vokoscreen libreoffice inkscape secure-delete imagemagick fonts-indic cherrytree system-config-printer cups font-manager && Systemctl enable cups
  • (after installing the Epson ecotank it was set to the wrong model and missed magenta lines. I double-clicked the printer in Print Settings and selected the actual model and it worked then, but not on ‘regular paper’ setting)

  • sudo apt-get install lmms (but the audio is scratchy)

  • sudo apt-get install openvpn
  • sudo apt-get install monodevelop (not yet)
  • sudo apt-get install ardour

  • blender comes as a tar.zy from https://www.blender.org/

  • Open terminal in the folder and type tar xz blahblah.tar.xz ... (this will unpack it into a blender folder). Go in that folder. The blender file will be an executable.
  • Ardour. Have to use their site for the AppImage, and they send the DL link to your email
  • Bitwig. Check version number of your previous projects (if they were in version 3 and you install 2.4, it won't open them)

CHERRY TREE

OTHER PRINTER INSTRUCTIONS (not sure if the above replaces this):

OTHER THING ON FONTS

BROWSER

  • FIREFOX does shitty things, so do this: https://www.youtube.com/watch?v=2nOHxCSsv5g (watch before even DOWNLOADING) ...
  • alternatives: Brave (Chromium monopoly) and LibreWolf. Brave.com/linux has it's Terminal commands, which are currently:

yes | sudo apt install apt-transport-https curl && sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg && echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list && sudo apt update && sudo apt install brave-browser

Or


VM

  • See note below on AnyDesk, because inside a VM Kali doesn't seem to be able to install AnyDesk. Lubuntu from site.

SALAMANDER PRO (Piano)

  • Download from website. In folder, Terminal, then tar xf [filename]. This makes an .sfz file.
  • (that didnt work, I think maybe only sf2 files)

HTTrack (for downloading entire websites for offline reading)


ANYDESK


YT_DLP (youtube-dl didn't work for me last time)

For mp3:

For playlist:


Virtualbox can be installed with apt install, but produces an error

Next time, try virtualbox-dkms first and see if that works

Kernel driver not installed (rc=-1908)

The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall virtualbox-dkms package and load the kernel module by executing

'modprobe vboxdrv'

But this doesn't work. Sudo apt upgrade it.


other

sudo apt install qbittorrent


Before you start, you will need: -Accounts info, to log into Bitwig, to log into any SMs in VMs (jam5, b...1,) -Don't delete old hard drive until test that Printers work, VMs work (including Guest Additions shared folder), -Don't delete the old hard drive SSD until you've tried out banking, social media)


KALI INSTALL 2023
- Don't install VirtualBox it doesn't work anymore on Debian usually. Use Qemu (foss). Actually Qemu sucks I had to use VirtualBox again. 
- AnyDesk doesn't work in Kali, but does work on an OS installed on a VM

After installing Kali (and verifying), internet might connect but not work. Do: 

systemctl enable systemd-networkd
systemctl enable systemd-resolved
systemctl start systemd-networkd
systemctl start systemd-resolved

UPDATES AND INSTALLS Takes a few minutes ... meanwhile do the setup things which follow

(Kali already has Gparted, good text editors, Screenshot, Python, and Task Manager Does not have snapd, audacity or VLC so no need to remove them). It also already has vim so you can write bash scripts with .sh suffix. It doesn't have nano.

sudo apt-get install hydrogen gimp gnome-disk-utility shotwell vokoscreen libreoffice inkscape secure-delete imagemagick fonts-indic fonts-thai-tlwg xinput cherrytree gdebi gdebi-core clamav clamtk gnome-system-monitor system-config-printer cups font-manager && sudo systemctl enable cups

(note that some things might and require dependencies and then retry, like gdebi/gdebi-core)

(xinput allows you to disable touchscreen and other things)

(graphical gdebi is gdebi-gtk. I don't know if this note is needed)

(kdenlive is better as an appimage because they do updated versions which don't work (freeze upon render). Don't use new versions, either, although they do have some effects. 19.04 works but rendered images just all white for me last time, so I used version 17 (there's still other version 20s I didn't try yet), and can be downloaded from videohelp, although check it for malware. Kdenlive doesn't offer old versions on their site.)


Set-upNote: sometimes a new install connects to your wifi, but there is no internet service. So (sometimes the last 3 steps don't work or are not required):

    systemctl enable systemd-networkd
    systemctl enable systemd-resolved
    systemctl start systemd-networkd
    systemctl start systemd-resolved
    ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf
    service resolvconf restart
    service network-manager restart

------------------

(NOTE on VMs: I couldn't get Qemu to work nice (screens wouldn't resize, VMs would time out then not boot again, etc, so I went back to VirtualBox)
If you intend to have VirtualBox Oracle (VirtualBox is increasingly hard to install on Debian, but don't forget, there are FOSS Alternatives. VirtualBox is not the only VM software.) on the computer, you may want to do that now, since it's the only bitch to install. Should you use install virtualbox-dkms (or will that just not work)? Should you download from their website, and if so, which version (there are lots of issues reported with varios OSs and various VirtualBox editions)? I have an Install Qemu Virtual Manager on Kali .txt document here, if you want to try Qemu again.)

Verifying download is not difficult. Download it, then click on the ‘sum’ thing on the download element to see the SHA256 checksum. That number should match the number you get when you cd Downloads and:

    shasum -a 256 kali-linux-2022.1-live-i386.iso
    (or whatever your download is called)
    it takes a few seconds to retrieve the number in Terminal.
    https://www.kali.org/docs/introduction/download-official-kali-linux-images/

(after installing the Epson ecotank it was set to the wrong model and missed magenta lines. I double-clicked the printer in Print Settings and selected the actual model and it worked then, but not on ‘regular paper’ setting)

Virtualbox Oracle install: 

virtualbox-dkms

and reboot (if necessary. Maybe you can just use the program without rebooting). 

If you get an error that ends in (initramfs) in the VM when it boots, type 
(initramfs) fsck /dev/sda1 -y
(the -y means you won't have to type y a hundred times.)
... or ... /sdaX

Sometimes gives ‘modprobe vboxdrv’ error. 
(Troubleshooting if stuff doesn't work: upgrade virtualbox-dkms took a long time and didn't make it work. Same ‘modprobe vboxdrv’ error. 
sudo apt-get dist-upgrade
reboot)

THINGS TO DO Would be nice to make as a script

Time zone: cuba, or Latin American countries are listed like 'America/CountryName'
Power Manager (otherwise it will dim after 120seconds): Keep screen from locking:
Top-left menu > Settings > Power Manager > (fourth tab) Security > Automatically lock: Never, and uncheck []Lock screen when system is going to sleep
in Power Settings, you have to click the top buttons for ‘plugged in’ and ‘on battery’ and do both
Menu > Keyboard > Layout, unlock the Default settings and +add Spanish, and set a ‘Change layout option.' I selected Ctrl-shift to change language input
Disable login screen. Didn't find a way.

SECONDARY THINGS Would be nice to have a script for this too

For fonts, just put a folder with them in home/username/.local/share/fonts
     Kali has a bunch in user/share/fonts. You can delete some (I'm not sure which ones you can delete without losing render ability. But I deleted the Noto folder (so many fonts), roboto, and some others. I had to change the fonts in CherryTree after (File > Freferences > Fonts) urw-base35 is the one used by LibreOffice (and maybe CherryTree also). Spanish fonts: Antic, Aquiline.
     Hindi fonts won't display unless you sudo apt-get install fonts-indic
     Garamond font for book printing
     .fonts in home directory acts like a place to find fonts
     /usr/share/fonts is where pre-installed system fonts are (maybe don't delete these)
     Or find your font location by opening Font Manager and R-click > Open location
Make shortcuts on Desktop to Webpages: Make webpage a Favorite in browser, then drag it onto the Desktop.
Change wallpaper: Settings > Settings Manager > Desktop
Zoom into screen with Start + scroll wheel
Fotowall from website and make the 64-bit file executable and just launch it from the file
gnome-system-monitor shows internet traffic. Unlike Task Manager
sudo apt-get install fonts-thai-tlwg to install Thai fonts ไทย

OTHER INSTALLS Optional

sudo apt-get install lmms (but the audio is scratchy)
sudo apt-get install openvpn
sudo apt-get install monodevelop (not yet)
sudo apt-get install ardour

Blender Use the AppImage in the OurPrograms folder, although another option is 
... it comes as a tar.zy from https://www.blender.org/
Open terminal in the folder and type tar xz blahblah.tar.xz ... (this will unpack it into a blender folder). Go in that folder. The blender file will be an executable.
Ardour. Have to use their site for the AppImage, and they send the DL link to your email

Bitwig Hard to install because of i386 dependencies You need to install Gdebi and gdebi-core first, in order to install this .deb package, but that is done in the Updates and Installs section above (Also, check version number of your previous projects (if they were in version 3 and you install 2.4, it won't open them) sudo dpkg --add-architecture i386
&& sudo apt-get update
(after these two things, the i386 unmet dependencies error disappeared) In Bitwig, set Audio to PulseAudio. Go to Settings > Behavior and turn off Data Collection. Go to User Interface and Reverse zoom direction.

Cherrytree notes make a .ctb file and save it to Desktop and set it to open default-ly with CherryTree Can increase font size by CTRL + scrollwheel User manual: https://giuspen.com/cherrytreemanual/

Polyphone font editor sudo apt-get install polyphone

Handbrake for converting videos to other formats, and has all codecs, I've heard

H2 Hydrogen has a similar thing but for synth/midi called SEQ24

(neovim is better than vim because you can cut/paste, but I found it stupid compared with textEditor)


OTHER PRINTER INSTRUCTIONS 
(last time I installed Kali, after all the other stuff I did (including a reboot), the HP Smart Tank was able to be added with Start > Print Settings (add another one just like the one it might already detect)
(not sure if the above replaces this)
(but before that it didn't work without something from the following commands.)
(note this is a chatGPT condensed version I haven't tried:
sudo apt-get install cups cups-client "foomatic-db"
sudo -i
/usr/sbin/adduser root lpadmin
sudo service cups restart
sudo systemctl enable cups
sudo systemctl start cups
sudo apt install net-tools
ifconfig -a
)

    Plug in printer and find driver
    https://subba-lakshmi.medium.com/how-to-install-and-configure-printers-on-kali-linux-78a0476b3cfe
    (Needs cups (Common Unix Printing System))
    sudo apt-get install cups cups-client "foomatic-db"
    (become root (necessary for next step) with:)
    sudo -i
    /usr/sbin/adduser root lpadmin
    (check if root is added with:)
    groups root
    (restart cups and kali with:)
    sudo service cups restart
    (then enable cups:)
    sudo systemctl enable cups
    (then start cups:)
    sudo systemctl start cups
    (at this point I could ‘add a printer’ in Print Settings, but it didn't offer any printer drivers despite being plugged in)
    (... so I updated, but that didn't work, so I wanted my IP, so I 
    sudo apt install net-tools     ... and
    ifconfig -a and saw my wlan0 IPs. Google saw the inet6 one
    https://127.0.0.1/
    and then while that was open in Print Settings it started suggesting the correct printer.

OTHER THING ON FONTS

BROWSER

FIREFOX does shitty things, so do this: https://www.youtube.com/watch?v=2nOHxCSsv5g (watch before even DOWNLOADING) ...

alternatives: Brave (Chromium monopoly) and LibreWolf. Brave.com/linux has it's Terminal commands, which are currently:

sudo apt install apt-transport-https curl
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg arch=amd64] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
sudo apt update
sudo apt install brave-browser

VM

See note below on AnyDesk, because inside a VM Kali doesn't seem to be able to install AnyDesk. Lubuntu from site.

SALAMANDER PRO (Piano)

Download from website. In folder, Terminal, then tar xf [filename]. This makes an .sfz file.
(that didnt work, I think maybe only sf2 files)

HTTrack (for downloading entire websites for offline reading)

ANYDESK

Don't forget, it works on Lubuntu. But doesn't seem to work on Kali
anydesk from website. Comes as a .deb file.
Missing libdgk-whatever. Upgrade DOES NOT fix this.
So far, can't get it to work, although I think I got it to work once on someone's Kali
sudo apt update
sudo apt install -y gnupg2
sudo sh -c 'echo "deb http://deb.anydesk.com/ all main" > /etc/apt/sources.list.d/anydesk.list'
wget -qO - https://keys.anydesk.com/repos/DEB-GPG-KEY | sudo apt-key add -
sudo apt -y update && sudo apt -y install anydesk *then, because kali isn't supported: *wget http://archive.ubuntu.com/ubuntu/pool/universe/p/pangox-compat/libpangox-1.0-0_0.0.2-5.1_amd64.deb sudo dpkg -i libpangox-1.0-0_0.0.2-5.1_amd64.deb
https://computingforgeeks.com/how-to-install-anydesk-on-kali-linux/ and https://old.reddit.com/r/AnyDesk/comments/qip1ka/kali_linux_not_working_libpangox10so0_issue_at/
Once installed, you have to set up unattended access.

Otherwise, you will wait for the computer to turn on AnyDesk, and you'll pick it and connect, and it will say “password or the other computer has to press grant access”.

YT_DLP (youtube-dl didn't work for me last time)

https://github.com/yt-dlp/yt-dlp
sudo wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp -O /usr/local/bin/yt-dlp
sudo chmod a+rx /usr/local/bin/yt-dlp
https://linuxconfig.org/yt-dlp-vs-youtube-dl

For mp3:

$ yt-dlp -f 'ba' -x --audio-format mp3 https://www.youtube.com/.....

https://write.corbpie.com/downloading-youtube-videos-and-playlists-with-yt-dlp/

For playlist:

yt-dlp -f 'bv*[height=1080]+ba' --download-archive videos.txt https://www.youtube.com/playlist?list=etcetcetc... -o '%(channel_id)s/%(playlist_id)s/%(id)s.%(ext)s'

Virtualbox can be installed with apt install, but produces an error

Next time, try virtualbox-dkms first and see if that works

Kernel driver not installed (rc=-1908)

The VirtualBox Linux list: • For FONTS, just put a folder with them in home/username/.local/share/fonts • Kali has a bunch in user/share/fonts. You can delete some (I'm not sure which ones you can delete without losing render ability. But I deleted the Noto folder (so many fonts), roboto, and some others. I had to change the fonts in CherryTree after (File > Freferences > Fonts) urw-base35 is the one used by LibreOffice (and maybe CherryTree also). Spanish fonts: Antic, Aquiline. • Hindi fonts won't display unless you sudo apt-get install fonts-indic • Garamond font for book printing • .fonts in home directory acts like a place to find fonts • /usr/share/fonts is where pre-installed system fonts are (maybe don't delete these) • Or find your font location by opening Font Manager and R-click > Open location • Make shortcuts on Desktop to Webpages: Make webpage a Favorite in browser, then drag it onto the Desktop. • Change wallpaper: Settings > Settings Manager > Desktop • Zoom into screen with Start + scroll wheel

Some programs can run from AppImages, so you don't need to install them: - Blender 3d -

Some programs must be installed from their .deb file (after installing Gdebi package installer, and remember you have to OPEN Gdebi program and inside it open the .deb packages. If you just go to Thunar and open the .deb with Gdebi it will crash when you click ‘install’). - BItwig 3.0 (lower versions can't open my files created in 3) -

Some printer drivers might need to be installed (from my Programs and Drivers folder) - Ecotank? -

VMs: - Banking - YouTube, social media - Work, chatGPT, CodePen, Instagram - YT-dlp (needs size) - Ableton on Windows7, with shared folder -

INTERNET SITES Do video calls with talky.io

NOTES ON VMz - Lubuntu is small, and after setting screensize it seems to work there OK, but drag and drop didn't seem to work (Kali VM does work, and screen sizing works, right out of the box) - Lubuntu with basic apps takes up almost full 6gb (do 7gb if you want LibreOffice on it, which takes like 1gb) - Lubuntu Shared Clipboard also doesn´t seem to work

MULVAD from website is a .deb have to install gdebi gdebi-core then restart and it worked

PIPEWIRE / PULSEAUDIO https://www.youtube.com/watch?v=e2lWR1Kmvag

HOW TO UNDO PIPEWIRE AND REVERT TO PULSE systemctl --user unmask pulseaudio systemctl --user --now disable pipewire-media-session.service systemctl --user --now disable pipewire pipewire-pulse systemctl --user --now enable pulseaudio.service pulseaudio.socket sudo apt remove pipewire-audio-client-libraries pipewire https://askubuntu.com/questions/1407885/how-to-uninstall-pipewire-and-go-back-to-pulseaudio

Arduino AppImage from arduino.cc if don't have the AppImage already Hello Drum library. With the Arduino IDE program opened, go to manage libraries and it will be there in the search (downloadable). I also downloaded it locally and put it in the Software Folder "avrdude: stk500_getsync(): not in sync: resp=0x00," aka Some Dude Named Avr Won't Let Me Upload My Program ... ... This error, retry evertying, and then do Tools > Processor and try the at least 2 options 328 and 328 Old Bootloader. This worked for me.


ClamAV for antivirus/scanning sudo apt install clamav clamtk (might require an update) https://www.youtube.com/watch?v=NXsOoXiFP1E you can schedule

TTTThis

HP printer on Linux

Printer driver is found automatically when you select HP laser jet (plug in printer so it can detect it) (I did this again, and HP laser jet was the one that worked the second time as well). When I printed a test page, it printed.

NOTE: You may have to, every time, set the Page Layout paper size to Paper size: Letter 8.5x11 and Orientation: Landscape, otherwise it will use it's default which will print off the page (8.25x11.69 for some reason).

TTTThis