进程放入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。

相关内容