Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alryaz/cvte-exceedshare-repack

Repackage MAXHUB / Exceed Share packages for use with Debian / Ubuntu
https://github.com/alryaz/cvte-exceedshare-repack

cvte interactive-whiteboard maxhub screen-share screen-sharing

Last synced: 2 days ago
JSON representation

Repackage MAXHUB / Exceed Share packages for use with Debian / Ubuntu

Awesome Lists containing this project

README

        

# cvte-exceedshare-debian

```bash
#!/bin/sh
# To add this repository please do:

if [ "$(whoami)" != "root" ]; then
SUDO=sudo
fi

KEYRING=/usr/share/keyrings/cvte.exceedshare.debian.gpg

${SUDO} apt-get update
${SUDO} apt-get -y install apt-transport-https
wget -qO- https://alryaz.github.io/cvte-exceedshare-debian/public.key | gpg --dearmor - | ${SUDO} tee $KEYRING >/dev/null
${SUDO} sh -c 'echo "deb [signed-by='$KEYRING'] https://alryaz.github.io/cvte-exceedshare-debian/repo/ debian main" > /etc/apt/sources.list.d/cvte.exceedshare.list'
${SUDO} apt-get update
```