How to create an account
There are several ways to create a new account.
Please be aware that accounts on the Main Network and the testnet (Morden) are separate. If you don't want to test, you need only accounts on the Main Network
MIST Wallet
GUI via Hotkey
In the Mist GUI, just hit Ctrl + N to open the "Create account" dialogue. Enter a new password and you're done.
GUI via Menu
The same function can be called via the Menubar: Accounts > New account
geth
geth is the ethereum node, writen in go-lang. The MIST Wallet uses the geth API for all functions. For further information about managing your accounts with geth look here
Terminal
In a terminal, just execute geth account new
to create a new account. The account will be recognized within MIST.
geth CLI
You can start geth via command line with geth console
. Once in geth, you can create an account using the command personal.newAccount("passphrase")
.
Online Tools
MyEtherWallet has some nice functions to generate single or bulk wallets. You can use these wallets as cold wallets too. MyEtherWallet is client-side-only, the private keys displayed will not be transfered anywhere and will not be stored. So you have to store them or print the codes.