Archiv der Kategorie: Unkategorisiert

Bank Austria App ohne Google, leider NEIN

Auf meinem Lineageos Samsung Telefon habe ich keine Google Apps installiert.

Die 2Faktor Authentifizierung der Bank Austria läuft jetzt nicht mehr über SMS sondern nur noch über deren App. Das ist zwar ärgerlich, aber zumindest kann man die Bank Austria App auch ohne Google Dienste zur Authentifizierung benutzen, man muss sie nur aufmachen und manuell neue Authentifizierungsanfragen abfragen, dann funktioniert sowohl der Internet Banking Login, als auch die Freigabe von Transaktionen.

Leider gibt es die App nur von Google, und ein runtergeladenes APK installieren funktioniert zwar, aber die Initialisierung der App geht nicht ohne Google Services. Leider sehr traurig.

Die einzige Möglichkeit ist die Gapps mit Lineageos mit zu installieren, dann die Bank Austria App zu installieren, die Anmeldung in der Bank Austria App durchzuführen und dann die Google Dienste am Handy zu deaktivieren.

Debian 11 cryptroot remote unlocking

Unlocking a fully encrypted setup on Debian remotely via ssh is now quite simple:

Install dropbear-initramfs

newserver: sudo apt-get install dropbear-initramfs



after this we need to get our ssh key into the initramfs. Simplest way is to log into the server once with the keys and then copy them to initramfs. To do that copy your keys from your main machine:

laptop: ssh-copy-id karl@mediaserver

then log into the machine and copy the authorized keys file:

newserver: sudo cp .ssh/authorized-keys /etc/dropbear-initramfs/

Add Hostname

by default the Initramfs gets it IP via DHCP. If you want to set a static IP you can do that with a IP parameter in /etc/initramfs-tools/initramfs.conf

Syntax is:

IP=<client-ip>:<server-ip>:<gw-ip>:<netmask>:<hostname>:<device>:<autoconf>:<dns0-ip>:<dns1-ip>:<ntp0-ip> 

If you use DHCP the Initramfs will get a IP but it will not set up a hostname. I find this inconvenient, fix it with this line in /etc/initramfs-tools/initramfs.conf

IP=::::debian-mediaserver:::::

Now rebuild your initramfs with new keys and IP settings:

newserver: sudo dpkg-reconfigure dropbear-initramfs