Skip to content

Latest commit

 

History

History
74 lines (49 loc) · 1.66 KB

INSTALL.md

File metadata and controls

74 lines (49 loc) · 1.66 KB

Passtrust Installation

For Linux

(#) : Run as root
($) : Run as normal user

Archlinux

NOTE: You can directly get a package from the AUR

# pacman -S ruby ruby-bundler
$ bundler install

Debian, Ubuntu and derivatives

# apt-get install ruby bundler
$ bundler install

To install the passtrust binary on your $PATH, run the following after running your distro-specific commands:

$ cd install-scripts
# ./linux-install

After the install script is completed, you should be able to use passtrust like any other command:

$ passtrust

For Android

Open the termux app and run the following commands:

$ apt install git ruby
$ git clone https://github.com/xorond/passtrust
$ cd passtrust
$ gem install bundler
$ bundle install

You can then run passtrust inside that directory with ruby passtrust. If you want to install it on your $PATH, run the following after the ones above:

$ cd install-scripts
$ ./android-install

You should now be able to use passtrust like any other command.

For Windows

  • Install Ruby

  • Get the latest release from the releases page

  • Extract the zip file

  • gem install bundler and then bundle install --without optional inside the extracted directory

  • ruby passtrust should work now.