Tar and Transfer the Following Folders
/home/mruckman/.local/share/remmina
/home/mruckman/.local/share/keyrings
/home/mruckman/.ssh
/home/mruckman/.gnupg

Technical notes, and other ideas.
Tar and Transfer the Following Folders
/home/mruckman/.local/share/remmina
/home/mruckman/.local/share/keyrings
/home/mruckman/.ssh
/home/mruckman/.gnupg
Refer: https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
Source Computer
In Firefox click the pancake setting and go to Help, "More troubleshooting information"
Look for path to your "Profile Directory", such as:
/home/mruckman/.mozilla/firefox/6kzldk99.default-release
Close Firefox
Zip/Tar the entire folder
Target Computer
Same procedure as above, locate the folder of your profile. Erase everything in the folder and replace it with the source folder information, the contents remain the same, the only change is the folder name.
Make sure to CLOSE Firefox before deleting and copying the files
Getting WiFi to Work on MacBook Pro Mid 2014
Note: You MUST have an Internet connection already established to run this
Refer: https://askubuntu.com/questions/748951/wi-fi-not-working-on-mid-2014-macbook-pro-with-ubuntu-15-10
sudo apt-get update
sudo apt-get --reinstall install bcmwl-kernel-source
sudo modprobe -r b43 ssb wl brcmfmac brcmsmac bcma
sudo modprobe wl
After shutdown, you will need to run the following two commands again
sudo modprobe -r b43 ssb wl brcmfmac brcmsmac bcma
sudo modprobe wl
Refer: https://itsfoss.com/format-exfat-linux/
Refer: https://askubuntu.com/questions/750681/gui-tool-for-formating-to-exfat
sudo apt-get install exfat-utils exfat-fuse
You need to format with the Disk Tools
Extract just a Tar file
tar -xvf yourfile.tar
Compress Files
tar -czvf name-of-archive.tar.gz /path/to/directory-or-file
Extract Files Current Folder
tar -xzvf name-of-archive.tar.gz
Extract Files to Specific Location
Target Location Must Exist
mkdir /tmp/Documents
tar -xzvf name-of-archive.tar.gz -C /tmp/Documents
Split Files Into Pieces
Refer: https://askubuntu.com/questions/54579/how-to-split-larger-files-into-smaller-parts
mkdir output
split --bytes=10M aem-6.4-authoring.tar.gz output/prefixeS
Combine the Pieces
cat prefixeS* > aem-6.4-authoring.tar.gz
Sharing Ubuntu Image
split --bytes=1000M Ubuntu1804-AEM-64GB.ova output/prefixeS
cat prefixeS* > Ubuntu1804-AEM-64GB.ova
Remove Z to NOT do compression, this includes FULL path in tar file
tar -cvf firefox-profile.tar.gz /home/mruckman/.mozilla/firefox/7sqqgk5s.default-release-1/
This might provide more out of the box granular control.
Refer: https://askubuntu.com/questions/728861/unable-to-connect-bose-soundlink-ae2-headphones
sudo apt-get install blueman
It's now available in applications as "Bluetooth Manager", you will need to Adapter, Preferences, "Always Visible" to keep it showing.
It keeps an audio profile for the various settings.
sudo apt-get purge --remove blueman
You can edit the following with gedit or click the link:
/etc/apt/sources.list
You want to comment out the CD line, if using a live cd
Refer: https://askubuntu.com/questions/1230002/hdmi-sound-not-working-after-upgrading-to-20-04
First install all of your update, and install the propritorary drivers
rm -r ~/.config/pulse/
reboot
You can use the following quick trick when developing with Python inside of a Docker container.
Refer: https://janikarhunen.fi/linting-python-in-vscode
touch ~/.config/flake8
nano ~/.config/flake8
[flake8]
ignore = E501
exclude =
# No need to traverse our git directory
.git,
venv
max-complexity = 10
An easy way is to create a Live CD version with Rufus using Windows and using persitence. There is probably some performance hit, but it works well, the only issue is the user automatically has sudo without a password, but possesion of the USB is the security itself.
It has a portable app version, but you need to go into advance settings to allow it to see your USB drives, before installation. Only 20.04+ versions of Ubuntu work with this, and during setup you need to give it your persistence size. I've used 200GB for my first test.
Author's Site Refer: https://rufus.ie/en/
Tutorial on how to Use Refer https://youtu.be/cHF1ByFKtZo
I have not tried this way because it risks messing up your host machines boot because it might put grub on the internal hard drive. It might be worth risking on an old Linux laptop but not a new Window installation.
Refer: https://www.zachpfeffer.com/single-post/Install-Ubuntu-on-an-External-Hard-Drive
Install Ubuntu on an External Hard Drive Home Zach's Blog.pdf