Bitcoin Forum
April 16, 2024, 11:47:19 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 »  All
  Print  
Author Topic: DIY,Bitcoin cold wallet USB stick creation step by step guide  (Read 5571 times)
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 10, 2014, 01:40:20 AM
Merited by pooya87 (10), ABCbits (6), NeuroticFish (2)
 #1

DIY,Bitcoin cold wallet USB stick creation step by step guide

Preface

This guide select Electrum and Ubuntu OS to create bitcoin cold wallet USB stick.
Electrum is a light-weight bitcoin wallet, it doesn’t require the bitcoin block chain
data on local and easy to use for newbie.

We trust that the Ubuntu and Electrum downloaded from related official site are
security and reliable.

In the guide,We will create a persistent LiveUsb stick and offline install electrum
wallet.

Requirements
1, One Ubuntu14.04.1 CD. We can download Ubuntu14.04.1 32bits desktop ISO file
and burn it on CD。
2, One USB stick,USB3.0 is better.
3, Ubuntu14.04.1 32bits desktop ISO file from official site.
4, Electrum software from official site.
File list:

File list:
1,file:ubuntu-14.04.1-desktop-i386.iso
md5: a4fc15313ef2a516bfbf83ce44281535
Official web page://www.ubuntu.com/download/desktop
2,file:Electrum-1.9.8.zip
md5: 0f91f548ba64b1f5776a28b1522f07ec
Official web page:https://www.electrum.org/download.html


The MD5 values of Ubuntu and Electrum can be found on official site.
Download above files,and record MD5 values on text file for verify.

MD5 value verify ways:
Windows user:Download WinMD5Free software to verify file。
Linux user: run md5sum filename .

Creation steps

Ⅰ. USB stick partition
We will create two partitions on USB stick and install OS on the second partition.
Because, Windows doesn’t recognize the second partition. This strategy has extra
protection where the USB inserted in online windows machine carelessly.

1,Boot from Ubuntu CD,select “Try Ubuntu” button, and insert USB stick.
2,Click "Dash Home button"(top-left button)->input "disk"->Click "Disks",create partition on the USB stick。

Ⅱ. Create persistent Live-USB stick
Click "Dash Home button"(top-left button)->input "creator"->Click "Startup Disk Creator",(please select "Stored in extra space" option)。

After persistent Live-USB stick creation completion, Boot form the USB stick on a offline PC.
Select “Try Ubuntu” button on welcome screen.

(For Thinkpad PC, press F12 to open the Boot menu during system post.
The shortcut key is various. it may be F12,F2,F10 or ESC.
if it doesn’t works we need look up the computer reference.)

Ⅲ.System settings.
The following steps all run in the terminal window.
1,Change the password of the default user ubuntu (default password is blank)
run
Code:
passwd
2,Disable desktop automatic login
Code:
sudo vi /etc/lightdm/lightdm.conf
Edit content with the following:
Code:
[SeatDefaults]
allow-guest=false
autologin-guest=false
autologin-user=
autologin-user-timeout=0
autologin-session=lightdm-autologin
greeter-show-manual-login=true
3,Disable other terminal automatic login.
Code:
sudo rm /etc/init/tty*.conf
4,Cancel Ubuntu weclome screen when boot.
Code:
sudo vi /media/cdrom/syslinux/syslinux.cfg
Edit content with the following:
Code:
default live
label live
menu label ^Try Ubuntu without installing
kernel /casper/vmlinuz
append noprompt cdrom-detect/try-usb=true persistent file=/cdrom/preseed/ubuntu.seed boot=casper initrd=/casper/initrd.lz quiet splash --

Ⅳ. Create normal account and encrypted folder

1,Create normal account richard.
2,Login with new account: richard, create encrypted Private folder
run
Code:
ecryptfs-setup-private
3,Change electrum to store wallet data in Private folder by default.
Electrum store wallet data in .electrum folder under user home folder by default.( in
the sample is:/home/richard/.electrum)
run:
Code:
cd ~/Private
mkdir .electrum
cd ..
ln -s ~/Private/.electrum .electrum

Ⅴ Close system network connection

