XFCE - Blank text in terminalHow to run xfce-terminal with different commands per tab and keep using the tabs after the commands have returned?Blank screen after logging out of XFCEHow do I determine if a program is running when I start a shell and start that program if it is not already running?How to make Xfce terminal run a command when it starts?How to force Xfce4-Terminal to xtermzsh strange behavior with sudo --stdin and password with random charactersNo users can log inHow to get tear-free rendering with nvidia proprietary?How to start the Xfce Terminal always maximized in Xfce?Why can I use mouse wheel to scroll man page in xfce4-terminal?
What is the fastest integer factorization to break RSA?
OP Amp not amplifying audio signal
How can saying a song's name be a copyright violation?
In Bayesian inference, why are some terms dropped from the posterior predictive?
What are the G forces leaving Earth orbit?
What is required to make GPS signals available indoors?
What is the most common color to indicate the input-field is disabled?
Can compressed videos be decoded back to their uncompresed original format?
Car headlights in a world without electricity
What is a Samsaran Word™?
Are British MPs missing the point, with these 'Indicative Votes'?
Avoiding the "not like other girls" trope?
Knowledge-based authentication using Domain-driven Design in C#
Is there a hemisphere-neutral way of specifying a season?
ssTTsSTtRrriinInnnnNNNIiinngg
Ambiguity in the definition of entropy
Theorists sure want true answers to this!
Using "tail" to follow a file without displaying the most recent lines
How to remove border from elements in the last row?
Implication of namely
How many wives did king shaul have
Why is it a bad idea to hire a hitman to eliminate most corrupt politicians?
Is it "common practice in Fourier transform spectroscopy to multiply the measured interferogram by an apodizing function"? If so, why?
Placement of More Information/Help Icon button for Radio Buttons
XFCE - Blank text in terminal
How to run xfce-terminal with different commands per tab and keep using the tabs after the commands have returned?Blank screen after logging out of XFCEHow do I determine if a program is running when I start a shell and start that program if it is not already running?How to make Xfce terminal run a command when it starts?How to force Xfce4-Terminal to xtermzsh strange behavior with sudo --stdin and password with random charactersNo users can log inHow to get tear-free rendering with nvidia proprietary?How to start the Xfce Terminal always maximized in Xfce?Why can I use mouse wheel to scroll man page in xfce4-terminal?
I've just performed a fresh install of Arch Linux on my laptop (ThinkPad A485, though that's probably not relevant here), and installed XFCE4. Everything seems to be working with the exception of one (very peculiar) issue with the terminal emulator: whenever I open a new terminal window, the output of whatever command I enter is (usually) blank until I either highlight it with my cursor or press another key. For example,
[user@thinkpad ~]$ls
looks like (after pressing ENTER):
[user@thinkpad ~]$ls
(a blank line where the output should be). However, when I press ENTER, any other key, or highlight the blank line with my mouse, the blank line changes, making the terminal now look like
[user@thinkpad ~]$ls
Desktop Documents Downloads Music Pictures Public Templates Videos
which is the (expected) output of ls. This sort of "delay" occurs almost always on the first command I enter in any terminal window, and sometimes at (seemingly) random commands after, particularly with sudo where it will hide the password prompt until the password is entered or some other key is pressed.
A few important things to note:
I'm using bash 5.0.2 for the most part, however, I have also encountered the exact same issue on ksh and fish
I've tried the following terminal emulators and experienced the above issue with all of them under XFCE: xfce4-terminal, gnome-terminal, lxterminal, tilda, mate-terminal, and terminator. All of these have encountered this issue across bash, ksh, and fish. So far I have not been able to recreate the problem in xterm.
- The system has been rebooted several times
- This issue affects SSH sessions as well, blanking out lines of output until highlighted or another key is pressed
- The issue does not come up under other desktop environments -- I've installed LXDE and MATE, and terminal sessions behave exactly as they should with no blanked out lines.
- When the issue does come up, running reset or stty sane usually prevents it from happening again within that terminal window. However, adding stty sane to my .bashrc does not seem to resolve the issue, and any new terminal windows still have the same problem
My .bashrc is pretty vanilla, but here it is:
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
stty sane
alias sudo='sudo -p "Password: "'
alias ls='ls --color=auto'
PS1='[u@h W]$ '
(I had added the sudo -p alias and the stty sane line in hopes of fixing it, but neither has had any effect under bash). My kernel is 5.0.5-arch1-1-ARCH .
Any help is greatly appreciated, and I apologize if this question as a whole seems off as this is my first post here.
bash arch-linux zsh terminal-emulator xfce4-terminal
New contributor
|
show 6 more comments
I've just performed a fresh install of Arch Linux on my laptop (ThinkPad A485, though that's probably not relevant here), and installed XFCE4. Everything seems to be working with the exception of one (very peculiar) issue with the terminal emulator: whenever I open a new terminal window, the output of whatever command I enter is (usually) blank until I either highlight it with my cursor or press another key. For example,
[user@thinkpad ~]$ls
looks like (after pressing ENTER):
[user@thinkpad ~]$ls
(a blank line where the output should be). However, when I press ENTER, any other key, or highlight the blank line with my mouse, the blank line changes, making the terminal now look like
[user@thinkpad ~]$ls
Desktop Documents Downloads Music Pictures Public Templates Videos
which is the (expected) output of ls. This sort of "delay" occurs almost always on the first command I enter in any terminal window, and sometimes at (seemingly) random commands after, particularly with sudo where it will hide the password prompt until the password is entered or some other key is pressed.
A few important things to note:
I'm using bash 5.0.2 for the most part, however, I have also encountered the exact same issue on ksh and fish
I've tried the following terminal emulators and experienced the above issue with all of them under XFCE: xfce4-terminal, gnome-terminal, lxterminal, tilda, mate-terminal, and terminator. All of these have encountered this issue across bash, ksh, and fish. So far I have not been able to recreate the problem in xterm.
- The system has been rebooted several times
- This issue affects SSH sessions as well, blanking out lines of output until highlighted or another key is pressed
- The issue does not come up under other desktop environments -- I've installed LXDE and MATE, and terminal sessions behave exactly as they should with no blanked out lines.
- When the issue does come up, running reset or stty sane usually prevents it from happening again within that terminal window. However, adding stty sane to my .bashrc does not seem to resolve the issue, and any new terminal windows still have the same problem
My .bashrc is pretty vanilla, but here it is:
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
stty sane
alias sudo='sudo -p "Password: "'
alias ls='ls --color=auto'
PS1='[u@h W]$ '
(I had added the sudo -p alias and the stty sane line in hopes of fixing it, but neither has had any effect under bash). My kernel is 5.0.5-arch1-1-ARCH .
Any help is greatly appreciated, and I apologize if this question as a whole seems off as this is my first post here.
bash arch-linux zsh terminal-emulator xfce4-terminal
New contributor
1
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
1
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
1
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
1
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
1
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday
|
show 6 more comments
I've just performed a fresh install of Arch Linux on my laptop (ThinkPad A485, though that's probably not relevant here), and installed XFCE4. Everything seems to be working with the exception of one (very peculiar) issue with the terminal emulator: whenever I open a new terminal window, the output of whatever command I enter is (usually) blank until I either highlight it with my cursor or press another key. For example,
[user@thinkpad ~]$ls
looks like (after pressing ENTER):
[user@thinkpad ~]$ls
(a blank line where the output should be). However, when I press ENTER, any other key, or highlight the blank line with my mouse, the blank line changes, making the terminal now look like
[user@thinkpad ~]$ls
Desktop Documents Downloads Music Pictures Public Templates Videos
which is the (expected) output of ls. This sort of "delay" occurs almost always on the first command I enter in any terminal window, and sometimes at (seemingly) random commands after, particularly with sudo where it will hide the password prompt until the password is entered or some other key is pressed.
A few important things to note:
I'm using bash 5.0.2 for the most part, however, I have also encountered the exact same issue on ksh and fish
I've tried the following terminal emulators and experienced the above issue with all of them under XFCE: xfce4-terminal, gnome-terminal, lxterminal, tilda, mate-terminal, and terminator. All of these have encountered this issue across bash, ksh, and fish. So far I have not been able to recreate the problem in xterm.
- The system has been rebooted several times
- This issue affects SSH sessions as well, blanking out lines of output until highlighted or another key is pressed
- The issue does not come up under other desktop environments -- I've installed LXDE and MATE, and terminal sessions behave exactly as they should with no blanked out lines.
- When the issue does come up, running reset or stty sane usually prevents it from happening again within that terminal window. However, adding stty sane to my .bashrc does not seem to resolve the issue, and any new terminal windows still have the same problem
My .bashrc is pretty vanilla, but here it is:
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
stty sane
alias sudo='sudo -p "Password: "'
alias ls='ls --color=auto'
PS1='[u@h W]$ '
(I had added the sudo -p alias and the stty sane line in hopes of fixing it, but neither has had any effect under bash). My kernel is 5.0.5-arch1-1-ARCH .
Any help is greatly appreciated, and I apologize if this question as a whole seems off as this is my first post here.
bash arch-linux zsh terminal-emulator xfce4-terminal
New contributor
I've just performed a fresh install of Arch Linux on my laptop (ThinkPad A485, though that's probably not relevant here), and installed XFCE4. Everything seems to be working with the exception of one (very peculiar) issue with the terminal emulator: whenever I open a new terminal window, the output of whatever command I enter is (usually) blank until I either highlight it with my cursor or press another key. For example,
[user@thinkpad ~]$ls
looks like (after pressing ENTER):
[user@thinkpad ~]$ls
(a blank line where the output should be). However, when I press ENTER, any other key, or highlight the blank line with my mouse, the blank line changes, making the terminal now look like
[user@thinkpad ~]$ls
Desktop Documents Downloads Music Pictures Public Templates Videos
which is the (expected) output of ls. This sort of "delay" occurs almost always on the first command I enter in any terminal window, and sometimes at (seemingly) random commands after, particularly with sudo where it will hide the password prompt until the password is entered or some other key is pressed.
A few important things to note:
I'm using bash 5.0.2 for the most part, however, I have also encountered the exact same issue on ksh and fish
I've tried the following terminal emulators and experienced the above issue with all of them under XFCE: xfce4-terminal, gnome-terminal, lxterminal, tilda, mate-terminal, and terminator. All of these have encountered this issue across bash, ksh, and fish. So far I have not been able to recreate the problem in xterm.
- The system has been rebooted several times
- This issue affects SSH sessions as well, blanking out lines of output until highlighted or another key is pressed
- The issue does not come up under other desktop environments -- I've installed LXDE and MATE, and terminal sessions behave exactly as they should with no blanked out lines.
- When the issue does come up, running reset or stty sane usually prevents it from happening again within that terminal window. However, adding stty sane to my .bashrc does not seem to resolve the issue, and any new terminal windows still have the same problem
My .bashrc is pretty vanilla, but here it is:
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
stty sane
alias sudo='sudo -p "Password: "'
alias ls='ls --color=auto'
PS1='[u@h W]$ '
(I had added the sudo -p alias and the stty sane line in hopes of fixing it, but neither has had any effect under bash). My kernel is 5.0.5-arch1-1-ARCH .
Any help is greatly appreciated, and I apologize if this question as a whole seems off as this is my first post here.
bash arch-linux zsh terminal-emulator xfce4-terminal
bash arch-linux zsh terminal-emulator xfce4-terminal
New contributor
New contributor
New contributor
asked 2 days ago
mk73mk73
112
112
New contributor
New contributor
1
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
1
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
1
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
1
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
1
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday
|
show 6 more comments
1
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
1
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
1
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
1
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
1
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday
1
1
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
1
1
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
1
1
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
1
1
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
1
1
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday
|
show 6 more comments
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
mk73 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509773%2fxfce-blank-text-in-terminal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
mk73 is a new contributor. Be nice, and check out our Code of Conduct.
mk73 is a new contributor. Be nice, and check out our Code of Conduct.
mk73 is a new contributor. Be nice, and check out our Code of Conduct.
mk73 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509773%2fxfce-blank-text-in-terminal%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Thanks for the reply. echo $TERM outputs xterm-256color. As for the color combinations, I've played around with a variety of different ones (dark on light, light on dark, etc.) but I'll see if set -x produces anything meaningful
– mk73
2 days ago
1
set -x doesn't produce anything unusual either (though it is affected by the blank spaces just at much). For example, running ls after set -x produces + ls --color=auto (which makes sense, as that's alias I have for "ls" in my bashrc)
– mk73
2 days ago
1
@StéphaneChazelas In XFCE I'm using xfwm4. I tried installing rxvt, and after several attempts I have not been able tor ecreate the issue there, so maybe using an emulator which is not dependent on VTE is one workaround.
– mk73
yesterday
1
@egmont here's the output of printenv in LXDE: pastebin.com/StTV6Sq6 and from XFCE: pastebin.com/whxW51Yq I'll summarize the differences in a moment
– mk73
yesterday
1
xfce seems to have SESSION_MANAGER=local/thinkpad:@/tmp/.ICE-unix/4504,unix/thinkpad:/ , however, LXDE doesn't have any such line when running printenv. But both show the same VTE version
– mk73
yesterday