Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

shell environment dosen't work correctly #252

Closed
Blaubart opened this issue Feb 4, 2022 · 5 comments
Closed

shell environment dosen't work correctly #252

Blaubart opened this issue Feb 4, 2022 · 5 comments

Comments

@Blaubart
Copy link
Contributor

Blaubart commented Feb 4, 2022

when I go to the shell environment, I can issue commands, but no longer see any output. The auto-completion with the tab key no longer works either.

@MaxKellermann
Copy link
Collaborator

Could be caused by a09ef7b - please check if it works after removing that line (requires reboot).

@MaxKellermann
Copy link
Collaborator

Also try redirecting stderr here (without reverting the systemd service change I cited above):

if test -x /bin/bash; then
/bin/bash --login
elif test -x /bin/ash; then
/bin/ash -i
else
/bin/sh
fi

Add to the bash line (and maybe to the other, fallback shell calls):

  /bin/bash --login 2>&1

@Blaubart
Copy link
Contributor Author

Blaubart commented Feb 4, 2022

I removed the line:
StandardError=journal

and it works again

Should I check that, too?
"Also try redirecting stderr here (without reverting the systemd service change I cited above):"

@MaxKellermann
Copy link
Collaborator

Yes, please. We know what caused the regression, and the second test would be a solution.

@Blaubart
Copy link
Contributor Author

Blaubart commented Feb 4, 2022

I removed StandardError=journal and I changed at "meta-openvario/meta-ov/recipes-apps/ovmenu-ng/files/ovmenu-ng.sh" "/bin/bash --login" to "/bin/bash --login 2>&1"

It still works

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants