1Password: Difference between revisions

m Kangtain moved page Software/1Password to 1Password over redirect
Line 19: Line 19:


==Installasi==
==Installasi==
*Pertama instal curl dengan menjalankan perintah di bawah ini:
*[[1Password:Installasi di Ubuntu]]
 
*[[1Password:Installasi di Fedora]]
<syntaxhighlight lang="shell" >
sudo apt update
</syntaxhighlight>
 
<syntaxhighlight lang="shell">
sudo apt install curl
</syntaxhighlight>
 
*Next, add 1Password repository key to Ubuntu/Debian
 
<syntaxhighlight lang="shell">
curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/keyrings/1password-archive-keyring.gpg
</syntaxhighlight>
 
*Then create a repository file.
<syntaxhighlight lang="shell">
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/1password-archive-keyring.gpg] https://downloads.1password.com/linux/debian/amd64 stable main' | sudo tee /etc/apt/sources.list.d/1password.list
</syntaxhighlight>
 
*To verify packages signatures and make sure they’re authentic, add lines below:
<syntaxhighlight lang="shell" >
sudo mkdir -p /etc/debsig/policies/AC2D62742012EA22/
</syntaxhighlight>
 
<syntaxhighlight lang="shell">
curl -sS https://downloads.1password.com/linux/debian/debsig/1password.pol | sudo tee /etc/debsig/policies/AC2D62742012EA22/1password.pol
</syntaxhighlight>
 
<syntaxhighlight lang="shell">
sudo mkdir -p /usr/share/debsig/keyrings/AC2D62742012EA22
</syntaxhighlight>
 
<syntaxhighlight lang="shell">
curl -sS https://downloads.1password.com/linux/keys/1password.asc | sudo gpg --dearmor --output /usr/share/debsig/keyrings/AC2D62742012EA22/debsig.gpg
</syntaxhighlight>
 
*Terakhir, jalankan perintah di bawah ini untuk memperbarui dan menginstal 1Password
 
<syntaxhighlight lang="shell">
sudo apt update && sudo apt install 1password
</syntaxhighlight>


==Source==
==Source==