create account

HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS) by starstrings01

View this thread on: hive.blogpeakd.comecency.com
· @starstrings01 ·
$19.52
HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)
<div class="text-justify">

![20221204_040708_0000.jpg](https://files.peakd.com/file/peakd-hive/starstrings01/23xAe19gCt5fmbYuUXGe9yQbfnfcQgnST3wArJLoanNFBZh6HfCcSpTTfVYvJzFzb9GQJ.jpg)

<div class="pull-right">

<sub><sub>_**π–£π–Ύπ—Œπ—‚π—€π—‡π–Ύπ–½ π—Žπ—Œπ—‚π—‡π—€ 𝖼𝖺𝗇𝗏𝖺**_</sub></sub>

</div>

---

Before I begin, please accept my apologies for the difficulties I've had in documenting my learning on my blog, which is primarily due to difficulties balancing school and personal learning. Now I see an opportunity to document and share something I recently learned about: ***How to Synchronize Vagrant Directories with Host Machine***

First I need to ask this question: 
<center>Why do we need to Sync the Vagrant Directory with our Host Machine?</center>

The obvious reason for this is so that we can recover our critical files or scripts if the host machine is destroyed. This is why it is critical to understand how to do it.

**PREREQUITE:**

- Knowing Basic Shell Commands
- A Provisioned Vagrant Linux machine
- Git Bash or Visual Studio code

So we begin:

To do this, I changed my directory to where my vagrant machine is located in my system, so I can edit my vagrant file. I am using the terminal of my Visual Studio Code to do this. 


![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_09_52 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t6zNo9aLghBzB5uYdHX9ppsg332vPTsNSG6tgpcEYZRxGVu5zcCGBaPvgXyHCcQKZXE.png)

Since I have different machines in my folder, I would be selecting one and log into that machine. To see the status of the machines in my folder, I input the command ```vagrant global-status```



![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_14_22 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo43PQ9srXQbBzpVsGAa6QEAWUakASgMSfNGauqMq81oAipchZPvo6BzZXcQZMgn3Rt.png)

I would be making use of the master machine which I already have running. if your machine is powered off for instance, to power it up and login, you would need to first run ```vagrant up``` or ```vagrant up machine-name```  for instance, I would run ```vagrant up master``` to powerup my machine. From the image below, you would notice that I have already powered off the machine previously with the command ```vagrant halt```


![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_20_26 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo43Nd9HLERGBa1AZjJV9QFuzQryDQjhowWwGKo7bHtUmUs5aGnxzRDNBw7m7csQaGF.png)

Then to log in to the machine, I used the command ```vagrant ssh master``` to do this. 

![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_24_07 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23tGRBzhZmdNAWT9MzzDL3EQeywXDvMFdfVbVjNtfmqyAfHH7Rq1BGkaFxMrRnjLt612a.png)


![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_27_19 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo1vVZeqmWULiZoWMX75n6fP9SJyrXotpLNRFsSzookvL353jnsd8iVmPgVTB6HRzyV.png)

##### <center>CREATING A CUSTOM SYNC VAGRANT DIRECTORY TO HOST MACHINE</center>

On the vagrant machine, there is already a sync directory to the host machine which we can find when we run the command ```cd /vagrant```... So if we create a folder in that directory, it would automatically save in the directory of our host machine. 

![Vagrantfile - machines - Visual Studio Code 12_3_2022 10_59_57 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t6zEAJhcyhVLCoeVi3usuJeXoYQ2HJdCWzi7H7swrD8SmhbKv6VZWYAGogcYeN53Tcq.png)

The folder at the left side of the VS code is the directory of my host machine. You would see that after I enter into the vagrant directory, I would find the same folders and items on my host machine also in the vagrant machine. 

To prove this, I would run the command ``ls`` to show all the folders and files in the vagrant directory.


![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_04_29 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23tRr92ZroaH25mckxKwzab4jNs9JqSTZERVS9d7GnZXjo7yY9LXLyQBXa8rujgVjgZDw.png)

Note: The .vagrant directory in the host machine is a hidden directory which can only be viewed if the command ``ls -a`` is run

![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_07_45 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23tRrWC5h8sxhRLDS3GR94kuH3qUsid3DSjZodhSjk2dFsYuvTJDGoHxxStXraqc1PJmD.png)

In this ``/vagrant`` directory, any file or folder we create in the vagrant machine would automatically be saved on the host machine as well. 

But what if we want to save it somewhere else, maybe a custom directory of our choice, how do we do it? To do this we need to edit the Vagrantfile and put in the config line below in it.

<center>```config.vm.synced_folder "/path/host/dir", "/path/vm/dir"```</center>

The /path/host/dir is the directory location on your host machine where you would like your files to be sync to, while the /path/vm/dir is the directory location on your Virtual Machine where you would want the host machine to sync to.

So I would create a new folder on my desktop and then sync that folder to my virtual machine. In the Image below, I create a folder on my desktop and named it **starstrings01 scritps**.


![Desktop 12_3_2022 11_24_33 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo1wQK7T49YXRqJSrEKb7r9NHvTKgJDYXbEySd4eDjj5sjku5ksMXNy93R88cVYK8yv.png)

Then I open the folder to copy the file path: ```C:\Users\Gifted-Dev\Desktop\starstrings01 scripts```... Then edit the file path by removing the C: and changing the backwards slashs `(\)` to forward slashes `(/)` to make it: ```/Users/Gifted-Dev/Desktop/starstrings01 scripts```

Then I would be making use of a custom directory for my virtual machine to be: `/opt/scripts`

Therefore the config line I would be adding to my vagrantfile is: 

   <center>`config.vm.synced_folder "/Users/Gifted-Dev/Desktop/starstrings01 scripts", "/opt/scripts"`</center>

Which has been added in line 22 of my Vagrantfile

![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_36_36 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/48FDqd13NZpWjzyfGiEcF1ii4NZRq7umiHmZ4noYSNgidYDyk9g98gdsKSd41MTXYM.png)


![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_39_40 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t6zfm2q5o4SUmeCHhqiu8Gs5sMgwAQkz9tgAbVXTErpDVyepHCYcp47LHjPLyDAFSvZ.png)

Obviously, your vagrantfile may not look like mine, you only have to uncomment this line in your vagrantfile and make necessary changes to your preferred path.


![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_43_31 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23tGRVPFA8euWmgudZNx2ooku9EbgKpTefVufJngiqDacKUK4fTbCdb29N2zn9zW1XzU5.png)

After changes has been made, reload your vagrant machine to save changes by using the ```vagrant reload``` command. While it is being loaded, your sync directory path would be shown in the logs. After then you ssh (log in) into your machine.


![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_47_07 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t6zbLHA4RfVzPLuzrToTU4MCJfKpc3NZe9W8yavtALeBXiz3Wjv2gUUExDu9BwAweDz.png)


![Vagrantfile - machines - Visual Studio Code 12_3_2022 11_50_49 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t752GssU5R1qhTyutqQSRqEYcnZ3SCB4E2ockofuA4UE3kketPTB8WwsNDCKkCj1iUF.png)

![Get Started - starstrings01 scripts - Visual Studio Code 12_3_2022 11_58_30 PM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t6zyZj6MnXzb42aGfzyMwXAhva434og8NJrYiWoKDcpmjKCJSMTU4XBAkcVneUvDtUP.png)


After you have logged in, then you can change the directory into your new file path....So when I changed the directory to ```/opt/scripts```, the path is empty also because the path is new directory and we haven't created any file in it.

If I create any file in the vagrant machine, automatically it would upload the upload on the host machine. You can see in the image below.


![Get Started - starstrings01 scripts - Visual Studio Code 12_4_2022 3_24_19 AM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23t72Xd85AkeRuAdjsQbiEAUUQvFVtwFpp9U9ipryjtyKEN1YuhucwGbPn2mR2sHpziyN.png)

In the image above, I tried to create 5 files named DevOps.sh. After the file was created in the vagrant machine, it was automatically uploaded in my custom directory i.e starstrings01 scripts folder.


![Get Started - starstrings01 scripts - Visual Studio Code 12_4_2022 3_28_34 AM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo1uwUSV7zxddicmdouWddNSguS8C83oMKnZgWLxsRkZpW3VZYVGQPQTLr5tTyPvD1D.png)


![Get Started - starstrings01 scripts - Visual Studio Code 12_4_2022 3_30_25 AM.png](https://files.peakd.com/file/peakd-hive/starstrings01/23swdzvMYxHeALhtfaqPuyWD18ciFSGRJdJ3SLLByN3xDadVwDxjVgwLgvdHuQ9JcCvbu.png)


![starstrings01 scripts 12_4_2022 3_31_41 AM.png](https://files.peakd.com/file/peakd-hive/starstrings01/Eo1vTqQ8mGUr1GMgRDvEQjR25wcCtVAZZd5LdKDPeakmohMCDDLz4RtfiZSGzwDXTWG.png)

From the above images you see that you have finally been able to create a custom home directory to sync with your vagrant machine.

### SUMMARY

The whole idea of this topic is on how to create a custom directory on your host machine to be able to backup your files if in any case your vagrant machine gets destroyed. And during the course of this lesson we have discussed:

- How to start up your Vagrant machine
- How to check the global Status of your vagrant machines
- How to stop your vagrant machine from running
- How to SSH into a Vagrant machine
- How to check for hidden folders in your vagrant machine
- Finally, how to create a custom directory on your host machine to sync with your vagrant machine.

---

### <center> WHO IS STARSTRINGS01 </center>

---

<div class="pull-left">


<center>![image.png](https://files.peakd.com/file/peakd-hive/starstrings01/AK7xcxJMNXNSsRMjNThqUGyM4TUZESzubTPprqMxAV6bQgq3jhAWWSYqfEhPe7M.png)<br><sub>_Designed by @ grisvisa_</sub></center>


</div>

<div class="text-justify">


<sub>*Starstrings01, also known as Giftedhands, attends the Federal University of Agriculture in Abeokuta to study Mechatronics Engineering. He is a lover of the hive, a guitarist from Nigeria, and a student.*</sub> 

<sub>*His ambition on Hive is to be more than just an ordinary blogger; he wants to be someone with a purpose. That's why he started the newbies initiative @newbies-hive to help guide and support newbies. Please follow the @newbies-hive curation trail by clicking [here](https://hive.vote/dash.php?trail=newbies-hive&i=1).*</sub>

<sub>*He tries to juggle education with being active on the chain, but his love and passion for Hive keep him on track..*</sub>





---
<center>_All images are mine except indicated otherwise_<br><sub>_All gifs included are powered by Tenor_</sub></center> 

___

![54TLbcUcnRm3sWQK3AJf6fuxkTxiKXRNCarffscTjF9JnBqLzj89NH5s1rKH2Cga4QvMPvvEcb4koTvuCHZXnviw8k7xAcqd9HsbFKjw6hj1Y72M87h86FHy9hno4Dmynf1K26XEe.png](https://files.peakd.com/file/peakd-hive/starstrings01/nvnkde2T-54TLbcUcnRm3sWQK3AJf6fuxkTxiKXRNCarffscTjF9JnBqLzj89NH5s1rKH2Cga4QvMPvvEcb4koTvuCHZXnviw8k7xAcqd9HsbFKjw6hj1Y72M87h86FHy9hno4Dmynf1K26XEe.png)
<center>

#### IF YOU LOVE THIS POST, YOU CAN KINDLY SUPPORT IT WITH YOUR COMMENTS, REBLOG AND UPVOTE. IT WOULD BE MUCH APPRECIATED


</center>

![54TLbcUcnRm3sWQK3AJf6fuxkTxiKXRNCarffscTjF9JnBqLzj89NH5s1rKH2Cga4QvMPvvEcb4koTvuCHZXnviw8k7xAcqd9HsbFKjw6hj1Y72M87h86FHy9hno4Dmynf1K26XEe.png](https://files.peakd.com/file/peakd-hive/starstrings01/nvnkde2T-54TLbcUcnRm3sWQK3AJf6fuxkTxiKXRNCarffscTjF9JnBqLzj89NH5s1rKH2Cga4QvMPvvEcb4koTvuCHZXnviw8k7xAcqd9HsbFKjw6hj1Y72M87h86FHy9hno4Dmynf1K26XEe.png)

##### THANKS FOR VISITING MY BLOG πŸ˜‡πŸ’•

</div>



</div>



πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 348 others
πŸ‘Ž  ,
properties (23)
authorstarstrings01
permlinkhow-to-sync-vagrant-directories-with-host-machine-windows
categoryhive-169321
json_metadata{"app":"peakd/2022.11.2","format":"markdown","tags":["programming","development","tech","writing","proofofbrain","vyb","palnet","archon"],"users":["newbies-hive"],"image":["https://files.peakd.com/file/peakd-hive/starstrings01/23xAe19gCt5fmbYuUXGe9yQbfnfcQgnST3wArJLoanNFBZh6HfCcSpTTfVYvJzFzb9GQJ.jpg","https://files.peakd.com/file/peakd-hive/starstrings01/23t6zNo9aLghBzB5uYdHX9ppsg332vPTsNSG6tgpcEYZRxGVu5zcCGBaPvgXyHCcQKZXE.png","https://files.peakd.com/file/peakd-hive/starstrings01/Eo43PQ9srXQbBzpVsGAa6QEAWUakASgMSfNGauqMq81oAipchZPvo6BzZXcQZMgn3Rt.png","https://files.peakd.com/file/peakd-hive/starstrings01/Eo43Nd9HLERGBa1AZjJV9QFuzQryDQjhowWwGKo7bHtUmUs5aGnxzRDNBw7m7csQaGF.png","https://files.peakd.com/file/peakd-hive/starstrings01/23tGRBzhZmdNAWT9MzzDL3EQeywXDvMFdfVbVjNtfmqyAfHH7Rq1BGkaFxMrRnjLt612a.png","https://files.peakd.com/file/peakd-hive/starstrings01/Eo1vVZeqmWULiZoWMX75n6fP9SJyrXotpLNRFsSzookvL353jnsd8iVmPgVTB6HRzyV.png","https://files.peakd.com/file/peakd-hive/starstrings01/23t6zEAJhcyhVLCoeVi3usuJeXoYQ2HJdCWzi7H7swrD8SmhbKv6VZWYAGogcYeN53Tcq.png","https://files.peakd.com/file/peakd-hive/starstrings01/23tRr92ZroaH25mckxKwzab4jNs9JqSTZERVS9d7GnZXjo7yY9LXLyQBXa8rujgVjgZDw.png","https://files.peakd.com/file/peakd-hive/starstrings01/23tRrWC5h8sxhRLDS3GR94kuH3qUsid3DSjZodhSjk2dFsYuvTJDGoHxxStXraqc1PJmD.png","https://files.peakd.com/file/peakd-hive/starstrings01/Eo1wQK7T49YXRqJSrEKb7r9NHvTKgJDYXbEySd4eDjj5sjku5ksMXNy93R88cVYK8yv.png","https://files.peakd.com/file/peakd-hive/starstrings01/48FDqd13NZpWjzyfGiEcF1ii4NZRq7umiHmZ4noYSNgidYDyk9g98gdsKSd41MTXYM.png","https://files.peakd.com/file/peakd-hive/starstrings01/23t6zfm2q5o4SUmeCHhqiu8Gs5sMgwAQkz9tgAbVXTErpDVyepHCYcp47LHjPLyDAFSvZ.png","https://files.peakd.com/file/peakd-hive/starstrings01/23tGRVPFA8euWmgudZNx2ooku9EbgKpTefVufJngiqDacKUK4fTbCdb29N2zn9zW1XzU5.png","https://files.peakd.com/file/peakd-hive/starstrings01/23t6zbLHA4RfVzPLuzrToTU4MCJfKpc3NZe9W8yavtALeBXiz3Wjv2gUUExDu9BwAweDz.png","https://files.peakd.com/file/peakd-hive/starstrings01/23t752GssU5R1qhTyutqQSRqEYcnZ3SCB4E2ockofuA4UE3kketPTB8WwsNDCKkCj1iUF.png"]}
created2022-12-04 03:12:39
last_update2022-12-04 03:12:39
depth0
children4
last_payout2022-12-11 03:12:39
cashout_time1969-12-31 23:59:59
total_payout_value9.698 HBD
curator_payout_value9.823 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11,762
author_reputation942,630,974,283,386
root_title"HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)"
beneficiaries
0.
accounthive-169321
weight200
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,832,121
net_rshares41,619,061,126,462
author_curate_reward""
vote details (414)
@arcange ·
Dear @starstrings01,<br>Your support for the current HiveSQL proposal (#138) is much appreciated but the proposal will expire soon!<br>May I ask you to review and support the new proposal so HiveSQL can stay free to use for the community?<br>You can support the new proposal (#247) on [Peakd](https://peakd.com/me/proposals/247), [Ecency](https://ecency.com/proposals/247), [Hive.blog](https://wallet.hive.blog/proposals) or [using HiveSigner](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22247%22%5D&approve=true).<br><br>Thank you!
properties (22)
authorarcange
permlinknotify-starstrings01-20221205013651
categoryhive-169321
json_metadata""
created2022-12-05 01:36:51
last_update2022-12-05 01:36:51
depth1
children0
last_payout2022-12-12 01:36: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_length555
author_reputation1,146,611,356,767,317
root_title"HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,855,576
net_rshares0
@batertool7 ·
My experience with AOL was not the best - problems with mail and slow support. Many users complain about poor spam filtering. For more details, visit https://aol.pissedconsumer.com/customer-service.html Need to improve the quality of service.
properties (22)
authorbatertool7
permlinkre-starstrings01-sw9mzt
categoryhive-169321
json_metadata{"tags":["hive-169321"],"app":"peakd/2025.5.6","image":[],"users":[]}
created2025-05-14 19:19:06
last_update2025-05-14 19:19:06
depth1
children0
last_payout2025-05-21 19:19: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_length242
author_reputation-13,507,811,735
root_title"HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id142,729,857
net_rshares0
@hivebuzz ·
Congratulations @starstrings01! You have completed the following achievement on the Hive blockchain And have been rewarded with New badge(s)

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@starstrings01/replies.png?202212032233"></td><td>You got more than 15000 replies.<br>Your next target is to reach 15500 replies.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@starstrings01) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-102201/@hivebuzz/wc2022-recap-r16-day1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/uNPMgnd.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-recap-r16-day1">HiveBuzz World Cup Contest - Round of 16 - Recap of Day 1</a></td></tr><tr><td><a href="/hive-122221/@hivebuzz/pum-202211-delegations"><img src="https://images.hive.blog/64x128/https://i.imgur.com/fg8QnBc.png"></a></td><td><a href="/hive-122221/@hivebuzz/pum-202211-delegations">Our Hive Power Delegations to the November PUM Winners </a></td></tr><tr><td><a href="/hive-102201/@hivebuzz/wc2022-recap-day13"><img src="https://images.hive.blog/64x128/https://i.imgur.com/uNPMgnd.png"></a></td><td><a href="/hive-102201/@hivebuzz/wc2022-recap-day13">HiveBuzz World Cup Contest - Recap of the last day of the group stage.</a></td></tr></table>
properties (22)
authorhivebuzz
permlinknotify-starstrings01-20221204t031750
categoryhive-169321
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-12-04 03:17:51
last_update2022-12-04 03:17:51
depth1
children0
last_payout2022-12-11 03:17: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_length1,538
author_reputation370,313,823,790,458
root_title"HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,832,163
net_rshares0
@stemsocial ·
re-starstrings01-how-to-sync-vagrant-directories-with-host-machine-windows-20221205t010732205z
<div class='text-justify'> <div class='pull-left'>
 <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div>

Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us!

Please consider delegating to the @stemsocial account (85% of the curation rewards are returned).

You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support.&nbsp;<br />&nbsp;<br />
</div>
properties (22)
authorstemsocial
permlinkre-starstrings01-how-to-sync-vagrant-directories-with-host-machine-windows-20221205t010732205z
categoryhive-169321
json_metadata{"app":"STEMsocial"}
created2022-12-05 01:07:30
last_update2022-12-05 01:07:30
depth1
children0
last_payout2022-12-12 01:07: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_length565
author_reputation22,915,413,852,146
root_title"HOW TO SYNC VAGRANT DIRECTORIES WITH HOST MACHINE (WINDOWS)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id118,854,995
net_rshares0