diff --git a/README.md b/README.md
index d54399177d72b8ce0f11243f8c0b589b36fe59b5..ba7ebebf6b2a496c31b18b40208dc50e9ab00015 100644
--- a/README.md
+++ b/README.md
@@ -14,9 +14,9 @@ For the development package please see the [eth-go package](https://github.com/e
 Build
 =======
 
-To build Ethereal (GUI):
+To build Mist (GUI):
 
-`go get github.com/ethereum/go-ethereum/ethereal`
+`go get github.com/ethereum/go-ethereum/mist`
 
 To build the node (CLI):
 
@@ -28,7 +28,7 @@ General command line options
 ====================
 
 ```
-Shared between ethereum and ethereal
+Shared between ethereum and Mist
 -id      Set the custom identifier of the client (shows up on other clients)
 -port    Port on which the server will accept incomming connections
 -upnp    Enable UPnP
@@ -46,7 +46,7 @@ ethereum [options] [filename]
 filename   Load the given file and interpret as JavaScript
 -m       Start mining blocks
 
-Etheral only
+Mist only
 -asset_path    absolute path to GUI assets directory
 ```
 
diff --git a/install.sh b/install.sh
index 9719a1afcbf7c369dadc2228e714a34f3a9698dd..f880aa39baf6f1ec9d328da103bdcebaef5bb9e9 100755
--- a/install.sh
+++ b/install.sh
@@ -2,7 +2,7 @@
 
 if [ "$1" == "" ]; then
 	echo "Usage $0 executable branch ethereum develop"
-	echo "executable    ethereum or ethereal"
+	echo "executable    ethereum or mist"
 	echo "branch        develop or master"
 	exit
 fi
@@ -41,8 +41,8 @@ echo "go-ethereum"
 cd $GOPATH/src/github.com/ethereum/go-ethereum/$exe
 git checkout $branch
 
-if [ "$exe" == "ethereal" ]; then
-	echo "Building ethereal GUI. Assuming Qt is installed. If this step"
+if [ "$exe" == "mist" ]; then
+	echo "Building Mist GUI. Assuming Qt is installed. If this step"
 	echo "fails; please refer to: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go)"
 else
 	echo "Building ethereum CLI."