2016年8月19日 星期五

用網樂通來挖礦

應該是挖不到了, 不過玩玩看也好
轉錄方法
http://archer61.blogspot.tw/2014/06/httpsblockchain.html

去比特幣的錢包網站申請一個帳號
https://blockchain.info/  


2016年8月18日 星期四

LUbuntu 16.04 隨身碟執行 安裝android studio 跟 Git

Installing Java

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
After that
sudo apt-get install oracle-java8-set-default 
 

Installing Android Studio

  1. Download Android Studio from here, use All Android Studio Packages
  2. Extract the archive file into an appropriate location for your applications, eg: /opt. Use the filename of your downloaded archive, in my example android-studio-ide-141.2178183-linux.zip
    sudo unzip android-studio-ide-141.2178183-linux.zip -d /opt
    
  3. To launch Android Studio, navigate to the /opt/android-studio/bin directory in a terminal and execute ./studio.sh. Or use a desktop file, see below.
    You may want to add /opt/android-studio/bin to your PATH environmental variable so that you can start Android Studio from any directory.
If you are running a 64-bit version of Ubuntu (16.04), you need to install some 32-bit libraries with the following command:
sudo apt-get install lib32stdc++6 or
sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6
So that you don't have this error:
Unable to run mksdcard SDK tool.
 



AS詳細教學
http://askubuntu.com/questions/634082/how-to-install-android-studio-on-ubuntu
64BIT會遇到問題的解法
http://stackoverflow.com/questions/29112107/how-to-solve-unable-to-run-mksdcard-sdk-tool-when-installing-android-studio-on

Git
https://blog.wu-boy.com/2011/04/%E5%9C%A8-ubuntu-%E5%AE%89%E8%A3%9D%E6%88%96%E5%8D%87%E7%B4%9A-git-%E7%89%88%E6%9C%AC%E6%8E%A7%E5%88%B6%E7%9A%843%E7%A8%AE%E6%96%B9%E6%B3%95/