Ubuntu
為什麼我在 Ubuntu 中得到“bitcoind: command not found”?
我已經在我的 Ubuntu 桌面上建構了比特幣原始碼,並通過 apt-get 安裝了適當的庫並建構了一些。
當我做:
cd src bitcoind -daemon
我得到錯誤:
bitcoind: command not found
當我這樣做時,
./bitcoin
我得到:bash: ./bitcoin: No such file or directory
我究竟做錯了什麼?
轉到包含
bitcoind
二進製文件的目錄。確保它是可執行的:
chmod +x bitcoind
現在執行它:
./bitcoind -daemon
此外,如果您只想執行
bitcoind
(不帶./bitcoind
),請將其添加到您的可執行路徑中:
- 正如安德魯提到的,首先一定要**
chmod +x bitcoind
**在你的src
目錄中。- 還在
src
目錄中,執行**pwd
**獲取完整路徑(例如/home/alex/src
)- 將其添加到您的 .profile 中**
echo "export PATH=$PATH:/home/alex/src" >> ~/.profile
**現在,您可以
bitcoind
在以使用者身份登錄時從系統中的任何位置執行。