I had the same error on Debian: "Got end of file from keyboard"Ras wrote: ↑Sat Jan 17, 2026 11:09 pm I have a weird issue under Linux Mint 22.2 - something I didn't have earlier. When I start Xboard from the start menu withthen it fails. There's a dialogue box that says "Got end of file from keyboard", and clicking "OK" ends Xboard.Code: Select all
xboard -zp -ics -icshost nightmare-chess.nl -icshelper /opt/chess/timeseal/openseal -fUCI -fcp /opt/chess/engines/CT800_V1.46 -fd /opt/chess/engines/ -autoKibitz -keepAlive 1
However, when I use the same command as above from the terminal, it works, though I have to use the terminal for the chat interface. It's just that the Xboard ICS chat function doesn't seem to work.
Any ideas anyone? What does "end of file from keyboard" mean in this context?
I think that xboard needs a terminal to run, even that it has an ICS chat window it does not work like in WinBoard, where all chat messages are shown in the chat window, xboard shows all messages and command outputs in the terminal not on any window inside xboard
This is the start of my script to run xboard:
Detect if we are running inside a console window, if not run the script using your preferred terminal emulator
Code: Select all
if [ ! -t 1 ]; then
qterminal -e "bash -c '$0; exec bash'" &
exit 1
fi
# run xboard command here