wavebox / waveboxapp

Wavebox, the revolutionary and feature-rich Chromium browser that's built for productive working across Google Workspaces, Microsoft Teams, ClickUp, Monday, Atlassian, Asana, AirTable, Slack, and every other web app you use to get work done.
https://wavebox.io
1.3k stars 135 forks source link

How to replace wavebox legacy key in Ubuntu 22.04 #1390

Closed yochaigal closed 2 years ago

yochaigal commented 2 years ago

After upgrading to Ubuntu 22.04 I received this warning on performing apt update:

W: https://download.wavebox.app/stable/linux/deb/amd64/InRelease: Key is stored in legacy trusted.gpg keyring (/etc/apt/trusted.gpg), see the DEPRECATION section in apt-key(8) for details.

I ran these commands to fix it:

gpg --keyserver keyserver.ubuntu.com --recv-keys A8DED955C50A5D22
gpg --output wavebox.gpg --export A8DED955C50A5D22
sudo cp wavebox.gpg /usr/share/keyrings

Then I edited this file: sudo vim /etc/apt/sources.list.d/wavebox-stable.list And replaced: deb [arch=amd64] https://download.wavebox.app/stable/linux/deb/ amd64/ with: deb [signed-by=/usr/share/keyrings/wavebox.gpg arch=amd64] https://download.wavebox.app/stable/linux/deb/ amd64/ I then ran: sudo apt update