Guys,
Observe how ALL the ecosystem, the whole Bitcoin Economy is very close to you...
Installation of the Bitcoin Client binary or via source code, compiling it independently with little command lines. No configuration files needed.
Source:
http://www.bitcoin.org/ -> Downloads - Ubuntu PPA
Creating your Bitcoin Wallet on Ubuntu Linux versions 11.10, 11.04 and earlier - 32 and 64 bits supported
1- Install Ubuntu Desktop 11.10 in your computer (
Ubuntu.com);
2- Open the Terminal app and type the following commands:
sudo aptitude install python-software-properties # installs the following command:
sudo add-apt-repository ppa:bitcoin/bitcoin # Add the Bitcoin Ubuntu PPA repository in your Ubuntu
sudo aptitude update # Update the package list (files under /etc/apt/)
sudo aptitude install bitcoin-qt # For desktops or:
sudo aptitude install bitcoind # For network servers like exchanges, pools, gambling, etc...
NOTE.: If the command "aptitude" isn't found, replace it with "apt-get". Or, install the "aptitude" (recommended) with: "sudo apt-get install aptitude".
Ready! Look for Bitcoin under "Applications menu" in Ubuntu 11.04 Desktop 2D, or type "bitcoin" in the search field of Ubuntu 11.10 Dashboard (Dash home).
3 - Advanced: obtaining and compiling the source code of Bitcoin:
Downloading the Bitcoin source code:
sudo sed -i -e "s/# deb/deb/g" /etc/apt/sources.list # Activate the source code repositories of the whole Ubuntu (also, check the file /etc/apt/sources.list.d/bitcoin-bitcoin-*.list)
sudo aptitude update
sudo apt-get build-dep bitcoin # Download the build dependencies to compile Bitcoin under Ubuntu.
apt-get source bitcoin # Download the Bitcoin source code prepared to be compiled and packaged under Ubuntu.
Compiling your Bitcoin:
cd bitcoin-0.5.0
dpkg-buildpackage -uc -us -rfakeroot
ls -l ../
The Bitcoin packages of YOUR own Bitcoin binary are the files with ".deb" extention, which you can see with the command "ls -l ../" above.
Now you just need some good C / C++ / Qt developer, plus your ideas, to make your own custom Bitcoin Client!!
Best!
Thiago