当前位置: 首页>>技术教程>>正文


如何在Linux系统上为比特币钱包生成随机单词密码

, , , , , , , ,

目的

在Linux系统上为比特币钱包生成随机单词密码。

操作系统和软件版本

  • 操作系统:-与Linux发行版无关

要求

安装单词列表文件可能需要对Linux系统的特权访问。

困难

简单

约定

  • -要求linux命令可以直接以root用户身份或通过使用root特权以root特权执行sudo命令
  • $-要求linux命令以常规non-privileged用户身份执行

说明

先决条件

首先,安装必备软件包:


UBUNTU / DEBIAN
# apt install wamerican-small git

CENTOS / REDHAT:
# yum install words git

FEDORA:
# dnf install words git

获取bitcoin-passphrase-generator.sh

使用git克隆bitcoin-passphrase-generatorgit存储库:


$ git clone https://github.com/linuxconfig/bitcoin-passphrase-generator.git
$ cd bitcoin-passphrase-generator/

生成随机的比特币密码

而在bitcoin-passphrase-generator目录中,您现在可以执行脚本以生成指定数量的随机关键字。

该脚本接受单个参数,该参数用于确定生成所需的随机单词的数量。例如:

生成五个随机关键字:


$ ./bitcoin-passphrase-generator.sh 5
Generating a random word list from 62887 words:
squabble segregation massive hosannas novellas

生成十个随机关键字:


$ ./bitcoin-passphrase-generator.sh 10
Generating a random word list from 62887 words:
sodded suspenseful restructures drum barrage porpoises iced feels capitalizes battening

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/7380.html,未经允许,请勿转载。