Skip to content

Instantly share code, notes, and snippets.

@mbohun

mbohun/NOTES.md Secret

Last active September 5, 2023 07:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbohun/5b6c0054ec566d5d7961bda921bcc2b7 to your computer and use it in GitHub Desktop.
Save mbohun/5b6c0054ec566d5d7961bda921bcc2b7 to your computer and use it in GitHub Desktop.
ssh-tunnel protonmail radicale CalDav

INTRO

  • TODO: add a proper TOC

SUPPORTED / TESTED DEVICES

arm64

riscv64

TESTED OS-es

TESTED SOFTWARE

addressbook CardDav clients

  • Evolution
  • GNOME contacts
  • Mozilla Thunderbird

calendar CalDav clients

  • Evolution
  • GNOME calendar
  • karlender
  • Mozilla Thunderbird

email clients

  • Evolution
  • geary
  • Mozilla Thunderbird
  • mutt

ssh/autossh tunnel approach

NOTE: The following section is "generic" as in all you need is some working:

  • email client, calendar CalDAV client, addressbook CardDAV client
  • ssh / autossh

SETUP:

From the PinePhone1.2b, PinePhonePro, PineBookPro, HiFive Unmatched, etc. use ssh tunnels to connect to:

  • Proton Mail Bridge:
    ssh -L 127.0.0.1:1143:127.0.0.1:1143 -o ExitOnForwardFailure=yes -f -q -N -C mbohun@192.168.1.106
    ssh -L 127.0.0.1:1025:127.0.0.1:1025 -o ExitOnForwardFailure=yes -f -q -N -C mbohun@192.168.1.106
    
  • Radicale (CalDAV and CardDAV):
    ssh -L 127.0.0.1:5232:127.0.0.1:5232 -o ExitOnForwardFailure=yes -f -q -N -C mbohun@192.168.1.106
    

NOTE: There seem to be some SSL? issues when trying to use:
GNOME Settings -> Online Accounts; so I use Evolution to setup/configure:

  • calendar (GNOME calendar or karlender)
  • addressbook (GNOME contacts)

For email at this stage I use geary (although Evolution and Thunderbird are usable with some extra configuration).

autossh

install it:

pinephonepro-phosh:~$ sudo apk add autossh

use it:

autossh -M0 -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -N -f -L 1025:127.0.0.1:1025 mbohun@192.168.1.106
autossh -M0 -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -N -f -L 1143:127.0.0.1:1143 mbohun@192.168.1.106
autossh -M0 -o "ServerAliveInterval 30" -o "ServerAliveCountMax 3" -N -f -L 5232:127.0.0.1:5232 mbohun@192.168.1.106

NOTE:

  • -M ${port} are autossh "monitoring" ports; you just need some (arbitrary) unprivileged ports
  • -M 0 disables the monitoring port

in some more reasonable format

#!/bin/sh

# TODO: - this is supposed to be run as `user'
#       - get rid of the hardcoded 192.168.1.106
#       - ideally use hostnames?
#
PORTS_TO_FORWARD="1025 1143 5232"

for p in ${PORTS_TO_FORWARD}; do
    autossh -M0 \
        -o "ServerAliveInterval 30" \
        -o "ServerAliveCountMax 3" \
        -N \
        -f \
        -L ${p}:127.0.0.1:${p} \
        mbohun@192.168.1.106
done

check if autossh is running:

pine64-pinephone:~$ pgrep autossh
29632
29636
29640

in case you want to shut it down:

pkill autossh

build/install/run Proton Mail Bridge on your device

  • TODO:

REFERENCES:

@mbohun
Copy link
Author

mbohun commented May 25, 2023

CALENDAR

20230526_06h11m29s_grim

@mbohun
Copy link
Author

mbohun commented May 25, 2023

CALENDAR

openSUSE_Tumbleweed_GNOME_calendar-radicale_v3-PPP_shad

@mbohun
Copy link
Author

mbohun commented May 30, 2023

Needs handling for scripts:

mbohun@mamlas:~> ssh user@192.168.1.108
The authenticity of host '192.168.1.108 (192.168.1.108)' can't be established.
ED25519 key fingerprint is SHA256:Vzp...removed...0M.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? 

@mbohun
Copy link
Author

mbohun commented Jun 6, 2023

PineTab2 in action

