chore: apt -> apt-get

This commit is contained in:
Kevin Yue 2022-05-26 14:11:38 +08:00
parent e6118af9f3
commit d9b2094edd
3 changed files with 7 additions and 7 deletions

View File

@ -42,7 +42,7 @@ Add the repository in the above table and install it with your favorite package
```sh ```sh
sudo add-apt-repository ppa:yuezk/globalprotect-openconnect sudo add-apt-repository ppa:yuezk/globalprotect-openconnect
sudo apt-get update sudo apt-get update
sudo apt install globalprotect-openconnect sudo apt-get install globalprotect-openconnect
``` ```
> For Linux Mint, you might need to import the GPG key with: `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7937C393082992E5D6E4A60453FC26B43838D761` if you encountered an error `gpg: keyserver receive failed: General error`. > For Linux Mint, you might need to import the GPG key with: `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7937C393082992E5D6E4A60453FC26B43838D761` if you encountered an error `gpg: keyserver receive failed: General error`.
@ -105,7 +105,7 @@ cd GlobalProtect-openconnect
> >
> ```sh > ```sh
> sudo add-apt-repository ppa:dwmw2/openconnect > sudo add-apt-repository ppa:dwmw2/openconnect
> sudo apt update > sudo apt-get update
> ``` > ```
Build and install with: Build and install with:

View File

@ -1,7 +1,7 @@
#!/bin/bash -e #!/bin/bash -e
sudo apt update sudo apt-get update
sudo apt install -y \ sudo apt-get install -y \
build-essential \ build-essential \
qtbase5-dev \ qtbase5-dev \
libqt5websockets5-dev \ libqt5websockets5-dev \

View File

@ -1,7 +1,7 @@
#!/bin/bash -e #!/bin/bash -e
sudo apt update sudo apt-get update
sudo apt install -y \ sudo apt-get install -y \
build-essential \ build-essential \
qtbase5-dev \ qtbase5-dev \
libqt5websockets5-dev \ libqt5websockets5-dev \