[konsole] [Bug 449136] Not backgrounding the process started from terminal

bugzilla_noreply at kde.org bugzilla_noreply at kde.org
Fri Jan 28 23:08:22 GMT 2022


https://bugs.kde.org/show_bug.cgi?id=449136

ninjalj at gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ninjalj at gmail.com

--- Comment #1 from ninjalj at gmail.com ---
Unless I'm misunderstanding something, not a konsole/yakuake issue.

Backgrounding doesn't prevent a process from printing to the terminal (unless
tostop is set, but it typically isn't set. See the output of "stty -a"). To
prevent logs from getting printed, they should be redirected, e.g:

gedit foo.txt >/dev/null 2>&1 & 
or
gedit foo.txt >& /dev/null &  # (if your shell supports that)
or
gedit foo.txt 2> /dev/null &  # (if you only want stderr redirected)

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the konsole-devel mailing list