1Password:Installasi di Ubuntu: Difference between revisions

Created page with "==Installasi== *Pertama instal curl dengan menjalankan perintah di bawah ini: <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> *The..."
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
==Installasi==
*Pertama instal curl dengan menjalankan perintah di bawah ini:
*Pertama instal curl dengan menjalankan perintah di bawah ini:


<syntaxhighlight lang="shell" >
sudo apt update
sudo apt update
</syntaxhighlight>


<syntaxhighlight lang="shell">
sudo apt install curl
sudo apt install curl
</syntaxhighlight>


*Next, add 1Password repository key to Ubuntu/Debian
*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
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.
*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
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:
*To verify packages signatures and make sure they’re authentic, add lines below:
<syntaxhighlight lang="shell" >
sudo mkdir -p /etc/debsig/policies/AC2D62742012EA22/
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
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
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
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
*Terakhir, jalankan perintah di bawah ini untuk memperbarui dan menginstal 1Password


<syntaxhighlight lang="shell">
sudo apt update && sudo apt install 1password
sudo apt update && sudo apt install 1password
== Source ==
</syntaxhighlight>
 
* [https://fossbytes.com/how-to-install-1password-on-linux/ fossbytes.com]
 
[[Category:Linux]]
[[Category:Ubuntu]]
[[Category:Software]]
[[Category:Tutorial]]