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를 사용하고 있습니다.

관련 정보