Commonly, the cold wallet computer must be disconnect from network physically.
Unplug network cable and close WIFI switch if available.
In the step, we disconnect network on software layer.
1,Click "Dash Home button"-> input "startup" -> click "Startup Applications"
2,Add startup program: nmcli nm enable false

Ⅵ Offline Install Electrum
1.Login with new user:richard
2.Copy Electrum-1.9.8.zip file to the new user home folder: /home/richard
(we can use another clean USB stick to copy the file)
3.Verify the file
In terminal window,goto the home folder.
Code:
cd ~
md5sum Electrum-1.9.8.zip
0f91f548ba64b1f5776a28b1522f07ec Electrum-1.9.8.zip
Verify the MD5 value to make sure it is the same as the value on official site exactly
4. Install Electrum。
Code:
unzip Electrum-1.9.8.zip
5. Run Electrum
Code:
cd ~/Electrum-1.9.8
python electrum

Completion.

For novice, the pdf document with screenshots is more easier to understand,
The pdf file download url:
https://mega.co.nz/#!DwAQyYLQ!rugqZ4ZciMOUXhdW5bAB6rz5D354c5cymWeJqTZcNoM

Richard Huang
BTC: 194qRKhLATLoYsF6V9ficUXEh9FVsHXqQA

Creative Commons Attribution 3.0
2014-11 Chengdu


1713268039
Hero Member
*
Offline Offline

Posts: 1713268039

View Profile Personal Message (Offline)

Ignore
1713268039
Reply with quote  #2

1713268039
Report to moderator
1713268039
Hero Member
*
Offline Offline

Posts: 1713268039

View Profile Personal Message (Offline)

Ignore
1713268039
Reply with quote  #2

1713268039
Report to moderator
1713268039
Hero Member
*
Offline Offline

Posts: 1713268039

View Profile Personal Message (Offline)

Ignore
1713268039
Reply with quote  #2

1713268039
Report to moderator
Whoever mines the block which ends up containing your transaction will get its fee.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713268039
Hero Member
*
Offline Offline

Posts: 1713268039

View Profile Personal Message (Offline)

Ignore
1713268039
Reply with quote  #2

1713268039
Report to moderator
1713268039
Hero Member
*
Offline Offline

Posts: 1713268039

View Profile Personal Message (Offline)

Ignore
1713268039
Reply with quote  #2

1713268039
Report to moderator
btcshare
Member
**
Offline Offline

Activity: 65
Merit: 10


View Profile
November 10, 2014, 01:48:16 AM
 #2

wallet USB sounds nice a wallet!

my twitter:@Bitcoinsell
tzortz
Hero Member
*****
Offline Offline

Activity: 728
Merit: 500



View Profile
November 10, 2014, 08:30:03 AM
 #3

Also backup or clone.

All is Mine!

1H7LUdfx9AFTMSXPsCBror3RDk57zgnc2R
Elwar
Legendary
*
Offline Offline

Activity: 3598
Merit: 2384


Viva Ut Vivas


View Profile WWW
November 10, 2014, 08:46:13 AM
 #4

Do not rely too much on a USB being secure.
http://www.wired.com/2014/07/usb-security/

First seastead company actually selling sea homes: Ocean Builders https://ocean.builders  Of course we accept bitcoin.
cryptworld
Hero Member
*****
Offline Offline

Activity: 714
Merit: 503



View Profile
November 10, 2014, 09:40:43 AM
 #5

I think you should add this truecrypt encryption
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 11, 2014, 06:01:04 AM
 #6

Do not rely too much on a USB being secure.
http://www.wired.com/2014/07/usb-security/

Yes.
To avoid the BAD-USB firmware risk, don't plug the USB stick into untrusted PC.
and don't connect untrusted USB devices (include keyboard,mouse) to your offline wallet computer.
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 14, 2014, 12:53:25 AM
 #7

I think you should add this truecrypt encryption

If you use dedicated PC for cold storage, full filesystem encryption is good.
the performance of full filesystem encryption on USB disk is not well.

pooya87
Legendary
*
Offline Offline

Activity: 3416
Merit: 10487



View Profile
November 14, 2014, 05:51:22 AM
 #8

i cannot find the PDF file in the provided link at the bottom of the comment
nevermind  Grin i clicked the complete link after the #

