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 を押しても何も起こりません。何を間違えたのでしょうか?

私は VM 内の Fedora 21 で bash を使用しています。

関連情報