Pactus | Install
System Specs
Section titled “System Specs”| Hardware | Requirement |
|---|---|
| CPU | 2 Cores |
| RAM | 4 GB |
| Disk | 50 GB |
Install Pactus Mainnet Validator (linux)
Section titled “Install Pactus Mainnet Validator (linux)”1. Download Binary & extract
Section titled “1. Download Binary & extract”#Downloadwget https://github.com/pactus-project/pactus/releases/download/v1.13.0/pactus-cli_1.13.0_linux_amd64.tar.gz
#Extracttar -xvzf pactus-cli_1.13.0_linux_amd64.tar.gz2. Initializing the Node
Section titled “2. Initializing the Node”cd pactus-cli_1.13.0/./pactus-daemon init
#Follow instruction, save your mnemonic, set wallet password ,val 32, save Validator Addresses, save Reward Address.3. Run node with systemd (change/edit your wallet password)
Section titled “3. Run node with systemd (change/edit your wallet password)”#create systemdcat > /etc/systemd/system/pactus.service << 'EOF'[Unit]Description=Pactus NodeAfter=network.target
[Service]Type=simpleUser=rootWorkingDirectory=/root/pactus-cli_1.13.0
ExecStart=/root/pactus-cli_1.13.0/pactus-daemon start \ --working-dir /root/pactus \ --password 'YOUR-WALLET-PASSWORD' \ --grpc 127.0.0.1:50051 \ --grpc-wallet
Restart=alwaysRestartSec=5LimitNOFILE=65535
StandardOutput=journalStandardError=journal
[Install]WantedBy=multi-user.targetEOF#start nodesudo systemctl enable pactus.servicesudo systemctl start pactus.service#check logsjournalctl -u pactus.service -flastUpdated: 2026-05-02