create account

Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands! by jerrybanfield

View this thread on: hive.blogpeakd.comecency.com
· @jerrybanfield · (edited)
$225.25
Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!
How do we setup our Steem witness and seed nodes if we have no Ubuntu Linux experience?  What are the exact commands we need to use to become a witness for Steem and get our servers online?  Hopefully this guide will make it ridiculously easy to get started in the command line interface even without ever having used Linux before!  To get to this tutorial, here are a few posts that will lay the foundation to go straight through this guide!  Skip ahead to just view the commands!

1. **Launch a Steem Witness Today** at https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today shows the list of posts most helpful to me for starting my Steem witness with **no previous experience using Ubuntu Linux** combined with an introduction to what is a witness, why become one, who are witnesses, and what else do we need to do besides maintain the server?
2. **Steem Witness Basic Training** at https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training goes deeper into everything about being a Steem witness with answers to every single question I encountered during my first months of learning to be a witness combined with 11 steps to start the server from zero.  The only thing missing from that post is the exact list of commands and troubleshooting which I share in this post!
3. **How to Start Getting Steem Witness Votes** at https://steemit.com/witness-category/@jerrybanfield/how-to-start-getting-steem-witness-votes looks inside the most challenging part of being a witness in earning votes.  I share what I did to get started and now primarily write posts like this to earn more votes along with participating in the comments, steemit.chat, and steemspeak.com.
4. **Steem Witness 14,542 Reporting For Duty** announces the launch of my witness server and campaign at https://steemit.com/witness-category/@jerrybanfield/steem-witness-14-542-reporting-for-duty which I hope is useful in creating a post to use as the URL when broadcasting a new witness to the network!

To begin, we need hosting and access to our Ubuntu Linux server usually with a username or root plus a password.  Long story short I have my hosting with @privex through witness @someguy123 with the server specs listed below.  See more hosting options in [Launch a Steem Witness today](https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today).

## My Witness and Seed Server Specifications!

64GB DDR4 RAM
2x Intel Xeon E5-2630 V3
2x 240GB SSDs
1Gbit/s connection

These servers are capable of handling a top 20 witness load of a block every 63 seconds with minimal misses and are much higher than are needed to run the very basics at a level less than the top 20!  If we want to make an effective campaign, it is easier to setup and launch our witness with servers able to serve at the very top instead of starting with something cheap and promising to upgrade.  In the event of a disaster or attack, every witness ideally would have servers capable of processing a block every 63 seconds ESPECIALLY every witness in the top 30 and preferably witnesses in the top 50.

# Guide Tips
___
* All commands will be shown in blockquotes starting with the passwd command below!
* Edits to files will also be shown in blockquotes.
* All comments will be shown next the text.
* This post shares what I did that worked for me as a beginner after spending weeks reading guides from those with much more advanced knowledge.  If you are a Linux expert reading this, I invite you to make your own tutorial and/or feedback on the steps I take!

