Install Certificate on Ubuntu 22.04

Select Run from the Start menu, and then enter

certmgr.msc

The Certificate Manager tool for the current user appears. To view your certificates, under Certificates - Current User in the left pane, expand the directory for the type of certificate you want to view.

Find certificate, choose "Action", "All Tasks", Export, Next

Choose "DER encoded binary X.509 (.CER)"

Save as princess-root.der

princess-root

Copy to Linux

Refer: https://ubuntu.com/server/docs/security-trust-store

Convert DER to PEM

sudo openssl x509 -inform der -outform pem -in princess-root.cer -out princess-root.crt
sudo cp princess-root.crt /usr/local/share/ca-certificates/
sudo update-ca-certificates

Refer: https://manpages.ubuntu.com/manpages/trusty/man1/certmgr.1.html

Installation for certmgr

sudo apt install mono-devel

Look at certs

less /etc/ssl/certs/ca-certificates.crt
certmgr -list -c -m Trust | less
certmgr -list -c -m Trust | grep -i princess

Using Pop Shell on other GNOME Desktops

For Ubuntu-Based Distros

Refer: https://support.system76.com/articles/pop-shell/

In order to build Pop Shell from source, we'll first need to install the build dependencies and git to clone the repository:

sudo apt install git node-typescript make

Note: these instructions assume an Ubuntu-based distro; other distributions (see examples below) will use different package managers, and may have different package names.

Next we'll clone the repository using this command:

git clone https://github.com/pop-os/shell.git

Now we'll enter the directory for Pop Shell (called "shell") and build the package:

cd shell
make local-install

Mug Pancake

Refer: https://www.youtube.com/watch?v=DnuH1Yggnjw

1 Minute Fluffy Pancake recipe ( Mug Pancake):

  • 13 g (1 tbsp) Butter
  • 10 g (3/4 tbsp) Sugar
  • 30 g (2 tbsp) Milk
  • 25 g (3 tbsp) All purpose flour
  • ΒΌ tsp Baking powder
  • Maple Syrup

If you are using grams, please be precise and use the exact amounts in the recipe.

Every microwave is different. Mug cakes can take anywhere between 1 minute - 1 minute and 15 seconds. Be careful to not over cook your cake.

Panasonic Cordless Phone Wrong Time Zone

Refer: https://eng-au.faq.panasonic.com/app/answers/detail/a_id/43080/~/troubleshooting---i-set-my-time-on-my-cordless-phone-and-when-someone-calls-me

TROUBLESHOOTING - I set my time on my cordless phone and when someone calls me the time changes to the wrong time. How do I stop this?

What is happening is by default your phone uses what is known as the Caller ID information to obtain the time. So when someone calls you your phone, it is being given the time that is being used by the phone exchange of the phone provider.

If you wish to avoid this from happening you need to change the time settings in your phone from "Caller ID" to "manual".

Go to Menu->Time Settings->Time Adjust. Change from Caller ID to Manual.

Change Timezone on Ubuntu

From a Terminal

export TZ=America/Los_Angeles
timedatectl

Example Output

$ timedatectl
                      Local time: Sun 2022-09-18 18:28:01 UTC
                  Universal time: Sun 2022-09-18 18:28:01 UTC
                        RTC time: Sun 2022-09-18 18:28:03
                       Time zone: Etc/UTC (UTC, +0000)
       System clock synchronized: no
systemd-timesyncd.service active: yes
                 RTC in local TZ: no

Another way

sudo timedatectl set-timezone America/Los_Angeles

Inside a Docker Container

ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
dpkg-reconfigure --frontend noninteractive tzdata

Interactive Way

dpkg-reconfigure tzdata