0

I saw this video here https://www.youtube.com/watch?v=EO38PzVjvro

And I wanted to follow it to create my own HourBoost bot. So I purchased a £3 Ubuntu VPS from OVH and tried to follow his video directly and it doesn't work. I am beyond confused as he is using the full OS and mine is just the terminal. I am extremely new to this so I don't even know where I have gone wrong.

So far I'm here

Picture of my directory

Could anyone take the time to help me?

I don't think its that complicated considering the video is only 5 minutes.

AnotherKiwiGuy
  • 4,370
  • 1
  • 21
  • 38
  • Could you please post text files, dialogue messages, and program output listings as text, not as images? To achieve the latter two you can either 1) select, copy & paste the dialogue text or terminal content or 2) save the program output to a file and use that. Longer listings (>100 lines) should be uploaded to a pastie service and linked to in the question. Thanks. – David Foerster Nov 18 '16 at 15:27
  • Could you please add a little more detail? What exactly did you do, what did you want to achieve and what happened instead? Did you encounter any warning or error messages? Please reproduce them in their entirety in your question. How is your question related to steam? (see How do I ask a good question?) – David Foerster Nov 18 '16 at 15:27

1 Answers1

2

Installing node is well documented on the NodeJS site.

Basic installation for version 7.x (that you're attempting):

  1. curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
  2. sudo apt-get install -y nodejs

If you need to compile your own addons, you will also need to run:

  • sudo apt-get install -y build-essential

I hope that helps!

Source: https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions

AnotherKiwiGuy
  • 4,370
  • 1
  • 21
  • 38