You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Instead of `chia-start-wallet-ui &` as explained in the [README.md](README.md) you run `chia-start-wallet-server &` in Ubuntu/WSL 2 to allow the Wallet to connect to the Full Node running in Ubuntu/WSL 2. Once you've enabled `chia-start-wallet-server &` you can run `chia.exe` from the unzipped `chia-win32-x64` directory.
Copy file name to clipboardExpand all lines: README.md
+15Lines changed: 15 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,12 @@ If you want to see std::out log output, modify the logging.std_out variable in .
31
31
chia-start-node &
32
32
chia-start-wallet-gui &
33
33
```
34
+
If you're using Windows/WSL 2, you should instead run:
35
+
```bash
36
+
chia-start-node &
37
+
chia-start-wallet-server &
38
+
```
39
+
And then run `chia.exe` from the unzipped `chia-win32-x64` directory in Windows (not Ubuntu/WSL 2.)
34
40
35
41
## Step 3b: Run a farmer + full node + wallet
36
42
Instead of running only a full node (as in 4a), you can also run a farmer.
@@ -45,6 +51,13 @@ chia-create-plots -k 20 -n 10
45
51
chia-start-farmer &
46
52
chia-start-wallet-gui &
47
53
```
54
+
If you're using Windows/WSL 2, you should instead run:
55
+
```bash
56
+
chia-create-plots -k 20 -n 10
57
+
chia-start-farmer &
58
+
chia-start-wallet-server &
59
+
```
60
+
And then run `chia.exe` from the unzipped `chia-win32-x64` directory in Windows (not Ubuntu/WSL 2.)
48
61
49
62
50
63
## Step 3c: Run a timelord + full node + wallet
@@ -65,6 +78,8 @@ When running the servers on Mac OS, allow the application to accept incoming con
65
78
66
79
Ubuntu 18.04 LTS, 19.xx, Amazon Linux 2, and CentOS 7.7 or newer are the easiest linux install environments currently.
67
80
81
+
Windows users (and others) can [download Virtualbox](https://www.virtualbox.org/wiki/Downloads) and install [Ubuntu Desktop 19.10](https://ubuntu.com/download/desktop) in a virtual machine. This will allow you to run all of the chia tools and use the Wallet GUI. There are lots of good howtos on the web including [this one on installing Ubuntu 19.10 Desktop](https://techsviewer.com/how-to-install-ubuntu-19-10-on-virtualbox/).
82
+
68
83
UPnP is enabled by default, to open port 8444 for incoming connections. If this causes issues,
69
84
you can disable it in the configuration. Some routers may require port forwarding, or enabling
0 commit comments