mirror of
https://github.com/VSCodium/vscodium.github.io.git
synced 2025-12-10 03:54:23 -06:00
Fix rpm repo instructions (#102)
* settings for my Frontmatter config * updated rpm repo install instructions
This commit is contained in:
parent
b6748cea51
commit
bddcfae719
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,4 @@
|
||||
_site/
|
||||
frontmatter.json
|
||||
taxonomyDb.json
|
||||
pinnedItemsDb.json
|
||||
@ -150,22 +150,34 @@ sudo apt update && sudo apt install codium
|
||||
<a tabindex="-1" aria-hidden="true" id="rpm" href="#rpm"></a>
|
||||
### Install on Fedora / RHEL / CentOS / RockyLinux / OpenSUSE (rpm package):
|
||||
|
||||
Add the GPG key of the repository:
|
||||
|
||||
```bash
|
||||
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
||||
```
|
||||
|
||||
Add the repository:
|
||||
|
||||
- **Fedora/RHEL/CentOS/Rocky Linux**:
|
||||
```bash
|
||||
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/yum.repos.d/vscodium.repo
|
||||
```
|
||||
sudo tee -a /etc/yum.repos.d/vscodium.repo << 'EOF'
|
||||
[gitlab.com_paulcarroty_vscodium_repo]
|
||||
name=gitlab.com_paulcarroty_vscodium_repo
|
||||
baseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
repo_gpgcheck=1
|
||||
gpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
|
||||
metadata_expire=1h
|
||||
EOF
|
||||
```
|
||||
|
||||
- **OpenSUSE/SUSE**:
|
||||
```bash
|
||||
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/zypp/repos.d/vscodium.repo
|
||||
```
|
||||
sudo tee -a /etc/zypp/repos.d/vscodium.repo << 'EOF'
|
||||
[gitlab.com_paulcarroty_vscodium_repo]
|
||||
name=gitlab.com_paulcarroty_vscodium_repo
|
||||
baseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/
|
||||
enabled=1
|
||||
gpgcheck=1
|
||||
repo_gpgcheck=1
|
||||
gpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
|
||||
metadata_expire=1h
|
||||
EOF
|
||||
```
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user