Quote
For novice, the pdf document with screenshots is more easier to understand,
The pdf file download url:
https://mega.co.nz/#!DwAQyYLQ!rugqZ4ZciMOUXhdW5bAB6rz5D354c5cymWeJqTZcNoM

also, why did you boot Ubutu from USB? isn't it enough to boot it from the Ubuntu CD?
and about the partition that you created on USB. was it for booting Ubuntu or keeping the installed wallet or both?
i meant can't you just create the partition with Ubonto and keep ONLY the wallet there?

sorry if my questions was newbish Smiley

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 17, 2014, 02:25:47 AM
 #9

i cannot find the PDF file in the provided link at the bottom of the comment
nevermind  Grin i clicked the complete link after the #

Quote
For novice, the pdf document with screenshots is more easier to understand,
The pdf file download url:
https://mega.co.nz/#!DwAQyYLQ!rugqZ4ZciMOUXhdW5bAB6rz5D354c5cymWeJqTZcNoM

also, why did you boot Ubutu from USB? isn't it enough to boot it from the Ubuntu CD?
and about the partition that you created on USB. was it for booting Ubuntu or keeping the installed wallet or both?
i meant can't you just create the partition with Ubonto and keep ONLY the wallet there?

sorry if my questions was newbish Smiley
1, Only boot from live Ubuntu CD, can't store any data when next restart PC.
2, Create 2  partition is just a junior protection. Windows OS can't find the 2nd partition.
    Both Ubuntu and wallet keeps in the 2nd partition.
Yes, if you like, you can skip the usb disk partition steps.
AdamWhite
Hero Member
*****
Offline Offline

Activity: 605
Merit: 500



View Profile
November 17, 2014, 02:29:46 AM
 #10

Make sure you also keep paper wallet or other forms of backup, i feel sorry for anyone who only keeps a backup on a USB key. USB keys are unstable and TOTALLY UNSUITABLE for keeping important data long term

many will discover this the hard way...
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 18, 2014, 12:42:08 AM
 #11

Make sure you also keep paper wallet or other forms of backup, i feel sorry for anyone who only keeps a backup on a USB key. USB keys are unstable and TOTALLY UNSUITABLE for keeping important data long term

many will discover this the hard way...
Yes , we need to write down the 12 words Electrm wallet seed on the paper and keep it in safe place.

HeroCat
Hero Member
*****
Offline Offline

Activity: 658
Merit: 500


View Profile
November 18, 2014, 07:51:58 AM
 #12

I do not think that USB stick is safe wallet - there can be a lot of problems. For example, there are viruses, that use USB stick. And if you use one Linux OS - you can use only that one Linux OS, so you can not use USB stick in other machines with different OS then.
pooya87
Legendary
*
Offline Offline

Activity: 3416
Merit: 10487



View Profile
November 18, 2014, 10:46:11 AM
 #13

@huanghq
thanks a lot for creating this walk-through it was so useful

I do not think that USB stick is safe wallet - there can be a lot of problems. For example, there are viruses, that use USB stick. And if you use one Linux OS - you can use only that one Linux OS, so you can not use USB stick in other machines with different OS then.
i have never head of virus on linux! there is none.
the only risks for using this way are: forgetting your passwords and damaging USB stick physically nothing else comes to my mind
and for preventing these two you can write your seed and/or passwords on a piece of paper and keep it safe

.
.BLACKJACK ♠ FUN.
█████████
██████████████
████████████
█████████████████
████████████████▄▄
░█████████████▀░▀▀
██████████████████
░██████████████
████████████████
░██████████████
████████████
███████████████░██
██████████
CRYPTO CASINO &
SPORTS BETTING
▄▄███████▄▄
▄███████████████▄
███████████████████
█████████████████████
███████████████████████
█████████████████████████
█████████████████████████
█████████████████████████
███████████████████████
█████████████████████
███████████████████
▀███████████████▀
█████████
.
huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
November 20, 2014, 03:53:30 AM
 #14

@huanghq
thanks a lot for creating this walk-through it was so useful

