Search notes:

After installing Ubuntu

Install git

Open a terminal (ctrl-alt-t).
sudo apt update
sudo apt-get install git
mkdir -p ~/github/github
git clone https://github.com/ReneNyffenegger/PostLinuxInstallation ~/github/github/PostLinuxInstallation
cd ~/github/github/PostLinuxInstallation/dot-files
. _setup.sh

cd ~/github/github/PostLinuxInstallation/install/git
./config.sh
Apparently, the «standard» approach does not install the newest git version…
An answer on unix.stackexechange suggests to execute
sudo add-apt-repository ppa:git-core/ppa -y
sudo apt-get update
sudo apt-get install git -y
git --version
Of course, the apt-get update command results in:
W: GPG error: http://ppa.launchpad.net/git-core/ppa/ubuntu kinetic InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY A1715D88E1DF1F24
E: The repository 'http://ppa.launchpad.net/git-core/ppa/ubuntu kinetic InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
This blog suggests to add the public key to my(?) system with
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24
Executing: /tmp/apt-key-gpghome.g6AmEDGffS/gpg.1.sh --keyserver keyserver.ubuntu.com --recv-keys A1715D88E1DF1F24
gpg: key A1715D88E1DF1F24: public key "Launchpad PPA for Ubuntu Git Maintainers" imported
gpg: Total number processed: 1
gpg:               imported: 1
With the imported public key, I am now able to execute sudo apt-get update, but sudo apt-get install git -y results in
The following packages have unmet dependencies:
 git : Depends: libc6 (>= 2.34) but 2.28-10+deb10u1 is to be installed
       Depends: libpcre2-8-0 (>= 10.34) but 10.32-5 is to be installed
E: Unable to correct problems, you have held broken packages.
This is when I gave up.

Mounting a shared windows drive

Adding the following line to /etc/fstab:
//192.168.1.113/SHARED_DRIVE_NAME    /mnt/MOUNTPOINT  cifs rw,user=Rene,password=MYSECRET,gid=adm,uid=rene 0 0
cifs-utils are needed: sudo apt-get install cifs-utils.

Installing driver for Epson WF-7610

See Ubuntu: Install driver for Epson WF-7610.

Samsung Phone

After connecting a samsung phone via USB, the contents of the Samsung phones are found in
/run/user/1000/gvfs/mtp:host=%5Busb%3A002%2C007%5D/Phone/Music
See also MTP - Media Transfer Protocol.

Entering Umlaute / Special characters

Press ctrl+shift+u, then enter four character code point.

Turning off sending data to productsearch.ubuntu.com

see here.

Scanner

Fiddling around with /etc/sane.d/epkowa.conf (where I had to enter the IP number of the scanner).

See also

After installing arch linux

Index