Calendar entry created on PineTab2 (using the "default" KDE "Kalendar":

NOTES:

  • Although it "works", it is rather unstable / "crashy" (Segmentation fault)
  • There seems to be some Akonadi BUG, causing apx. 700mb of RAM (and 23 processes) being used already on PineTab2 startup (after a reboot) ; unitl this problem is fixed, i prefer to turn Akodani OFF

Screenshot_20230606_155007

  • Verification; from my daily driver PinePhone1.2b:
    20230606_15h59m52s_grim

@mbohun
Copy link
Author

mbohun commented Jun 9, 2023

BUG, causing apx. 700mb of RAM (and 23 processes) being used already on PineTab2 startup:
Calendar_Reminders_700mb_BUG_on_boot

@mbohun
Copy link
Author

mbohun commented Jun 10, 2023

Either STOP and DISABLE the akonadi service, or sudo pacman -Rns kdepim akonadi kmail to uninstall it for now.

UPDATE:

[mbohun@danctnix ~]$ sudo pacman -Rns kdepim akonadi kmail
[sudo] password for mbohun: 
error: target not found: kdepim
[mbohun@danctnix ~]$ sudo pacman -Rns akonadi kmail
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: removing akonadi breaks dependency 'akonadi' required by kdepim-runtime
[mbohun@danctnix ~]$ sudo pacman -Rns kdepim-runtime akonadi kmail
checking dependencies...
error: failed to prepare transaction (could not satisfy dependencies)
:: removing kdepim-runtime breaks dependency 'kdepim-runtime' required by kalendar
[mbohun@danctnix ~]$ sudo pacman -Rns kdepim-runtime akonadi kmail kalendar
checking dependencies...
:: qt5-base optionally requires mariadb-libs: MariaDB driver
:: qt6-base optionally requires mariadb-libs: MariaDB driver

Packages (11) kdav-1:5.106.0-1  libkolabxml-1.2.1-2  mariadb-10.11.3-1  mariadb-clients-10.11.3-1  mariadb-libs-10.11.3-1  qt5-networkauth-5.15.9-1  xerces-c-3.2.4-2  akonadi-23.04.1-1  kalendar-23.04.1-1  kdepim-runtime-23.04.1-1
              kmail-23.04.1-1

Total Removed Size:  410.93 MiB

:: Do you want to remove these packages? [Y/n] 

@nmschulte
Copy link

Which [QT] dev packages are required to build proton-bridge on Debian/Mobian?

@mbohun
Copy link
Author

mbohun commented Jun 13, 2023

Which [QT] dev packages are required to build proton-bridge on Debian/Mobian?

@nmschulte well, we can try building the qt GUI too, but so far i met only users that built and used the proton-bridge without the GUI: https://github.com/ProtonMail/proton-bridge/blob/master/BUILDS.md#build-bridge-without-gui

HOWEVER we can try to build it with qt GUI too, 3 of my boxes, run qt based desktop environments:

  • ROCKPro64: manjaro/plasma
  • PineBookPro: (manjaro/plasma)
  • PineTab2: (Arch/plasma)
  • and PinePhone1.2b, PinePhonePro can be tested with some distro that uses plasma-mobile too (although i am not using plasma-mobile on phones myself)

I m going to try to build proton-bridge with and without the qt GUI this week, and add the notes in here. Plus there might be already some "unofficial" Flatpak of proton-bridge too, in case you are too impatient, and want to look at that one, perhaps that Flatpak might have its build exposed somewhere on github, or some other site.
Depending on how exactly it is built (any existing build native or Flatpak) one could in theory lookup the qt libs either with nm or ldd ? Either directly the qt libs, or first find which symbols (qt functions are present inside the exisiting binary, and then mtch those qt symbols/functions to the qt libs they are part of?).

May i ask what hardware platform are you using?

@nmschulte
Copy link

nmschulte commented Jun 13, 2023

May i ask what hardware platform are you using?

I've tried building on PinePhone Pro; the build-nogui target builds fine, but the build target requires some hoop-jumping: setting an env var like ..._FORCE_SYSTEM_..., and still fails w/ vcpkg errors (which I do not have available that the moment).

@mbohun
Copy link
Author

mbohun commented Jun 14, 2023

@nmschulte are you building against the right version (branch) of that Gluon component?
As described here: ProtonMail/proton-bridge#323 (comment)

I have really no idea, why they can't simply create a normal arm64 Makefile / Makefile targets, or at least a simple README file how to build on arm64.

@mbohun
Copy link
Author

mbohun commented Jun 19, 2023

The Return of the Living Death?

[mbohun@danctnix ~]$ sudo pacman -Syu
:: Synchronizing package databases...
 danctnix is up to date
 core is up to date
 extra is up to date
 alarm is up to date
 aur is up to date
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Packages (348) a52dec-0.8.0-2  aalib-1.4rc5-16  abseil-cpp-20230125.3-1  akonadi-calendar-23.04.2-1  akonadi-contacts-23.04.2-1  akonadi-import-wizard-23.04.2-1  akonadi-mime-23.04.2-1  akonadi-notes-23.04.2-1  akonadi-search-23.04.2-1
               alligator-23.04.2-1  alsa-card-profiles-1:0.3.71-2  angelfish-23.04.2-1  archlinux-appstream-data-20230526-1  aribb24-1.0.3-3  ark-23.04.2-1  at-spi2-core-2.48.3-1  attica-5.107.0-1  avahi-1:0.8+r22+gfd482a7-1
               babl-0.1.106-1  baloo-5.107.0-1  baloo-widgets-23.04.2-1  bash-5.1.016-4  bluez-qt-5.107.0-1  breeze-icons-5.107.0-1  btrfs-progs-6.3.1-1  ca-certificates-mozilla-3.90-1  calendarsupport-23.04.2-1
               chromium-114.0.5735.133-1  colord-kde-23.04.2-1  cpupower-6.3-2  cups-1:2.4.5-1  cups-filters-1.28.17-4  curl-8.1.2-1  dav1d-1.2.1-1  db-6.2.32-1  dbus-1.14.8-1  dbus-glib-0.112-3  dbus-python-1.3.2-2  diffutils-3.10-1
               djvulibre-3.5.28-5  dolphin-23.04.2-1  dolphin-plugins-23.04.2-1  duktape-2.7.0-6  elisa-23.04.2-1  eventviews-23.04.2-1  exiv2-0.28.0-1  f2fs-tools-1.16.0-2  ffmpeg-2:6.0-8  ffmpeg4.4-4.4.4-1  filelight-23.04.2-1
               firefox-114.0.1-1  firewalld-1.3.3-1  frameworkintegration-5.107.0-1  fribidi-1.0.13-2  fwupd-1.9.2-2  gc-8.2.4-1  gegl-0.4.44-3  ghostwriter-23.04.2-1  gimp-2.10.34-2  git-2.41.0-1  glib2-2.76.3-1  glslang-12.2.0-1
               gperftools-2.10-3  grantleetheme-23.04.2-1  gst-plugins-bad-1.22.3-6  gst-plugins-bad-libs-1.22.3-6  gst-plugins-base-1.22.3-6  gst-plugins-base-libs-1.22.3-6  gst-plugins-good-1.22.3-6  gstreamer-1.22.3-6
               gtk-update-icon-cache-1:4.10.4-1  gtk3-1:3.24.38-1  gwenview-23.04.2-1  hidapi-0.14.0-1  hwdata-0.371-1  imagemagick-7.1.1.11-2  imath-3.1.9-1  incidenceeditor-23.04.2-1  iputils-20221126-2  kaccounts-integration-23.04.2-1
               kactivities-5.107.0-1  kactivities-stats-5.107.0-1  kalk-23.04.2-1  karchive-5.107.0-1  kate-23.04.2-1  kauth-5.107.0-1  kbd-2.6.0-1  kbookmarks-5.107.0-1  kcalendarcore-5.107.0-1  kcalutils-23.04.2-1  kcmutils-5.107.0-1
               kcodecs-5.107.0-1  kcompletion-5.107.0-1  kconfig-5.107.0-1  kconfigwidgets-5.107.0-1  kcontacts-1:5.107.0-1  kcoreaddons-5.107.0-1  kcrash-5.107.0-1  kdbusaddons-5.107.0-1  kdeclarative-5.107.0-1  kdeconnect-23.04.2-1
               kded-5.107.0-1  kdegraphics-mobipocket-23.04.2-1  kdegraphics-thumbnailers-23.04.2-1  kdelibs4support-5.107.0-1  kdenetwork-filesharing-23.04.2-1  kdepim-addons-23.04.2-1  kdesu-5.107.0-1  kdialog-23.04.2-1
               kdnssd-5.107.0-1  kemoticons-5.107.0-1  kfilemetadata-5.107.0-1  kglobalaccel-5.107.0-1  kguiaddons-5.107.0-1  kholidays-1:5.107.0-1  ki18n-5.107.0-1  kiconthemes-5.107.0-1  kidentitymanagement-23.04.2-1
               kidletime-5.107.0-1  kimap-23.04.2-1  kio-5.107.0-2  kio-admin-23.04.2-1  kio-extras-23.04.2-1  kirigami2-5.107.0-1  kitemmodels-5.107.0-1  kitemviews-5.107.0-1  kitinerary-23.04.2-2  kjobwidgets-5.107.0-1
               kjournald-23.04.2-1  kjs-5.107.0-1  kldap-23.04.2-1  kmail-account-wizard-23.04.2-1  kmailtransport-23.04.2-1  kmbox-23.04.2-1  kmime-23.04.2-1  kmines-23.04.2-1  knewstuff-5.107.0-1  knotifications-5.107.0-1
               knotifyconfig-5.107.0-1  kolourpaint-23.04.2-1  konsole-23.04.2-1  kontactinterface-23.04.2-1  kpackage-5.107.0-1  kparts-5.107.0-1  kpat-23.04.2-1  kpeople-5.107.0-1  kpimtextedit-23.04.2-1  kpkpass-23.04.2-1
               kpty-5.107.0-1  kquickcharts-5.107.0-1  krecorder-23.04.2-1  kross-5.107.0-1  krunner-5.107.0-1  ksanecore-23.04.2-1  kservice-5.107.0-1  ksmtp-23.04.2-1  ksystemlog-23.04.2-1  ktextaddons-1.3.2-1  ktexteditor-5.107.0-1
               ktextwidgets-5.107.0-1  ktnef-23.04.2-1  kunitconversion-5.107.0-1  kwallet-5.107.0-1  kwalletmanager-23.04.2-1  kwayland-5.107.0-1  kweather-23.04.2-1  kwidgetsaddons-5.107.0-1  kwin-5.27.5-3  kwindowsystem-5.107.0-1
               kxmlgui-5.107.0-1  libakonadi-23.04.2-2  libatasmart-0.19-6  libavc1394-0.5.4-6  libblockdev-2.28-4  libbytesize-2.8-2  libcaca-0.99.beta20-2  libcdio-paranoia-10.2+2.0.1-3  libcups-1:2.4.5-1  libdatrie-0.2.13-4
               libdc1394-2.2.7-1  libdca-0.0.7-2  libde265-1.0.12-1  libdv-1.0.0-11  libdvdnav-6.1.1-2  libdvdread-6.1.3-2  libepoxy-1.5.10-2  libexif-0.6.24-2  libgexiv2-0.14.1-1  libgme-0.6.3-4  libgravatar-23.04.2-1  libgusb-0.4.6-1
               libheif-1.16.2-1  libimobiledevice-1.3.0-9  libjcat-0.1.14-1  libjxl-0.8.2-1  libkdcraw-23.04.2-1  libkdegames-23.04.2-1  libkdepim-23.04.2-1  libkexiv2-23.04.2-1  libkgapi-23.04.2-1  libkleo-23.04.2-1  libksane-23.04.2-1
               libksieve-23.04.2-1  libmd-1.1.0-1  libmicrohttpd-0.9.77-1  libmpcdec-1:0.1+r475-4  libmpeg2-0.5.1-8  libnghttp2-1.54.0-1  libpgm-5.3.128-3  libpipewire-1:0.3.71-2  libplist-2.3.0-2  libraw-0.21.1-2  librsvg-2:2.56.1-1
               libspiro-1:20221101-2  libsysprof-capture-3.48.0-2  libthai-0.1.29-3  libtheora-1.1.1-6  libtiff-4.5.1-1  libtommath-1.2.0-4  libtraceevent-1:1.7.3-1  libtracefs-1.7.0-1  liburing-2.4-1  libusbmuxd-2.0.2-3
               libwacom-2.7.0-1  libwbclient-4.18.3-1  libwebp-1.3.0-3  libx11-1.8.6-1  libxcrypt-4.4.35-1  luajit-2.1.0.beta3.r481.g51fb2f2c-1  mailcap-2.1.54-1  mailcommon-23.04.2-1  mailimporter-23.04.2-1  mbox-importer-23.04.2-1
               mesa-23.1.2-1  messagelib-23.04.2-1  mjpegtools-2.2.1-2  mkinitcpio-36-1  modemmanager-qt-5.107.0-1  mpfr-4.2.0.p9-1  ncurses-6.4_20230520-1  neochat-23.04.2-1  neon-0.32.5-2  nettle-3.9.1-1
               networkmanager-openvpn-1.10.2-3  networkmanager-qt-5.107.0-1  nmap-7.94-1  noto-fonts-20230601-1  nss-3.90-1  ocl-icd-2.3.2-1  okular-23.04.2-1  openexr-3.1.8-1  openmpi-4.1.5-2  openssh-9.3p1-2.1  openssl-3.1.1-1
               openvpn-2.6.5-1  orc-0.4.34-1  ostree-2023.3-1  pacman-6.0.2-7  pam-1.5.3-3  perf-6.3-2  perl-5.36.1-2  pim-data-exporter-23.04.2-1  pim-sieve-editor-23.04.2-1  pimcommon-23.04.2-1  pipewire-1:0.3.71-2
               pipewire-alsa-1:0.3.71-2  pipewire-audio-1:0.3.71-2  pipewire-jack-1:0.3.71-2  pipewire-pulse-1:0.3.71-2  plasma-framework-5.107.0-1  poppler-23.06.0-1  poppler-glib-23.06.0-1  poppler-qt5-23.06.0-1  prison-5.107.0-1
               purpose-5.107.0-1  python-3.11.3-2  python-gobject-3.44.1-4  qpdf-11.4.0-1  qqc2-desktop-style-5.107.0-1  qt5-base-5.15.10+kde+r129-1  qt5-charts-5.15.10-1  qt5-declarative-5.15.10+kde+r26-1  qt5-graphicaleffects-5.15.10-1
               qt5-location-5.15.10+kde+r4-1  qt5-multimedia-5.15.10+kde+r3-1  qt5-quickcontrols-5.15.10-1  qt5-quickcontrols2-5.15.10+kde+r6-1  qt5-script-5.15.14-2  qt5-sensors-5.15.10-1  qt5-speech-5.15.10+kde+r1-1
               qt5-svg-5.15.10+kde+r8-1  qt5-tools-5.15.10+kde+r3-1  qt5-translations-5.15.10-1  qt5-virtualkeyboard-5.15.10-1  qt5-wayland-5.15.10+kde+r51-1  qt5-webchannel-5.15.10+kde+r3-1  qt5-webengine-5.15.14-2
               qt5-webview-5.15.10-1  qt5-x11extras-5.15.10-1  qt6-5compat-6.5.1-1  qt6-base-6.5.1-2  qt6-declarative-6.5.1-1  qt6-imageformats-6.5.1-1  qt6-svg-6.5.1-1  qt6-translations-6.5.1-1  qt6-wayland-6.5.1-1
               qtkeychain-qt5-0.14.1-1  rav1e-0.6.6-1  samba-4.18.3-1  signon-kwallet-extension-23.04.2-1  simple-scan-44.0-2  skanlite-23.04.2-1  smbclient-4.18.3-1  solid-5.107.0-1  sonnet-5.107.0-1  spandsp-0.0.6-5
               spectacle-23.04.2-1  sweeper-23.04.2-1  syndication-5.107.0-1  syntax-highlighting-5.107.0-1  systemd-253.5-1  systemd-libs-253.5-1  systemd-sysvcompat-253.5-1  telegram-desktop-4.8.4-1  threadweaver-5.107.0-1
               thunderbird-102.12.0-1  tmux-3.3_a-7  tracker3-3.5.3-1  ttf-hack-3.003-6  udisks2-2.9.4-4  usbutils-015-3  util-linux-2.39-9  util-linux-libs-2.39-9  v4l-utils-1.24.1-2  vlc-3.0.18-11  vulkan-headers-1:1.3.253-1
               vulkan-icd-loader-1.3.251-1  vulkan-mesa-layers-23.1.2-1  vulkan-panfrost-23.1.2-1  wayland-utils-1.2.0-1  wildmidi-0.4.5-2  xfsprogs-6.3.0-1  xkeyboard-config-2.39-1  xorg-xrdb-1.2.2-1  xorg-xwayland-23.1.2-1
               xorgproto-2023.2-1  zbar-0.23.90-3  zeromq-4.3.4-4

Total Download Size:    769.39 MiB
Total Installed Size:  3284.18 MiB
Net Upgrade Size:        20.39 MiB

:: Proceed with installation? [Y/n] 

@mbohun
Copy link
Author

mbohun commented Jun 27, 2023

[mbohun@danctnix ~]$ sudo pacman -Syu
[sudo] password for mbohun: 
:: Synchronizing package databases...
 danctnix is up to date
 core is up to date
 extra is up to date
 alarm is up to date
 aur is up to date
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Packages (420) a52dec-0.8.0-2  aalib-1.4rc5-17  abseil-cpp-20230125.3-1  akonadi-calendar-23.04.2-1  akonadi-contacts-23.04.2-1  akonadi-import-wizard-23.04.2-1  akonadi-mime-23.04.2-1  akonadi-notes-23.04.2-1  akonadi-search-23.04.2-1
               alligator-23.04.2-1  alsa-card-profiles-1:0.3.71-2  angelfish-23.04.2-1  archlinux-appstream-data-20230526-1  aribb24-1.0.3-3  ark-23.04.2-1  at-spi2-core-2.48.3-1  attica-5.107.0-1  avahi-1:0.8+r22+gfd482a7-1
               babl-0.1.106-1  baloo-5.107.0-1  baloo-widgets-23.04.2-1  bash-5.1.016-4  bluedevil-1:5.27.6-1  bluez-qt-5.107.0-1  breeze-5.27.6-1  breeze-gtk-5.27.6-1  breeze-icons-5.107.0-1  breeze-plymouth-5.27.6-1
               btrfs-progs-6.3.2-1  ca-certificates-mozilla-3.90-1  calendarsupport-23.04.2-1  chromium-114.0.5735.133-1  colord-kde-23.04.2-1  cpupower-6.3-2  cups-1:2.4.6-1  cups-filters-1.28.17-4  curl-8.1.2-1  dav1d-1.2.1-1
               db-6.2.32-1  dbus-1.14.8-1  dbus-glib-0.112-3  dbus-python-1.3.2-2  ddcutil-1.4.1-1  diffutils-3.10-1  discover-5.27.6-1  djvulibre-3.5.28-5  dolphin-23.04.2-1  dolphin-plugins-23.04.2-1  drkonqi-5.27.6-1  duktape-2.7.0-6
               elisa-23.04.2-1  eventviews-23.04.2-1  exiv2-0.28.0-2  f2fs-tools-1.16.0-2  ffmpeg-2:6.0-8  ffmpeg4.4-4.4.4-1  filelight-23.04.2-1  firefox-114.0.2-1  firewalld-1.3.3-1  flac-1.4.3-1  flatpak-kcm-5.27.6-1
               fluidsynth-2.3.3-1  frameworkintegration-5.107.0-1  freetype2-2.13.1-1  fribidi-1.0.13-2  fwupd-1.9.2-2  gc-8.2.4-1  gegl-0.4.46-1  ghostscript-10.01.2-1  ghostwriter-23.04.2-1  gimp-2.10.34-2  git-2.41.0-1
               glib-networking-1:2.76.0-2  glib2-2.76.3-1  glslang-12.2.0-1  gperftools-2.10-3  grantleetheme-23.04.2-1  grim-1.4.1-1  gst-plugins-bad-1.22.4-1  gst-plugins-bad-libs-1.22.4-1  gst-plugins-base-1.22.4-1
               gst-plugins-base-libs-1.22.4-1  gst-plugins-good-1.22.4-1  gstreamer-1.22.4-1  gtk-update-icon-cache-1:4.10.4-1  gtk3-1:3.24.38-1  gwenview-23.04.2-1  hidapi-0.14.0-1  hwdata-0.371-1  iana-etc-20230524-1
               imagemagick-7.1.1.12-1  imath-3.1.9-1  incidenceeditor-23.04.2-1  iputils-20221126-2  kaccounts-integration-23.04.2-1  kactivities-5.107.0-1  kactivities-stats-5.107.0-1  kactivitymanagerd-5.27.6-1  kalk-23.04.2-1
               karchive-5.107.0-1  kate-23.04.2-1  kauth-5.107.0-1  kbd-2.6.0-1  kbookmarks-5.107.0-1  kcalendarcore-5.107.0-1  kcalutils-23.04.2-1  kcmutils-5.107.0-1  kcodecs-5.107.0-1  kcompletion-5.107.0-1  kconfig-5.107.0-1
               kconfigwidgets-5.107.0-1  kcontacts-1:5.107.0-1  kcoreaddons-5.107.0-1  kcrash-5.107.0-1  kdbusaddons-5.107.0-1  kde-cli-tools-5.27.6-1  kde-gtk-config-5.27.6-1  kdeclarative-5.107.0-1  kdeconnect-23.04.2-1
               kdecoration-5.27.6-1  kded-5.107.0-1  kdegraphics-mobipocket-23.04.2-1  kdegraphics-thumbnailers-23.04.2-1  kdelibs4support-5.107.0-1  kdenetwork-filesharing-23.04.2-1  kdepim-addons-23.04.2-1  kdeplasma-addons-5.27.6-1
               kdesu-5.107.0-1  kdialog-23.04.2-1  kdnssd-5.107.0-1  kemoticons-5.107.0-1  kfilemetadata-5.107.0-1  kgamma5-5.27.6-1  kglobalaccel-5.107.0-1  kguiaddons-5.107.0-1  kholidays-1:5.107.0-1  khotkeys-5.27.6-1  ki18n-5.107.0-1
               kiconthemes-5.107.0-1  kidentitymanagement-23.04.2-1  kidletime-5.107.0-1  kimap-23.04.2-1  kinfocenter-5.27.6-1  kio-5.107.0-2  kio-admin-23.04.2-1  kio-extras-23.04.2-1  kirigami2-5.107.0-1  kitemmodels-5.107.0-1
               kitemviews-5.107.0-1  kitinerary-23.04.2-2  kjobwidgets-5.107.0-1  kjournald-23.04.2-1  kjs-5.107.0-1  kldap-23.04.2-1  kmail-account-wizard-23.04.2-1  kmailtransport-23.04.2-1  kmbox-23.04.2-1  kmenuedit-5.27.6-1
               kmime-23.04.2-1  kmines-23.04.2-1  knewstuff-5.107.0-1  knotifications-5.107.0-1  knotifyconfig-5.107.0-1  kolourpaint-23.04.2-1  konsole-23.04.2-1  kontactinterface-23.04.2-1  kpackage-5.107.0-1  kparts-5.107.0-1
               kpat-23.04.2-1  kpeople-5.107.0-1  kpimtextedit-23.04.2-1  kpipewire-5.27.6-1  kpkpass-23.04.2-1  kpty-5.107.0-1  kquickcharts-5.107.0-1  krecorder-23.04.2-1  kross-5.107.0-1  krunner-5.107.0-1  ksanecore-23.04.2-1
               kscreen-5.27.6-1  kscreenlocker-5.27.6-1  kservice-5.107.0-1  ksmtp-23.04.2-1  ksshaskpass-5.27.6-1  ksystemlog-23.04.2-1  ksystemstats-5.27.6-1  ktextaddons-1.3.2-1  ktexteditor-5.107.0-1  ktextwidgets-5.107.0-1
               ktnef-23.04.2-1  kunitconversion-5.107.0-1  kwallet-5.107.0-1  kwallet-pam-5.27.6-1  kwalletmanager-23.04.2-1  kwayland-5.107.0-1  kwayland-integration-5.27.6-1  kweather-23.04.2-1  kwidgetsaddons-5.107.0-1  kwin-5.27.6-1
               kwindowsystem-5.107.0-1  kwrited-5.27.6-1  kxmlgui-5.107.0-1  layer-shell-qt-5.27.6-1  libakonadi-23.04.2-2  libatasmart-0.19-6  libavc1394-0.5.4-6  libblockdev-2.28-4  libbytesize-2.8-2  libcaca-0.99.beta20-2
               libcdio-paranoia-10.2+2.0.1-3  libcups-1:2.4.6-1  libdatrie-0.2.13-4  libdc1394-2.2.7-1  libdca-0.0.7-2  libde265-1.0.12-1  libdv-1.0.0-11  libdvdnav-6.1.1-2  libdvdread-6.1.3-2  libepoxy-1.5.10-2  libexif-0.6.24-2
               libgexiv2-0.14.1-1  libgme-0.6.3-4  libgravatar-23.04.2-1  libgusb-0.4.6-1  libheif-1.16.2-1  libimobiledevice-1.3.0-9  libjcat-0.1.14-1  libjxl-0.8.2-1  libkdcraw-23.04.2-1  libkdegames-23.04.2-1  libkdepim-23.04.2-1
               libkexiv2-23.04.2-1  libkgapi-23.04.2-1  libkleo-23.04.2-1  libksane-23.04.2-1  libkscreen-5.27.6-1  libksieve-23.04.2-1  libksysguard-5.27.6-1  libmd-1.1.0-1  libmicrohttpd-0.9.77-1  libmm-glib-1.20.6-1
               libmpcdec-1:0.1+r475-4  libmpeg2-0.5.1-8  libnghttp2-1.54.0-1  libopenmpt-0.7.2-1  libpgm-5.3.128-3  libpipewire-1:0.3.71-2  libplist-2.3.0-2  libpng-1.6.40-1  libproxy-0.5.2-1  libraw-0.21.1-2  librsvg-2:2.56.1-1
               libspiro-1:20221101-2  libssh2-1.11.0-1  libsysprof-capture-3.48.0-2  libthai-0.1.29-3  libtheora-1.1.1-6  libtiff-4.5.1-1  libtommath-1.2.0-4  libtraceevent-1:1.7.3-1  libtracefs-1.7.0-1  liburing-2.4-1
               libusbmuxd-2.0.2-3  libwacom-2.7.0-1  libwbclient-4.18.3-1  libwebp-1.3.0-3  libx11-1.8.6-1  libxcrypt-4.4.35-1  libzip-1.10.0-1  linux-pinetab2-6.3.8-1  luajit-2.1.0.beta3.r481.g51fb2f2c-1  mailcap-2.1.54-1
               mailcommon-23.04.2-1  mailimporter-23.04.2-1  mbox-importer-23.04.2-1  mesa-23.1.3-1  messagelib-23.04.2-1  milou-5.27.6-1  mjpegtools-2.2.1-2  mkinitcpio-36-1  modemmanager-1.20.6-1  modemmanager-qt-5.107.0-1
               mpfr-4.2.0.p9-1  ncurses-6.4_20230520-1  neochat-23.04.2-1  neon-0.32.5-2  nettle-3.9.1-1  networkmanager-openvpn-1.10.2-3  networkmanager-qt-5.107.0-1  nmap-7.94-1  noto-fonts-20230601-1  nss-3.90-1  ocl-icd-2.3.2-1
               okular-23.04.2-1  openexr-3.1.9-1  openmpi-4.1.5-2  openssh-9.3p1-2.1  openssl-3.1.1-1  openvpn-2.6.5-1  orc-0.4.34-1  ostree-2023.4-2  oxygen-5.27.6-1  oxygen-sounds-5.27.6-1  pacman-6.0.2-7  pam-1.5.3-3  pcsclite-2.0.0-1
               perf-6.3-2  perl-5.36.1-2  pim-data-exporter-23.04.2-1  pim-sieve-editor-23.04.2-1  pimcommon-23.04.2-1  pipewire-1:0.3.71-2  pipewire-alsa-1:0.3.71-2  pipewire-audio-1:0.3.71-2  pipewire-jack-1:0.3.71-2
               pipewire-pulse-1:0.3.71-2  plasma-browser-integration-5.27.6-1  plasma-desktop-5.27.6-1  plasma-disks-5.27.6-1  plasma-firewall-5.27.6-1  plasma-framework-5.107.0-1  plasma-integration-5.27.6-1  plasma-nm-5.27.6-1
               plasma-pa-5.27.6-1  plasma-sdk-5.27.6-1  plasma-systemmonitor-5.27.6-1  plasma-thunderbolt-5.27.6-1  plasma-vault-5.27.6-1  plasma-wayland-session-5.27.6-1  plasma-welcome-5.27.6-1  plasma-workspace-5.27.6-1
               plasma-workspace-wallpapers-5.27.6-1  plymouth-kcm-5.27.6-1  polkit-kde-agent-5.27.6-1  poppler-23.06.0-1  poppler-glib-23.06.0-1  poppler-qt5-23.06.0-1  powerdevil-5.27.6-3  prison-5.107.0-1  procps-ng-4.0.3-1
               purpose-5.107.0-1  python-3.11.3-2  python-gobject-3.44.1-4  qpdf-11.4.0-2  qqc2-desktop-style-5.107.0-1  qt5-base-5.15.10+kde+r129-3  qt5-charts-5.15.10-1  qt5-declarative-5.15.10+kde+r26-1  qt5-graphicaleffects-5.15.10-1
               qt5-location-5.15.10+kde+r4-1  qt5-multimedia-5.15.10+kde+r3-1  qt5-quickcontrols-5.15.10-1  qt5-quickcontrols2-5.15.10+kde+r6-1  qt5-script-5.15.14-2  qt5-sensors-5.15.10-1  qt5-speech-5.15.10+kde+r1-1
               qt5-svg-5.15.10+kde+r8-1  qt5-tools-5.15.10+kde+r3-1  qt5-translations-5.15.10-1  qt5-virtualkeyboard-5.15.10-1  qt5-wayland-5.15.10+kde+r51-1  qt5-webchannel-5.15.10+kde+r3-1  qt5-webengine-5.15.14-2
               qt5-webview-5.15.10-1  qt5-x11extras-5.15.10-1  qt6-5compat-6.5.1-1  qt6-base-6.5.1-4  qt6-declarative-6.5.1-1  qt6-imageformats-6.5.1-1  qt6-svg-6.5.1-1  qt6-translations-6.5.1-1  qt6-wayland-6.5.1-1
               qtkeychain-qt5-0.14.1-1  rav1e-0.6.6-1  samba-4.18.3-1  sddm-0.20.0-1  sddm-kcm-5.27.6-1  sdl2-2.28.0-1  signon-kwallet-extension-23.04.2-1  simple-scan-44.0-2  skanlite-23.04.2-1  smbclient-4.18.3-1  solid-5.107.0-1
               sonnet-5.107.0-1  spandsp-0.0.6-5  spectacle-23.04.2-1  sweeper-23.04.2-1  syndication-5.107.0-1  syntax-highlighting-5.107.0-1  systemd-253.5-2  systemd-libs-253.5-2  systemd-sysvcompat-253.5-2  systemsettings-5.27.6-1
               telegram-desktop-4.8.4-1  threadweaver-5.107.0-1  thunderbird-102.12.0-1  tmux-3.3_a-7  tracker3-3.5.3-1  ttf-hack-3.003-6  udisks2-2.9.4-4  usbutils-015-3  util-linux-2.39-11  util-linux-libs-2.39-11  v4l-utils-1.24.1-2
               vlc-3.0.18-11  vulkan-headers-1:1.3.255-1  vulkan-icd-loader-1.3.255-1  vulkan-mesa-layers-23.1.3-1  vulkan-panfrost-23.1.3-1  vulkan-tools-1.3.255-1  wayland-utils-1.2.0-1  wildmidi-0.4.5-2
               xdg-desktop-portal-kde-5.27.6-1  xfsprogs-6.3.0-1  xkeyboard-config-2.39-1  xorg-xrdb-1.2.2-1  xorg-xwayland-23.1.2-1  xorgproto-2023.2-1  zbar-0.23.90-3  zeromq-4.3.4-4

Total Download Size:   1060.37 MiB
Total Installed Size:  3798.03 MiB
Net Upgrade Size:      -147.71 MiB

:: Proceed with installation? [Y/n] 

@mbohun
Copy link
Author

mbohun commented Jun 27, 2023

Screenshot_20230628_022809

@mbohun
Copy link
Author

mbohun commented Jun 30, 2023

BEFORE update:

[mbohun@danctnix ~]$ cat /boot/boot.scr

'Vwdp{l
       U-Boot boot scriptdif test ${devnum} -eq 1; then
        echo "Booting from SD"
        setenv linux_mmcdev 0
else
        echo "Booting from eMMC"
        setenv linux_mmcdev 1
fi

# If we have at least 2 partitions, then the 1st one is /boot, and / is #2
if part size mmc ${devnum} 2 none; then
        setenv rootpart 2
else
        setenv rootpart 1
        setenv bootdir "/boot"
fi

setenv bootargs loglevel=4 root=/dev/mmcblk${linux_mmcdev}p${rootpart} rw rootwait

echo "Loading kernel..."
load mmc ${devnum}:1 ${ramdisk_addr_r} ${bootdir}/Image.gz

echo "Uncompressing kernel..."
unzip ${ramdisk_addr_r} ${kernel_addr_r}

echo "Loading initramfs..."
load mmc ${devnum}:1 ${ramdisk_addr_r} ${bootdir}/initramfs-linux.img
setenv ramdisk_size ${filesize}

echo "Loading dtb..."
load mmc ${devnum}:1 ${fdt_addr_r} ${bootdir}/dtbs/${fdtfile}

echo "Booting..."
booti ${kernel_addr_r} ${ramdisk_addr_r}:${ramdisk_size} ${fdt_addr_r}
[mbohun@danctnix ~]$ sudo pacman -Syu
[sudo] password for mbohun: 
:: Synchronizing package databases...
 danctnix is up to date
 core is up to date
 extra is up to date
 alarm is up to date
 aur is up to date
:: Starting full system upgrade...
resolving dependencies...
looking for conflicting packages...

Packages (7) chromium-114.0.5735.198-1  iproute2-6.4.0-1  linux-firmware-20230625.ee91452d-1  linux-firmware-whence-20230625.ee91452d-1  qt6-declarative-6.5.1-2  util-linux-2.39.1-1  util-linux-libs-2.39.1-1

Total Download Size:   164.59 MiB
Total Installed Size:  833.26 MiB
Net Upgrade Size:        1.81 MiB

:: Proceed with installation? [Y/n] 

AFTER update, but BEFORE a reboot:

[mbohun@danctnix ~]$ cat /boot/boot.scr
'Vwdp{l
       U-Boot boot scriptdif test ${devnum} -eq 1; then
        echo "Booting from SD"
        setenv linux_mmcdev 0
else
        echo "Booting from eMMC"
        setenv linux_mmcdev 1
fi

# If we have at least 2 partitions, then the 1st one is /boot, and / is #2
if part size mmc ${devnum} 2 none; then
        setenv rootpart 2
else
        setenv rootpart 1
        setenv bootdir "/boot"
fi

setenv bootargs loglevel=4 root=/dev/mmcblk${linux_mmcdev}p${rootpart} rw rootwait

echo "Loading kernel..."
load mmc ${devnum}:1 ${ramdisk_addr_r} ${bootdir}/Image.gz

echo "Uncompressing kernel..."
unzip ${ramdisk_addr_r} ${kernel_addr_r}

echo "Loading initramfs..."
load mmc ${devnum}:1 ${ramdisk_addr_r} ${bootdir}/initramfs-linux.img
setenv ramdisk_size ${filesize}

echo "Loading dtb..."
load mmc ${devnum}:1 ${fdt_addr_r} ${bootdir}/dtbs/${fdtfile}

echo "Booting..."
booti ${kernel_addr_r} ${ramdisk_addr_r}:${ramdisk_size} ${fdt_addr_r}

@baarkerlounger
Copy link

Have you been able to build Proton-bridge as a flatpak? Would this help with flathub/ch.protonmail.protonmail-bridge#28?

@mbohun
Copy link
Author

mbohun commented Aug 21, 2023

Have you been able to build Proton-bridge as a flatpak? Would this help with flathub/ch.protonmail.protonmail-bridge#28?

@baarkerlounger sorry, i missed your comment. no, i haven't tried building a flatpak (yet).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment