Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
Anonymous
3 years agoDifficulty with rpm-ostree install on Kionite
I just moved my family to 1password. Last night I was able to conduct a full rpm-ostree install of the 1password client on my Kionite Fedora 37 using:
```
cat > /etc/yum.repos.d/1password.repo ...
Anonymous
3 years agoI figured it out! The $basearch was missing from the end of the baseurl, because it wasn't commented out in the script I was running on the other computers. For anyone who needs this now, here are the steps:
All of this will have to be done with super user access. I am fairly certain there is a way to write the command below so it will work with sudo, but I just did all of this from sudo -s 'root' prompt. If someone has a way to write the below commands to use regular sudo, please let me know.
sudo -s
```
cat > /etc/yum.repos.d/1password.repo << EOF
[1password]
name=1Password Stable Channel
baseurl=https://downloads.1password.com/linux/rpm/stable/%5C$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey="https://downloads.1password.com/linux/keys/1password.asc"
gpgkey=file:///etc/pki/rpm-gpg/1password.asc
EOF
```
wget https://downloads.1password.com/linux/keys/1password.asc -O /etc/pki/rpm-gpg/1password.as
rpm-ostree install 1password