![get a steem witness and seed online.png](https://steemitimages.com/DQmbqLQx2bZihA8bG3UtQuPyc29BAkyUk4X8vBmPYA2uSLM/get%20a%20steem%20witness%20and%20seed%20online.png)

# Ubuntu Linux Absolute Beginner Basics!
___
* Left click highlights and copies text.
* Right click pasts text.

# Access the Server!
___
* On Windows 10, download Putty at [https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html](https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html) to get connected.  Enter your username and IP address to get started.

![putty initial connection.jpg](https://steemitimages.com/DQmTec9euGpszViqbr8ERNU1BNfz1eaQVA3TcGiETeeuT8e/putty%20initial%20connection.jpg)

* On Mac, go to Applications > Utilities, and open Terminal.  Make an SSH connection to the server by using the syntax below.  Substitute root for your username if needed, say yes to connect, and then enter the password:

> ssh root@IPaddress

# Update and Secure Ubuntu Linux
___
___

## Update Server Password!
___
With access to our server, we start by changing the password a long secure password.  Generate and store the password securely in something like https://www.lastpass.com/ or a password manager to avoid losing access to the server or having the password guessed.

> passwd

Try copying and pasting the password once and then typing it again to verify it works.  Test login with new password by reconnecting to the server.

> logout

## Download Ubuntu Linux Updates and Apps!

Switch to root directory to get to work!

> cd /

Download the updates new programs and text editors!

> sudo apt-get update

Install text editor nano

> sudo apt-get install nano

Change directories and copy the sshd_config file into a new file in case of mistakes with command *cp*!

> cd /etc/ssh/
> sudo cp sshd_config sshd_config_0

List the files in the directory to verify the copy and get comfortable using *ls* to see inside the directory!

> ls

Open the sshd_config file to edit the port and disable root login

> sudo nano /etc/ssh/sshd_config

Change to PermitRootLogin to no because this will disable anyone logging into the server as the root.  DO NOT DO THIS if you have been using root so far up until this point. Instead, stop and create a new user before continuing.

> PermitRootLogin no

Change the port number to a new number between 1000 and 65535 because this will make it difficult to find the port to login on.

> Port #

Use control + o to save and enter to confirm then control + x to exit!

> sudo service ssh restart

## Create Public and Private Keys for SSH Login!
___
1. Get PuttyGen.exe at [https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe](https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe)
2. Make a strong passphrase for additional security otherwise anyone with the private key file can login
3. Copy the "Public key for pasting" into a pub_key.txt file with notepad.
4. Save public key calling it pub_key.
5. Save private key as private.ppk

We now have three files that help us log into our server which are

1. pubkey.txt
2. pub_key
3. private.ppk

Now we need to get this setup on our server.

## Add the Public Key to the Ubuntu Linux Server!
___

Make .ssh directory or if it already exists and an error comes up, continue to step 2.

> mkdir ~/.ssh

Modify folder access.

> chmod 700 ~/.ssh

Change directory into the folder.

> cd ~/.ssh      

Create or read a file for the key.  If blank, paste the public_key.txt in.  Save/overwrite the file and close.

> nano authorized_keys

Load the updates.

> sudo service ssh restart

Set so only root can access.

> chmod 600 authorized_keys

> logout

## Test login with the key to verify it works!

Go to SSH and auth in Putty.  Put the private key file in along with the rest of the server info and save as a preset.

![putty private key file.jpg](https://steemitimages.com/DQmU1YXh2FEwbFGHBkmaZksiUaidnKRKGLRMzdR59bfQ1rD/putty%20private%20key%20file.jpg)

Verify the key works to log in so we can continue by disabling password logins.

## Disable Password Logins!
___

Open the sshd_config to disable password access.

> sudo nano /etc/ssh/sshd_config

Remove if commented out and overwrite and exit.

> PasswordAuthentication no

Load new protocols.

> sudo service ssh restart

## Remove IPv6 Listening
___

Add AddressFamily inet to the end of the sshd_config file to disable IPv6 listening.

> echo 'AddressFamily inet' | sudo tee -a /etc/ssh/sshd_config

> sudo service ssh restart

## Install and turn on UFW

Install Uncomplicated Firewall and proceed with typing y to continue the installation.

> sudo apt-get install ufw

Check the status to confirm it is inactive.

> sudo ufw status

> sudo ufw default allow outgoing

> sudo ufw default deny incoming

> sudo ufw allow ssh

Set the UFW to allow a customportnumber equals to the port selected to connect with ssh earlier.  For a webserver port 80 or whatever is set needs to be open along with any other program wanting access.

> sudo ufw allow #

> sudo ufw enable

## Avoid Block Misses with NTP to Sync Time!
___

> sudo apt-get install ntp

> cd /etc

Copy the original file in case of problems.

> sudo cp ntp.conf ntp0.conf   

Open the conf file in text editor nano.

> sudo nano /etc/ntp.conf

Add these at the end and overwrite!

> minpoll 5
> maxpoll 7

Enable and restart.

> sudo systemctl enable ntp

> sudo systemctl restart ntp

We now have the server ready to use for a seed node or a witness node!  I started with the seed node because it was good practice and a lot easier.  While a seed node is technically not required to be a witness, it is highly recommended if we want people to take our campaign for witness seriously and vote for us!

# Seed Setup!
___
___

Install Steem Docker by @someguy123 to make installation simple!

> sudo apt install git curl wget

> sudo git clone https://github.com/Someguy123/steem-docker.git

> cd steem-docker

> ./run.sh install_docker

Logout and log back in to get started.

> logout

Change directory to steem-docker to run commands.

> cd steem-docker

>./run.sh install

After the install is complete, download the existing blocks to speed up setup!

>./run.sh dlblocks

When the download finishes, adjust the shared memory.  8 GB is minimum and 12 GB at least is recommended.  Do not use more than you have!

> sudo ./run.sh shm_size 16G

Replay to get up to date!

> ./run.sh replay

Finished with at 100% and showing the newest blocks!  Check with 

> ./run.sh logs

That is it for a seed node!  To get a seed node added to the list at https://status.steemnodes.com/ contact @wackou who maintains this list on [steemit.chat](https://steemit.chat/direct/wackou).

# Witness Setup
___
___

Setting the seed node up is great practice for bringing the witness node online because almost all of the steps to do the seed are the same along with a lot more to do the witness!  If we follow the steps the way I did, we setup the seed node completely first to gain confidence and then start with the witness node from the beginning using the same process for security that we did on the seed node stopping just at the seed node steps and skipping down here instead!  Ready?

## Install Steem Docker and Prepare The CLI Wallet.
___
> sudo apt update

> sudo apt install git curl wget

> git clone https://github.com/Someguy123/steem-docker.git

> cd steem-docker

> ./run.sh install_docker

> logout

> cd steem-docker

> ./run.sh install

> ./run.sh dlblocks

Wait for everything to finish!  If permission errors here or a previous step, back up one level to home/user and chown user:user -R steem-docker to fix.

Next, we get to work making our Command Line Interface or CLI wallet because we need to manage our Steem account with the witness!

> ./run.sh remote_wallet

> suggest_brain_key

Save the public and private key securely for later.  Read all the CLI wallet commands at https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0.

Exit the wallet with Control + D and then change the shared memory to a minimum of 8G or recommended at least 12G.  I use 16 GB because I have enough memory.

> sudo ./run.sh shm_size 16G

Overwrite and exit the file to finish.

## Edit Config.ini to Prepare to Launch!
___

Make a copy in case of a mistake!

> cp data/witness_node_data_dir/config.ini data/witness_node_data_dir/config0.ini

Open the config.ini file to edit.

> nano data/witness_node_data_dir/config.ini

Edit in the following format with your witness name instead of mine along with the private key from the CLI wallet saved earlier and the shared file size chosen.

>witness = "jerrybanfield"
> private-key = 5xxxxxxxxxxxxx
> shared-file-size = 16G

In the config.ini, find p2p-endpoint = 0.0.0.0:2001 and delete it because we are not running a seed!  Save and close the file with  press CTRL-X on nano and hitting enter to say yes to saving.

Finally, we disable port forwarding for seeds!

> nano .env

With the file blank, add these lines and save

> PORTS=
> DOCKER_NAME=witness

## Get Online!
___

We are now nearly ready to replay, get synced, and broadcast our witness!  I was so excited to do this and hope you are too!  First, we need to replay the blockchain as we did on the seed to get updated.

> ./run.sh replay

Wait until it is fully synced and bringing new transactions like this.

> ./run.sh logs

1050512ms th_a       application.cpp:507           handle_block         ] Got 31 transactions on block 13566376 by jerrybanfield-- latency: 141 ms

For best performance, check active seed nodes at https://status.steemnodes.com/ by pinging each and building a list in the witness_node_data_dir/config.ini file of the lowest latency nodes.  Then

For example,

> ping seed.jerrybanfield.com

Then edit the seed node list to those pinged successfully at the best speed.

> nano data/witness_node_data_dir/config.ini

If a server restart is needed because of updating the config file, do a quick restart!

> ./run.sh restart

Now time to open the wallet and broadcast our witness which is the final step to getting online!  This assumes you wrote a post to include in the URL which you have ready to use.  If not, use a profile link and update it with the new post or get the post written first!

> ./run.sh wallet

Now we need to make a super secure password to keep our CLI wallet locked because anyone getting into it can use it with our active key!

> set_password "mysupersecurepass"
> unlock "mysupersecurepass"

Import the active key from our wallet on steemit.com under the "permissions" tab and replace with your own.

> import_key 5zzzzzzzzzzzz

With the active key imported, we can now use the CLI wallet to get our witness added to the list!  Here is the command I used with switching out the public key for my own and the username and the URL.  Here was my exact broadcast.  Switch your username, url, and PUBLIC signing key in place of mine.

> update_witness "jerrybanfield" "https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training" "STM7462wuSatDmQ6QGkuZPjohJrp2S79xgNjtsDfDgoB2c6HgaAEf" {"account_creation_fee":"0.200 STEEM","maximum_block_size":65536,"sbd_interest_rate":0} true

IF this error comes up

10 assert_exception: Assert Exception
!ec: websocket send failed: invalid state
{"msg":"invalid state"}
th_a websocket.cpp:164 send_message

Then Control + D to close the wallet and open it again.  Immediately broadcast the witness message again before the wallet locks.

## Price Feed Setup!
___

Witness are required to publish a price feed that pegs the SBD to Steem.  Here is the easiest way to do it automatically.  Start by changing directory to the home username such as

> cd /home/jerry

Download Steemfeed from GitHub.

> git clone https://github.com/Someguy123/steemfeed-js.git

Create the steemfeed-js directory to install in.

> cd steemfeed-js

Copy the example config file and add witness name plus active key.

> cp config.example.json config.json

> nano config.json

Close nano and run docker to build the feed.

> docker build -t steemfeed-js

Make sure the witness is synced first before the next step!

> docker run -itd --rm --name feed steemfeed-js

View results at 

> docker logs steemfeed

## Done Setting Up!
___

The beginning of our witness journey is complete and our witness should now be online!  Verify at https://steemd.com/@jerrybanfield except switch your username for mine and look for the witness info in the lower left.  It should say witness with an ID and the data submitted.  Below I will share some trouble shooting and basic errors with solutions I have encountered in the first month of being a witness that I hope are helpful!

# Problems and Solutions!
___
___

## Fastest Way to Get Help!
___
Join the witness channel at https://steemit.chat/channel/witness and start asking questions.  I have received consistent help there from @someguy123 which has helped me solve most problems quickly!

## CLI Wallet Issues!
___

If we lose or update our public key, try to dump the keys again including public and private within the CLI wallet using

> list_keys

If we use multiple wallets or want to make sure our account is synced correctly, use the commend below immediately after unlocking to verify the correct account is synced in the CLI wallet.

> list_my_accounts

control + D to exit the wallet

IF this error comes up

10 assert_exception: Assert Exception
!ec: websocket send failed: invalid state
{"msg":"invalid state"}
th_a websocket.cpp:164 send_message

We waited too long to send the message after unlocking the wallet.  Thanks to @drakos for answering this question and providing the solution!  Close the wallet and reopen and then send again immediately to update.  View all wallet commands at https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0


## Miss a block?
___

After a month I just missed my first block fooling around updating my witness after @someguy123 successfully helped me to 19.1 without missing a block.  One of the most basic things to do after missing a block is to restart steem-docker in case it crashed.

> ./run.sh restart 

If it doesn't seem to start getting transactions after 5 minutes, then your blockchain or shared memory is corrupted and you might need to ask for help fixing that.

If a lot of blocks where missed or one was missed a long time ago, check the logs to see if the blockchain is current.

> ./run.sh logs



## Server restart commands
___

If the logs are behind and not getting new transactions, a replay may be needed to catch up after a restart.  Avoid running a replay if the logs are current!

> ./run.sh shm_size 16G
> ./run.sh replay

If known reboot needed, avoid replay with

> mkdir /home/user/shm
> cp -R /dev/shm/* /home/user/shm/

then

> ./run.sh shm_size 16G
> cp -R /home/username/shm/* /dev/shm/


## Steemfeed Troubleshooting
___

If the file is changed with a new active key after starting ...

> docker build -t steemfeed-js
> docker stop steemfeed
> docker rm steemfeed
> docker run -itd --name=steemfeed steemfeed-js

If price feed drops, here is a fix

> crontab -e

#Add this to the end of the file to help it restart

> 0 */2 * * *

> docker restart steemfeed               

# References
___
1. Your guide to setting up a Witness Server (STEEM-in-a-box HF19) by @someguy123 at https://steemit.com/steem/@someguy123/your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19
2. Complete Witness Installation Guide by @krnel at https://steemit.com/witness-category/@krnel/complete-witness-installation-guide.
3. The REALLY gentle guide to becoming a witness by @personz at https://steemit.com/witness-category/@personz/the-really-gentle-guide-to-becoming-a-witness.

# Resources
___

1. Get help fast in the steemit.chat witness channel at https://steemit.chat/channel/witness.
2. Conductor for automatic failover to a backup witness https://github.com/Netherdrake/conductor.
3. Full command list for Steem docker https://github.com/Someguy123/steem-docker/blob/master/run.sh.
4. Check open ports  https://www.yougetsignal.com/tools/open-ports/.
5. Track blocks https://steemdb.com/@jerrybanfield/blocks   replace me with your username.
6. Track missed blocks in Steemit.chat  https://steemit.chat/channel/witness-blocks.

Thank you very much for reading this guide!  If you found this helpful, would you please vote for me as a witness at https://steemit.com/~witnesses because it feels good to give back to witnesses that help us setup our own witness?  If jerrybanfield is not in the top 50 when voting, please use the box to vote for me and just click vote once.  Refresh to verify the vote went through and now appears in the list!

[![Vote Jerry Banfield Steem Witness](https://i.gyazo.com/9325a7f4bb4cd0802fd901804a56deaf.gif)](https://steemit.com/~witnesses)

# OR

[![Set JerryBanfield proxy](https://i.gyazo.com/e41b5378209532d6b282543f780b0278.gif)](https://steemit.com/~witnesses)

If you have suggestions for improvements to this guide or would like to let me know what was most helpful, would you please share that in the comments here because that will help me make edits and help others reading to learn more from you?

Love,
Jerry Banfield
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 534 others
properties (23)
authorjerrybanfield
permlinkget-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands
categorywitness
json_metadata{"tags":["witness","witness-category","tutorial","steemit","add"],"users":["privex","someguy123","wackou","drakos","krnel","personz"],"image":["https://steemitimages.com/DQmbqLQx2bZihA8bG3UtQuPyc29BAkyUk4X8vBmPYA2uSLM/get%20a%20steem%20witness%20and%20seed%20online.png","https://steemitimages.com/DQmTec9euGpszViqbr8ERNU1BNfz1eaQVA3TcGiETeeuT8e/putty%20initial%20connection.jpg","https://steemitimages.com/DQmU1YXh2FEwbFGHBkmaZksiUaidnKRKGLRMzdR59bfQ1rD/putty%20private%20key%20file.jpg","https://i.gyazo.com/9325a7f4bb4cd0802fd901804a56deaf.gif","https://i.gyazo.com/e41b5378209532d6b282543f780b0278.gif"],"links":["https://steemit.com/witness-category/@jerrybanfield/launch-a-steem-witness-today","https://steemit.com/witness-category/@jerrybanfield/steem-witness-basic-training","https://steemit.com/witness-category/@jerrybanfield/how-to-start-getting-steem-witness-votes","https://steemit.com/witness-category/@jerrybanfield/steem-witness-14-542-reporting-for-duty","https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html","https://www.lastpass.com/","https://the.earth.li/~sgtatham/putty/latest/x86/puttygen.exe","https://github.com/Someguy123/steem-docker.git","https://status.steemnodes.com/","https://steemit.chat/direct/wackou","https://steemit.com/steemhelp/@hannixx42/cliwallet-commands-v0","https://github.com/Someguy123/steemfeed-js.git","https://steemd.com/@jerrybanfield","https://steemit.chat/channel/witness","https://steemit.com/steem/@someguy123/your-guide-to-setting-up-a-witness-server-steem-in-a-box-hf19","https://steemit.com/witness-category/@krnel/complete-witness-installation-guide","https://steemit.com/witness-category/@personz/the-really-gentle-guide-to-becoming-a-witness","https://github.com/Netherdrake/conductor","https://github.com/Someguy123/steem-docker/blob/master/run.sh","https://www.yougetsignal.com/tools/open-ports/","https://steemdb.com/@jerrybanfield/blocks","https://steemit.chat/channel/witness-blocks","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"}
created2017-08-21 17:15:15
last_update2017-08-23 14:05:51
depth0
children66
last_payout2017-08-28 17:15:15
cashout_time1969-12-31 23:59:59
total_payout_value189.510 HBD
curator_payout_value35.743 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20,768
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,456,967
net_rshares54,928,665,877,635
author_curate_reward""
vote details (598)
@aarellanes ·
$1.02
Much Needed! Thank you!
πŸ‘  
properties (23)
authoraarellanes
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173904905z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:39:03
last_update2017-08-21 17:39:03
depth1
children0
last_payout2017-08-28 17:39:03
cashout_time1969-12-31 23:59:59
total_payout_value0.762 HBD
curator_payout_value0.253 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation3,356,215,669,024
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,458,834
net_rshares248,100,995,534
author_curate_reward""
vote details (1)
@abiproud ·
Coul you pleade help me, how to write a best article?
Thank you
properties (22)
authorabiproud
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170824t085613652z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-24 08:56:24
last_update2017-08-24 08:56:24
depth1
children0
last_payout2017-08-31 08:56:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation3,973,760,944,264
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,718,519
net_rshares0
@alanmirza ·
wow, postingan yang sangat bagus dan bermanfaat . . .
properties (22)
authoralanmirza
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174904726z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:48:27
last_update2017-08-21 17:48:27
depth1
children0
last_payout2017-08-28 17:48:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation9,688,354,447,537
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,596
net_rshares0
@alhasan ·
I know you through youtube. It turns out a lot of new knowledge that I can get from your articles. I will watch youtube you. Maybe i can follow your success. Please advise and support from you. https://youtu.be/nSf3lttx2OQ
properties (22)
authoralhasan
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174718636z
categorywitness
json_metadata{"tags":["witness"],"image":["https://img.youtube.com/vi/nSf3lttx2OQ/0.jpg"],"links":["https://youtu.be/nSf3lttx2OQ"],"app":"steemit/0.1"}
created2017-08-21 17:47:24
last_update2017-08-21 17:47:24
depth1
children0
last_payout2017-08-28 17:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation3,774,910,166,027
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,487
net_rshares0
@alphajiggy · (edited)
What basic computer knowledge does this require? Where could I go to learn more about using the Linux Command Line? Would this be easier with practicing that? I have 0 technical computer knowledge in this area. I can use basic programs and use a computer like many people born in the last 25-30 maybe 40 years(not to generalize or count out people older who have much more experience) but would be ranked in the lower end of understanding how to write command-line info, code, HTML, manage IT security. 

I bought a bunch of courses last year in late 2017 from ScienceAlertAcademy, yours was one of them. I completed the course but never got much further and am looking to continue where I left off, so essentially I am looking for direction in something to study before getting into setting up a witness account and server. Aside from the posts and guides about how to set up a witness server, maybe something that could be considered a warm up to this...
properties (22)
authoralphajiggy
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20181103t003808762z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2018-11-03 00:38:09
last_update2018-11-03 00:38:51
depth1
children0
last_payout2018-11-10 00:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length956
author_reputation1,363,612,727,790
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id74,573,060
net_rshares0
@arcange ·
Congratulations @jerrybanfield!
Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170821) in the following category:

* Upvotes - Ranked 8 with 539 upvotes
properties (22)
authorarcange
permlinkre-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t164027000z
categorywitness
json_metadata""
created2017-08-22 14:40:27
last_update2017-08-22 14:40:27
depth1
children0
last_payout2017-08-29 14:40:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation1,146,606,601,469,178
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,541,325
net_rshares0
@asif4745 ·
its a very helpful post, thank you :)
properties (22)
authorasif4745
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184314001z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:43:12
last_update2017-08-21 18:43:12
depth1
children0
last_payout2017-08-28 18:43:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation1,009,576,991,023
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,463,995
net_rshares0
@calatorulmiop ·
$0.23
Awesome job you are doing for the community with these guides. Hope to see more in the future.  Steem on πŸ˜‡
πŸ‘  , ,
properties (23)
authorcalatorulmiop
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171903064z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:19:03
last_update2017-08-21 17:19:03
depth1
children1
last_payout2017-08-28 17:19:03
cashout_time1969-12-31 23:59:59
total_payout_value0.187 HBD
curator_payout_value0.042 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation4,328,184,656,688
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,252
net_rshares56,508,131,215
author_curate_reward""
vote details (3)
@jerrybanfield ·
Adrian thank you very much!
properties (22)
authorjerrybanfield
permlinkre-calatorulmiop-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204719712z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:47:18
last_update2017-08-21 20:47:18
depth2
children0
last_payout2017-08-28 20:47:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,812
net_rshares0
@cryptoeera ·
$2.20
Always fresh insights regarding Steemit...
πŸ‘  , ,
properties (23)
authorcryptoeera
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184115432z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:41:21
last_update2017-08-21 18:41:21
depth1
children4
last_payout2017-08-28 18:41:21
cashout_time1969-12-31 23:59:59
total_payout_value2.189 HBD
curator_payout_value0.007 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation4,588,753,233,699
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,463,896
net_rshares535,482,785,628
author_curate_reward""
vote details (3)
@jerrybanfield · (edited)
$0.09
@cryptoeera thank you for commenting.  I see your upvoted your comment but do not see an upvote on the post?
πŸ‘  ,
properties (23)
authorjerrybanfield
permlinkre-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204211637z
categorywitness
json_metadata{"tags":["witness"],"users":["cryptoeera"],"app":"steemit/0.1"}
created2017-08-21 20:42:09
last_update2017-08-21 20:43:00
depth2
children2
last_payout2017-08-28 20:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.087 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,461
net_rshares21,471,301,898
author_curate_reward""
vote details (2)
@cryptoeera ·
$2.16
Yes, I upvote just myself, because I'm not a content creator and I don't earn from blogging. Anyway, it's not a problem; I comment to your posts not because am expecting you to upvote me, but because I truly believe you bring genuine value in the Steemit community and crypto in general.
πŸ‘  , ,
properties (23)
authorcryptoeera
permlinkre-jerrybanfield-re-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t205309157z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:53:15
last_update2017-08-21 20:53:15
depth3
children1
last_payout2017-08-28 20:53:15
cashout_time1969-12-31 23:59:59
total_payout_value2.154 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length287
author_reputation4,588,753,233,699
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,473,216
net_rshares524,601,480,415
author_curate_reward""
vote details (3)
@shivang ·
i guess everyone must see this also---
What is happening to NEO (Antshares) - NEO on GitHub - Programmer explains| Buy it OR not
https://dtube.video/v/shivang/0xy00bfo
properties (22)
authorshivang
permlinkre-cryptoeera-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185816362z
categorywitness
json_metadata{"tags":["witness"],"links":["https://dtube.video/v/shivang/0xy00bfo"],"app":"steemit/0.1"}
created2017-08-21 18:58:18
last_update2017-08-21 18:58:18
depth2
children0
last_payout2017-08-28 18:58:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation2,360,286,895
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,465,166
net_rshares0
@cryptoqu33n ·
@jerrybanfield - Like always, your tutorials are interesting and really help understand the technical aspect of setting up Steem witness seed. Thanks for this amazing post!
properties (22)
authorcryptoqu33n
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t170101724z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-21 17:56:27
last_update2017-08-21 17:56:27
depth1
children0
last_payout2017-08-28 17:56:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation2,212,279,502,729
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,460,269
net_rshares0
@davidrestrepo ·
$0.04
Thanks!!
πŸ‘  
πŸ‘Ž  
properties (23)
authordavidrestrepo
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t220744116z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 22:07:42
last_update2017-08-21 22:07:42
depth1
children0
last_payout2017-08-28 22:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation757,119,534,433
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,478,399
net_rshares9,221,828,179
author_curate_reward""
vote details (2)
@farhannaqvi7 ·
this is really helpful to gain withnes awesome bro awesome that's why i follow you every day thanks jerry
properties (22)
authorfarhannaqvi7
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t180255738z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:02:51
last_update2017-08-21 18:02:51
depth1
children0
last_payout2017-08-28 18:02:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation3,795,874,242,747
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,460,831
net_rshares0
@farhannaqvi7 ·
this is really helpful to gain withnes awesome bro awesome that's why i follow you every day thanks jerry
properties (22)
authorfarhannaqvi7
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t215910139z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 21:58:54
last_update2017-08-21 21:58:54
depth1
children0
last_payout2017-08-28 21:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation3,795,874,242,747
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,477,842
net_rshares0
@hafizulislam ·
$0.22
Great job jerry. Was eagerly waiting for this....
πŸ‘  ,
properties (23)
authorhafizulislam
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171609506z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:16:09
last_update2017-08-21 17:16:09
depth1
children1
last_payout2017-08-28 17:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.167 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation61,150,592,657
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,034
net_rshares53,958,465,540
author_curate_reward""
vote details (2)
@jerrybanfield ·
Excellent I am happy it is here now today finally because I have been working on this for a month!
properties (22)
authorjerrybanfield
permlinkre-hafizulislam-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204925256z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:49:24
last_update2017-08-21 20:49:24
depth2
children0
last_payout2017-08-28 20:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length98
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,959
net_rshares0
@hashclouds ·
Wow, Jerry! You never cease to amaze me! 

I only recently started mining another coin. I picked a very easy gui program. It has been doing ok, but I need to reduce the bad blocks.

In the mean time, I will be teaching myself ubuntu on my old laptop, as a start.

Maybe someday I will work my way up to becoming a steem witness! I wish I had your energy. :)
properties (22)
authorhashclouds
permlinkre-jerrybanfield-2017823t115523512z
categorywitness
json_metadata{"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-23 15:55:27
last_update2017-08-23 15:55:27
depth1
children0
last_payout2017-08-30 15:55:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length357
author_reputation2,410,968,328,315
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,650,412
net_rshares0
@iamhaque ·
At my first glance,i was like "what the hell are you talking about".
properties (22)
authoriamhaque
permlinkre-jerrybanfield-2017821t225644793z
categorywitness
json_metadata{"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-21 17:26:51
last_update2017-08-21 17:26:51
depth1
children0
last_payout2017-08-28 17:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation1,278,277,894,044
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,820
net_rshares0
@jerrev ·
Wow Jerry, what a great guide and such a thorough tutorial. Everyone can benefit from this. You're helping the Steemit community so much. Every day your posts help build this platform to a higher level. We can all learn so much from you
properties (22)
authorjerrev
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173240564z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:32:39
last_update2017-08-21 17:32:39
depth1
children0
last_payout2017-08-28 17:32:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length236
author_reputation54,170,176,411
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,458,295
net_rshares0
@jerrybanfield ·
Why does it have "add" as tag?
properties (22)
authorjerrybanfield
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171730067z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:17:27
last_update2017-08-21 17:17:27
depth1
children4
last_payout2017-08-28 17:17:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,131
net_rshares0
@calatorulmiop ·
$0.36
Probably because you didn't write all 5 hashtags.
πŸ‘  , ,
properties (23)
authorcalatorulmiop
permlinkre-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172138736z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:21:39
last_update2017-08-21 17:21:39
depth2
children2
last_payout2017-08-28 17:21:39
cashout_time1969-12-31 23:59:59
total_payout_value0.276 HBD
curator_payout_value0.088 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation4,328,184,656,688
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,453
net_rshares89,183,915,130
author_curate_reward""
vote details (3)
@jerrybanfield ·
Adrian thank you for suggesting this answer!  I see just one other post with this and I am guessing others must use less tags too?
properties (22)
authorjerrybanfield
permlinkre-calatorulmiop-re-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204858976z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:48:57
last_update2017-08-21 20:48:57
depth3
children1
last_payout2017-08-28 20:48:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,929
net_rshares0
@maestroq ·
I have experienced something similar today.
I couldn't add the fifth tag.
properties (22)
authormaestroq
permlinkre-jerrybanfield-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t173033692z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:30:36
last_update2017-08-21 17:30:36
depth2
children0
last_payout2017-08-28 17:30:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation5,924,317,112,668
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,458,105
net_rshares0
@jerrybanfield · (edited)
$4.88
Edit to the steemfeed build!

Close nano and run docker to build the feed should include a period as follows because it will not run without it

> docker build -t steemfeed-js .

Upvoted to pin this comment at the top for visibility.
πŸ‘  , ,
properties (23)
authorjerrybanfield
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20171123t123838001z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-11-23 12:38:36
last_update2017-11-23 12:39:57
depth1
children0
last_payout2017-11-30 12:38:36
cashout_time1969-12-31 23:59:59
total_payout_value4.864 HBD
curator_payout_value0.013 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length233
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id21,293,378
net_rshares1,936,141,665,043
author_curate_reward""
vote details (3)
@jjb777 · (edited)
Yeah nano! I like nano. Its so simple. For more advanced editing use vi of course. J
properties (22)
authorjjb777
permlinkre-jerrybanfield-2017821t192938370z
categorywitness
json_metadata{"tags":"witness","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-08-21 17:29:39
last_update2017-08-21 17:30:03
depth1
children0
last_payout2017-08-28 17:29:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation3,338,376,561,587
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,458,029
net_rshares0
@kaymichaels ·
Thanks for sharing the knowhow
properties (22)
authorkaymichaels
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175157091z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:52:00
last_update2017-08-21 17:52:00
depth1
children0
last_payout2017-08-28 17:52:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation15,005,725,272
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,869
net_rshares0
@lightingmacsteem ·
Now that I know this witness, I can help with the setup of the server. It may interest people here on offgrid energy sources the non-solar non-wind approach, I have presented the JOULESTEEM circuit in my post #9. Whales can really help in spreading the very god news of this new approach, may help us one day.

Voted you as a WITNESS jerry. Regards.
properties (22)
authorlightingmacsteem
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t040040379z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-22 04:00:39
last_update2017-08-22 04:00:39
depth1
children0
last_payout2017-08-29 04:00:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length349
author_reputation2,150,713,093,459
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,498,137
net_rshares0
@luisneira ·
$0.91
Very clear explanation.I have a question, does the computer at home need to always be on?
πŸ‘  ,
properties (23)
authorluisneira
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170823t102933766z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-23 10:29:36
last_update2017-08-23 10:29:36
depth1
children0
last_payout2017-08-30 10:29:36
cashout_time1969-12-31 23:59:59
total_payout_value0.906 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length89
author_reputation1,669,851,356,537
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,623,221
net_rshares220,585,177,701
author_curate_reward""
vote details (2)
@majidawan ·
Excellent ! The nice job you are doing
properties (22)
authormajidawan
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t181244773z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:12:45
last_update2017-08-21 18:12:45
depth1
children0
last_payout2017-08-28 18:12:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation835,950,226,667
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,461,680
net_rshares0
@manudada ·
Kamine itna like
properties (22)
authormanudada
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174830471z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:48:39
last_update2017-08-21 17:48:39
depth1
children0
last_payout2017-08-28 17:48:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation29,129,754,378
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,617
net_rshares0
@maxsteem ·
good post.
properties (22)
authormaxsteem
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170823t093929080z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-23 09:39:42
last_update2017-08-23 09:39:42
depth1
children0
last_payout2017-08-30 09:39:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation20,302,423,431,102
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,619,885
net_rshares0
@mcsamm ·
Great......steem witness....upped
properties (22)
authormcsamm
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172519514z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:25:21
last_update2017-08-21 17:25:21
depth1
children0
last_payout2017-08-28 17:25:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation1,528,821,007,083,474
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,698
net_rshares0
@meatspoon ·
https://steemit.com/steemit/@meatspoon/i-m-only-voting-once-for-one-witness-jerry-banfield-and-here-s-why
properties (22)
authormeatspoon
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t052417890z
categorywitness
json_metadata{"tags":["witness"],"links":["https://steemit.com/steemit/@meatspoon/i-m-only-voting-once-for-one-witness-jerry-banfield-and-here-s-why"],"app":"steemit/0.1"}
created2017-08-22 05:24:18
last_update2017-08-22 05:24:18
depth1
children0
last_payout2017-08-29 05:24:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation60,010,463,097
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,502,602
net_rshares0
@milanista ·
thank you jerrybanfield 😘😘😘
properties (22)
authormilanista
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t171026503z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:09:33
last_update2017-08-21 18:09:33
depth1
children0
last_payout2017-08-28 18:09:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation401,137,267
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,461,425
net_rshares0
@mobius29er ·
@jerrybanfield this is a great resource!  Thank you so much for making this.  I hope to be up and running in a few weeks.
πŸ‘  
properties (23)
authormobius29er
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20171213t233525048z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-12-13 23:35:24
last_update2017-12-13 23:35:24
depth1
children0
last_payout2017-12-20 23:35:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation1,062,168,541
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id23,425,676
net_rshares1,102,484,950
author_curate_reward""
vote details (1)
@movietrailar ·
-Excellent post thanks for sharing
I am a new steemians, maybe i should study first with you, regards know me
https://steemit.com/@movietrailar    please follow me
I followed and upvoted.Would you like to follow and upvote me.
![DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif](https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif)![DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png](https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png)![U5drhZJbgh8HauKXEXxztDAj5gtKctA.gif](https://steemitimages.com/DQmWHUZjHQFFJKUioxVAkfyHpKP4QYTyM2R5bqjQfHvsbUH/U5drhZJbgh8HauKXEXxztDAj5gtKctA.gif)
πŸ‘Ž  
properties (23)
authormovietrailar
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175649909z
categorywitness
json_metadata{"tags":["witness"],"image":["https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif","https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png","https://steemitimages.com/DQmWHUZjHQFFJKUioxVAkfyHpKP4QYTyM2R5bqjQfHvsbUH/U5drhZJbgh8HauKXEXxztDAj5gtKctA.gif"],"links":["https://steemit.com/@movietrailar"],"app":"steemit/0.1"}
created2017-08-21 17:56:51
last_update2017-08-21 17:56:51
depth1
children1
last_payout2017-08-28 17:56:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length758
author_reputation104,200,158,033
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,460,301
net_rshares-13,800,823,806
author_curate_reward""
vote details (1)
@denmarkguy ·
Please stop spamming the same comment to lots of posts!

@spaminator, please have a look at this....
properties (22)
authordenmarkguy
permlinkre-movietrailar-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t001809148z
categorywitness
json_metadata{"tags":["witness"],"users":["spaminator"],"app":"steemit/0.1"}
created2017-08-22 00:18:09
last_update2017-08-22 00:18:09
depth2
children0
last_payout2017-08-29 00:18:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation1,145,152,350,326,001
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,485,648
net_rshares0
@mrmandal ·
you are a very good writer 
Follow me and upvote me 
 Again :D
https://steemit.com/flat/@mrmandal/flat-earth
properties (22)
authormrmandal
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t183831243z
categorywitness
json_metadata{"tags":["witness"],"links":["https://steemit.com/flat/@mrmandal/flat-earth"],"app":"steemit/0.1"}
created2017-08-21 18:38:33
last_update2017-08-21 18:38:33
depth1
children0
last_payout2017-08-28 18:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation1,108,904,490
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,463,683
net_rshares0
@msg768 · (edited)
Nice job Jerry! This is very useful! Upvoted and **RESTEEMED**...
properties (22)
authormsg768
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174505481z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:45:06
last_update2017-08-21 17:45:33
depth1
children0
last_payout2017-08-28 17:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length65
author_reputation29,910,527,626,122
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,305
net_rshares0
@nantorious ·
Thanks i was looking for an up to date guide. Upvoted followed and resteemed!
πŸ‘  
properties (23)
authornantorious
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t215431287z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 21:54:30
last_update2017-08-21 21:54:30
depth1
children0
last_payout2017-08-28 21:54:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length77
author_reputation29,912,880,936
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,477,580
net_rshares0
author_curate_reward""
vote details (1)
@pakforex ·
face an error please guide what i do further

![witness error.png](https://steemitimages.com/DQmbJgtWaACe3rP44zVVD9nVwzwKNfxjwySAZcgTdBxSWWN/witness%20error.png)
properties (22)
authorpakforex
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20180215t110710873z
categorywitness
json_metadata{"tags":["witness"],"image":["https://steemitimages.com/DQmbJgtWaACe3rP44zVVD9nVwzwKNfxjwySAZcgTdBxSWWN/witness%20error.png"],"app":"steemit/0.1"}
created2018-02-15 11:07:09
last_update2018-02-15 11:07:09
depth1
children0
last_payout2018-02-22 11:07:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation489,999,309,491
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,718,974
net_rshares0
@pkvlogs · (edited)
$0.38
Buddy can you please make a post on deligation and undeligation of sp please. It would be helpfull for many steemians.
Thank you .Bdw resteemed your post.
πŸ‘  , , ,
properties (23)
authorpkvlogs
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172020751z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:20:24
last_update2017-08-21 17:20:48
depth1
children1
last_payout2017-08-28 17:20:24
cashout_time1969-12-31 23:59:59
total_payout_value0.290 HBD
curator_payout_value0.091 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length154
author_reputation28,867,448,825,923
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,357
net_rshares93,461,222,712
author_curate_reward""
vote details (4)
@jerrybanfield ·
$0.04
Yes thank you very much for suggesting this because I am just about to do a post on it!
πŸ‘  
properties (23)
authorjerrybanfield
permlinkre-pkvlogs-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204657426z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:46:57
last_update2017-08-21 20:46:57
depth2
children0
last_payout2017-08-28 20:46:57
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length87
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,779
net_rshares9,351,259,415
author_curate_reward""
vote details (1)
@polaleye50 ·
Thanks @jerrybanfield. I requested for this, and now you have done it.
properties (22)
authorpolaleye50
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174811529z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-21 17:48:21
last_update2017-08-21 17:48:21
depth1
children0
last_payout2017-08-28 17:48:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation15,725,803,639,028
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,591
net_rshares0
@powerfull ·
I saw your youtube video and signed up!
properties (22)
authorpowerfull
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t201023101z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:10:24
last_update2017-08-21 20:10:24
depth1
children0
last_payout2017-08-28 20:10:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation509,374,751
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,470,305
net_rshares0
@salvis ·
$0.11
Thx for sharing
πŸ‘  
properties (23)
authorsalvis
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172327474z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:23:30
last_update2017-08-21 17:23:30
depth1
children0
last_payout2017-08-28 17:23:30
cashout_time1969-12-31 23:59:59
total_payout_value0.082 HBD
curator_payout_value0.027 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation520,117,508,798
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,568
net_rshares27,100,607,267
author_curate_reward""
vote details (1)
@sandra12 ·
Great job @jerrybanfield
properties (22)
authorsandra12
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185656565z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-21 18:56:57
last_update2017-08-21 18:56:57
depth1
children0
last_payout2017-08-28 18:56:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation20,302,657,252
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,465,064
net_rshares0
@selfpluslove ·
Wow, awesome information! Thanks Jerry!!!
properties (22)
authorselfpluslove
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t195925821z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 19:59:27
last_update2017-08-21 19:59:27
depth1
children0
last_payout2017-08-28 19:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation11,475,106,105
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,469,596
net_rshares0
@shivang ·
i guess everyone must see this also---
What is happening to NEO (Antshares) - NEO on GitHub - Programmer explains| Buy it OR not
https://dtube.video/v/shivang/0xy00bfo
properties (22)
authorshivang
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t185758409z
categorywitness
json_metadata{"tags":["witness"],"links":["https://dtube.video/v/shivang/0xy00bfo"],"app":"steemit/0.1"}
created2017-08-21 18:57:57
last_update2017-08-21 18:57:57
depth1
children0
last_payout2017-08-28 18:57:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length167
author_reputation2,360,286,895
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,465,137
net_rshares0
@silvercoin ·
Great work @jerrybanfield you have help to motivate me!
properties (22)
authorsilvercoin
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172644819z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-21 17:26:48
last_update2017-08-21 17:26:48
depth1
children0
last_payout2017-08-28 17:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation15,607,265,485
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,805
net_rshares0
@stackin ·
$0.22
The best breakdowns I seen on Steemit, Thanks @jerrybanfield πŸ’ͺπŸΌπŸ™ŒπŸΌπŸ’―
πŸ‘  
properties (23)
authorstackin
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t175515800z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-21 17:55:15
last_update2017-08-21 17:55:15
depth1
children1
last_payout2017-08-28 17:55:15
cashout_time1969-12-31 23:59:59
total_payout_value0.162 HBD
curator_payout_value0.054 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation833,057,026,588,099
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,460,171
net_rshares53,399,007,115
author_curate_reward""
vote details (1)
@jerrybanfield ·
$0.06
You're welcome Charles!
πŸ‘  
properties (23)
authorjerrybanfield
permlinkre-stackin-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204946134z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 20:49:45
last_update2017-08-21 20:49:45
depth2
children0
last_payout2017-08-28 20:49:45
cashout_time1969-12-31 23:59:59
total_payout_value0.046 HBD
curator_payout_value0.014 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,975
net_rshares14,951,784,310
author_curate_reward""
vote details (1)
@stefanarnaut ·
Nice infos
properties (22)
authorstefanarnaut
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172406492z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:24:06
last_update2017-08-21 17:24:06
depth1
children0
last_payout2017-08-28 17:24:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation379,128,940,096
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,616
net_rshares0
@tezmel ·
So much to learn... Thanks for the info Sir.
πŸ‘  
properties (23)
authortezmel
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172506505z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:25:09
last_update2017-08-21 17:25:09
depth1
children0
last_payout2017-08-28 17:25:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation111,344,076,038,127
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,682
net_rshares1,778,084,205
author_curate_reward""
vote details (1)
@walterz ·
It's such a complete tutorial. Thank you for sharing jerry
properties (22)
authorwalterz
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t172644502z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 17:26:51
last_update2017-08-21 17:26:51
depth1
children0
last_payout2017-08-28 17:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation4,805,360,879,933
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,457,815
net_rshares0
@williams858 ·
$2.98
Jerry with somebody who hasn't got the audience you have got and the witness every day voting for you! Is this beneficial to somebody like me with limited viewers and relatively new to the Cryptoworld? How I mean the cost of the server rental will it cover the costs of making steem? Or will I be in negative investment for the shorter term? Any help is appreciated!
πŸ‘  , , ,
properties (23)
authorwilliams858
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t184856589z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 18:48:57
last_update2017-08-21 18:48:57
depth1
children4
last_payout2017-08-28 18:48:57
cashout_time1969-12-31 23:59:59
total_payout_value2.568 HBD
curator_payout_value0.413 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length366
author_reputation4,622,493,754,804
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,464,420
net_rshares726,939,861,204
author_curate_reward""
vote details (4)
@jerrybanfield ·
@williams858 it is worth getting started with if doing it seems like fun and we have a desire to participate on steemit.chat and on the discord channels where witnesses and investors hang out!  Many of the witnesses above me have earned more votes than me with fewer than 1,000 followers!  The server costs can be under $100 a month which with a higher Steem price could be earned easily just getting an occasional block.  When considering the price of Steem going up in a few months, being a witness becomes an outstanding opportunity even towards the bottom if we have a desire to participate on a daily basis!
πŸ‘  
properties (23)
authorjerrybanfield
permlinkre-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t204636875z
categorywitness
json_metadata{"tags":["witness"],"users":["williams858"],"app":"steemit/0.1"}
created2017-08-21 20:46:36
last_update2017-08-21 20:46:36
depth2
children3
last_payout2017-08-28 20:46:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length612
author_reputation362,393,802,961,900
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,472,755
net_rshares1,563,029,430
author_curate_reward""
vote details (1)
@bsameep ·
Thanks @jerrybanfield a followup question

Do you think setting a witness using Google Cloud Platform can help?  Is it too costly? which server are you using?
properties (22)
authorbsameep
permlinkre-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t130114585z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-22 13:01:15
last_update2017-08-22 13:01:15
depth3
children0
last_payout2017-08-29 13:01:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length158
author_reputation1,364,632,466,300
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,532,340
net_rshares0
@sobca ·
@jerrybanfield Would you consider writing a series of blogs or vlogs about how to start with steemit and what are the tricks and tips, basically a content valuable for complete beginners, as I am, to an average user. If you have done such thing, please link it here!
properties (22)
authorsobca
permlinkre-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170822t231651876z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"app":"steemit/0.1"}
created2017-08-22 23:16:51
last_update2017-08-22 23:16:51
depth3
children0
last_payout2017-08-29 23:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length266
author_reputation1,074,656,955
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,581,057
net_rshares0
@williams858 ·
Yes no problem! I am checking your profiles out now and trying to piece together on how to do it! I have looked at doing it before but got fed up and failed in that sense! It s something I would like to test my self and I will check out the discord channels!
properties (22)
authorwilliams858
permlinkre-jerrybanfield-re-williams858-re-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t213558176z
categorywitness
json_metadata{"tags":["witness"],"app":"steemit/0.1"}
created2017-08-21 21:35:57
last_update2017-08-21 21:35:57
depth3
children0
last_payout2017-08-28 21:35:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length258
author_reputation4,622,493,754,804
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,476,372
net_rshares0
@zeidlitwhips ·
Hi @jerrybanfield, I shared an article on Steemit today about cryptocurrency and your name was mentioned in that article because of your experience with cryptocurrencies. I mentioned the source too in my post and incase you want to look at it here's the link. 

https://steemit.com/cryptocurrency/@zeidlitwhips/beginners-guide-to-cryptocurrency-and-how-to-invest-in-it
properties (22)
authorzeidlitwhips
permlinkre-jerrybanfield-get-a-steem-witness-seed-online-today-with-these-ubuntu-linux-commands-20170821t174950627z
categorywitness
json_metadata{"tags":["witness"],"users":["jerrybanfield"],"links":["https://steemit.com/cryptocurrency/@zeidlitwhips/beginners-guide-to-cryptocurrency-and-how-to-invest-in-it"],"app":"steemit/0.1"}
created2017-08-21 17:50:24
last_update2017-08-21 17:50:24
depth1
children0
last_payout2017-08-28 17:50:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length368
author_reputation878,923,045,525
root_title"Get a Steem Witness + Seed Online Today with These Ubuntu Linux Commands!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,459,737
net_rshares0