Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每当我使用 gedit 编写代码时,我都可以访问 gedit 或终端,但不能同时访问两者。例如,当我输入 gedit hello.c 时,linux 会在 gedit 中打开文件 hello.c。现在,虽然 gedit 仍在显示 hello.c,但如果不关闭 gedit 中的 hello.c,我将无法在终端中输入任何内容。
我怎样才能解决这个问题,以便我可以同时积极使用终端和 gedit?
谢谢
类型gedit hello.c &
gedit hello.c &
或者,如果您已经在没有&符号的情况下键入了它,请按Ctrl+Z将其发送到后台,然后键入bg以启用 gedit,正如 David 指出的那样。
bg
如果您已经开始 gedit,请按 CTRL + Z,然后键入
bg && disown
dis 将在后台运行 gedit 并从终端中删除它(所以如果你关闭终端,gedit 不会死)