I do not think that USB stick is safe wallet - there can be a lot of problems. For example, there are viruses, that use USB stick. And if you use one Linux OS - you can use only that one Linux OS, so you can not use USB stick in other machines with different OS then.
i have never head of virus on linux! there is none.
the only risks for using this way are: forgetting your passwords and damaging USB stick physically nothing else comes to my mind
and for preventing these two you can write your seed and/or passwords on a piece of paper and keep it safe
The viruses can be wrote on USB device firmware.
So don't use any untrusted USB devices (include keyboard,mouse, charger) on wallet PC or mobile.
and don't plug the USB stick into untrusted PC.
Don't flaunt your funds.
fearlesscat10
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


View Profile
December 30, 2014, 03:31:59 PM
 #15

Will try this. Smiley

But why Electrum? Isn't Armory generally better suited for cold wallets?

siameze
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000



View Profile
December 30, 2014, 03:37:06 PM
 #16

Do not rely too much on a USB being secure.
http://www.wired.com/2014/07/usb-security/

While I do think this was a very well written tutorial, Elwar has a point in regards to usb security. I saved a copy of your pdf for future reference however.


                     ▀▀█████████▀████████████████▄
                        ████▄      ▄████████████████
                     ▄██████▀  ▄  ███████████████████
                  ▄█████████▄████▄███████████████████
                ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀████████
                                               ▀▀███▀
    ▄█▀█       ▄▀  ▄▀▀█  ▄▀   █████████████████▄ ██▀         ▄▀█
   ▄█ ▄▀      ▀█▀ █▀ █▀ ▀█▀  ███████████████████ █▀ ▀▀      ▄▀▄▀
  ▄█    ▄███  █     █   █   ████████████████████  ▄█     ▄▀▀██▀ ▄███
███▄▄▄  █▄▄▄ █▄▄ ▄▄▀   █▄▄ ██████████████████▀▀   █▄▄ ▄▄ █▄▄█▄▄▄█▄▄▄
                           ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
                            ▀▀█████████████▄
                                █████████████▄
                                  █████████████▄
                                    ▀███████▀▀▀▀▀
                                      ▀████▀
                                        ▀█▀
LetItRideINNOVATIVE ▬▬▬
DICE GAME
                        ▄███████████▄
                       ██  ██████████▄
                     ▄█████████████  ██▄
            ▄▄▀█▄▄▄▄▄████████████████████▄
        ▄▄█▀   ███████████  █████  ████  █
    ▄██████ ▄▄███████████████████████████▀
 ▄▀▀ ██████████████████████████  ████  █
█  ▄███████████▀▀▀█████████████████████
██████████████    ████████▀▀██████  █▀
██████████████▄▄▄██████████   ▀▀▀▀▀▀▀
███▀ ▀██████████████████████
██    ███████████████████████
██▄▄██████████████████████████
██████████████▀   ██████████
  █████████████   ▄██████▀▀
     ▀▀██████████████▀▀
         ▀▀██████▀▀
PROVABLY
F A I R
▄█████████████▀ ▄█
██            ▄█▀
██          ▄██ ▄█
██ ▄█▄    ▄███  ██
██ ▀███▄ ▄███   ██
██  ▀███████    ██
██    █████     ██
██     ███      ██
██      ▀       ██
██              ██
▀████████████████▀
BUY  BACK
PLANS
[BTC]
LiteCoinGuy
Legendary
*
Offline Offline

Activity: 1148
Merit: 1010


In Satoshi I Trust


View Profile WWW
December 30, 2014, 04:23:35 PM
 #17

nice guide but a hardware-wallet is better for a newbie i think  Lips sealed :

https://bitcointalk.org/index.php?topic=899253.0

bornil267645
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


AltoCenter.com


View Profile WWW
December 31, 2014, 03:23:01 AM
 #18

I am not that much of a fan of USB, and it can get affected.

huanghq (OP)
Member
**
Offline Offline

Activity: 74
Merit: 28


View Profile
March 09, 2015, 01:30:44 AM
 #19

I am not that much of a fan of USB, and it can get affected.
So, I write a simple application to transfer data through air gap by QR code movies:
flipqr : https://bitcointalk.org/index.php?topic=978033.0

jeffhuys
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
March 09, 2015, 01:36:03 AM
 #20

Great guide, will definitely use this in the future. I should really have more backups of my wallets, and I should have a cold wallet as well (paper or something). I don't even trust printers, man. Especially those network-connected ones.

Pages: [1] 2 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!