You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
618 B
12 lines
618 B
#!/bin/bash
|
|
cd /root
|
|
apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys CB2DE8E5
|
|
echo "deb https://download.onlyoffice.com/repo/debian squeeze main" > /etc/apt/sources.list.d/onlyoffice.list
|
|
wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add -
|
|
wget -c https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
|
apt update
|
|
apt install -y onlyoffice-desktopeditors
|
|
apt install -y /root/google-chrome-stable_current_amd64.deb
|
|
apt install -y /root/cts-4.0.0-104.ks1_amd64.deb
|
|
rm -f /root/google-chrome-stable_current_amd64.deb
|
|
rm -f /root/cts-4.0.0-104.ks1_amd64.deb
|