放入BG後進程卡住

放入BG後進程卡住

我正在嘗試使用(Ctrl+Z + bg)將進程放入後台:

[andrey@localhost dir]$ git clone https://github.com/rust-lang/rust
Cloning into 'rust'...
remote: Counting objects: 465324, done. 
remote: Compressing objects: 100% (7/7), done.
^Zceiving objects:  15% (73683/465324), 49.82 MiB | 240.00 KiB/s   
[1]+  Stopped                 git clone https://github.com/rust-lang/rust
[andrey@localhost dir]$ bg
[1]+ git clone https://github.com/rust-lang/rust &
Receiving onjects: 37% (174981/465435), 274.21MB | 217.00 KiB/s

現在我被困在前台的進程中,只是現在我無法再阻止它了,也就是說 Ctrl+Z 不再執行任何操作。我做錯了什麼?

我在虛擬機器內的 Fedora 21 上使用 bash。

相關內容