Quilibrium.one
SocialOfficial
Quilibrium Node Guide
Quilibrium Node Guide
  • 🖖Introduction
  • ✅Safety checks
  • đŸ“ŖAnnouncements
  • 🔗Links & Info
  • đŸ’ģBest server providers
  • đŸ’ģHardware requirements
  • 😎Q1 - Node Manager
  • ⚡Node Auto-installer
  • âŦ†ī¸Updating your node
  • âœ”ī¸Check your node info
  • 🔑Backup your private keys
  • đŸ“ĻBackup your node
  • 🔁Set up the gRPC calls
  • đŸ› ī¸Tools and scripts
  • 🔧Extra tools
  • 🔠Useful commands
  • â‰ī¸Troubleshooting
  • 📌Tutorials
    • Node
      • đŸ”ĸNode step by step installation
      • đŸŗInstalling the node on Docker
      • đŸĒŸInstalling the node and the qclient on Windows WSL
      • â†—ī¸Migrating the node to a new server
      • â„šī¸Running the node via binary file
      • Running a node cluster
      • ✅Reinstalling the node from scratch
      • âš™ī¸Managing your system resources
        • â˜‘ī¸Limiting your vCores usage
        • â˜‘ī¸Limiting your CPU usage
        • â˜‘ī¸Limiting the RAM assigned to each vCore
      • 🔄Switching from tmux to service
      • 💲Log your node balance every 1 hour
      • 🩷Escaping the "Pink Screen of Death"
      • 🔒Set up SSH keys
      • 🔒Creating a root login access
      • 👀Renting Servers Unveiled: Exploring Types and Processor Terminology
    • Qclient
      • Qclient commands
      • How to transfer QUIL
      • How to Bridge QUIL to WQUIL
      • How to retrieve your coin address after a failed bridging operation
  • 📂Archive
    • ⚡OLD - Node Auto-installer
    • đŸ”ĸOLD - Node step by step installation
    • 🔠OLD - Useful server commands
    • â‰ī¸OLD Troubleshooting
    • âŦ†ī¸OLD Updating your node
    • ⚡Importing an existing store folder for fast sync
    • â˜‘ī¸Changing the cpulimit value in release_autorun
  • âš ī¸Work in progress
  • 💜Want to say thank you?
Powered by GitBook
On this page
  • Activating WSL and installing Ubuntu
  • Installing the node
  • Installing the qclient
  1. Tutorials
  2. Node

Installing the node and the qclient on Windows WSL

PreviousInstalling the node on DockerNextMigrating the node to a new server

Last updated 1 month ago

Activating WSL and installing Ubuntu

Activate WSL on Windows to be able to run Linux and Ubuntu. Here is a great tutorial: (you just need to follow the first 7 minutes or so)

Once you have Linux available and Ubuntu installed, to access Ubuntu via terminal you run:

wsl -d Ubuntu

Installing the node

I have not personally tested this but I think once you are into Ubuntu you could simply install the Q1 - Node Manager and take it from there.

One issue you could have on Windows is related to option 1 in the menu (Prepare your server). That script does various operations on your machine that could throw errors for Windows.

If so, no problem, just move directly to option 2 and 3.

Remember, you can also follow the Node Auto-installer if the QONE menu is not working for you.

Finally, f you have issues with these automated scripts, simply follow the Node step by step installation instead.

Installing the qclient

The qclient is a software that allows you to manage your QUIL tokens without having to run a node.

If you want to install the qclient on Windows WSL without running a node simply follow these steps:

Create the ceremonyclient and client folders:

mkdir ceremonyclient && cd ceremonyclient && mkdir client && cd client

Set release OS and arch variables (change these if needed - on Windows WSL they shoudl be ok):

release_os="linux"
release_arch="amd64"

download qclient:

files=$(curl https://releases.quilibrium.com/qclient-release | grep $release_os-$release_arch)
for file in $files; do
    qclient_version=$(echo "$file" | cut -d '-' -f 2)
    if ! test -f "./$file"; then
        curl "https://releases.quilibrium.com/$file" > "$file"
        echo "... downloaded $file"
    fi
done
mv qclient-$qclient_version-$release_os-$release_arch qclient
chmod +x ./qclient

Done!

Now you should be able to use the Qclient commands

These will only work after v2.0

📌
đŸĒŸ
https://www.youtube.com/watch?v=vxTW22y8zV8
Cover

Want to say thank you?

CLICK TO DONATE