Lyrics: Ein Tor zur weiten Welt

Ein Tor zur weiten Welt

Ein jeder Mensch braucht einen Ort
Every person needs a place

Wo das Herz der Heimat lacht
Where the heart of home laughs

Wo noch in traurig dunkler Nacht
Where still in sad dark night

Dir ein Licht der Hoffnung wacht
A light of hope watches over you

Doch in uns allen blüht die Sehnsucht nach der Ferne
But in all of us blooms the longing for the distance

Die wir so gerne vor Augen sehn
That we so love to see before our eyes

Die weite Reise!
The long journey!

Heut ist der Tag, wo wir verstehn
Today is the day we understand

Hamburg, wie bist du schön!
Hamburg, how beautiful you are!

Ein Tor zur weiten Welt!
A gate to the wide world!

Die Stadt, die uns gefällt!
The city that we like!

So, meine Freunde, ich vertelle
So, my friends, I narrate

Singend bin ich für euch zur Stelle
Singing I am here for you

Auch wenn die Winde harsch
Even when the winds are harsh

Ist’s schön auf Geest und Marsch
It’s beautiful on Geest and Marsh

Selbst wenn die Aussicht trübe
Even if the view is dull

Werde ich nimmer müde
I never get tired

Hamburg, du Perle, meine Glückseligkeit!
Hamburg, you pearl, my bliss!

Die Wolken ziehn am Horizont
The clouds move on the horizon

Ach, ich bin ein kleines Kind
Oh, I am a small child

Ich steh an Deck und schau vom Bug
I stand on deck and look from the bow

Alle Segel gut im Wind
All sails well in the wind

Zu meinem Platz, der wie ein Schatz in meinem Herzen
To my place, which is like a treasure in my heart

Ganz ohne Schmerzen ich nie verließ
Completely without pain I never left

Ein erster Gruß!
A first greeting!

Heut ist der Tag vom Wiedersehn
Today is the day of reunion

Ahoi! Wie ist das schön!
Ahoy! How beautiful it is!

Ein Tor zur weiten Welt!
A gate to the wide world!

Die Stadt, die uns gefällt!
The city that we like!

So, meine Freunde, ich vertelle
So, my friends, I narrate

Singend bin ich für euch zur Stelle
Singing I am here for you

Auch wenn die Winde harsch
Even when the winds are harsh

Ist’s schön auf Geest und Marsch
It’s beautiful on Geest and Marsh

Selbst wenn die Aussicht trübe
Even if the view is dull

Werde ich nimmer müde
I never get tired

Hamburg, du Perle, bleibst doch auf ewig mein!
Hamburg, you pearl, you will remain forever mine!

hello

hello

update 11/23/2023

111

raspberry pi vpn setup

https://www.comparitech.com/blog/vpn-privacy/raspberry-pi-vpn/

ubuntu encrypted grub boot

https://askubuntu.com/questions/1271867/grub-does-not-detect-encrypted-ubuntu-on-second-disk

https://askubuntu.com/questions/1351914/uefi-grub-fails-to-boot-encrypted-ubuntu-21-04-system-cant-find-command-crypt

https://askubuntu.com/questions/1009646/how-to-fix-a-not-booting-ubuntu-setup-with-encrypted-root-disk

linux grub rescue

press c at the first box
then ls to check your partitions/disks
Then indicate which vmlinuz and imitrd.img you want to boot with.

grub> set root=(lvm/mint--vg-root)
grub> linux /boot/vmlinuz-4.4.0-112-generic root=/dev/mapper/mint--vg-root
grub> initrd (hd0,msdos1)/boot/initrd.img-4.4.0-112-generic
grub> boot

calibre server, https, selfsigned ssl

these two sites are very useful…

https://www.digitalocean.com/community/tutorials/how-to-create-a-self-signed-ssl-certificate-for-apache-in-ubuntu-18-04

https://www.digitalocean.com/community/tutorials/how-to-create-a-calibre-ebook-server-on-ubuntu-18-04

redirect incoming traffic to a service running at an internal port
–> use proxy option..

https://serverfault.com/questions/977894/redirecting-https-url-to-service-running-on-a-different-port

for example, if you have a ebook server running internal port 70 then,

setup proxy as ‘/ebook/’ ‘http://localhost:70″
and access this from outside by typing https://external_ip:port/ebook/

using this trick, you can link services as many as you want.

wake on lan: ubuntu20

https://necromuralist.github.io/posts/enabling-wake-on-lan/

ubuntu 20 vnc connect after logout not working

this solution seems correct

https://askubuntu.com/questions/1033274/ubuntu-18-04-connect-to-login-screen-over-vnc

switch the display manager to lightdm, and then bind vnc with x11vnc

Ubuntu 18.04 switched from LightDM to GDM3. Connecting to the login screen with VNC while using GDM3 is currently not possible. The easiest way to get this VNC functionality back is to simply switch back from GDM3 to LightDM.

LightDM is still being actively developed and used by many Linux distributions including some other flavors of Ubuntu. So no worries there.

Install LightDM

apt install lightdm

Should you for some reason come to regret switching to LightDM:

dpkg-reconfigure gdm3

Once you have LightDM installed and configured as your default greeter..

Install x11vnc from packages

apt install x11vnc

Create the file /etc/systemd/system/x11vnc.service

# Description: Custom Service Unit file
# File: /etc/systemd/system/x11vnc.service
[Unit]
Description="x11vnc"
Requires=display-manager.service
After=display-manager.service

[Service]
ExecStart=/usr/bin/x11vnc -loop -nopw -xkb -repeat -noxrecord -noxfixes -noxdamage -forever -rfbport 5900 -display :0 -auth guess
ExecStop=/usr/bin/killall x11vnc
Restart=on-failure
RestartSec=2

[Install]
WantedBy=multi-user.target

Enable the x11vnc service

 systemctl enable x11vnc.service

This assumes screen :0 represents your monitor and binds x11vnc to that monitor instead of a session. If you do not have a monitor (headless) you can install the xserver-xorg-video-dummy package and use the dummy driver to configure a virtual :0 screen for you.

Another post

See how it looks