|
|
Hello Michael,
Congratulations for your PelicanHPC - it´s an excellent product!!
Let´s try to do a small change at make_pelican where you have the option "to make entry into GUI automatic".
If you uncomment the line it works, but when try to use the terminal, receive a message: "user not authorized to run X server, aborting" .
The reason is that when using the startx in .bashrc , the X server uses like default the terminal zero.
To avoid this situation, just include two lines in make_pelican:
echo "if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then" >> /home/user/.bashrc
echo "/usr/bin/startx" >> /home/user/.bashrc
echo "fi" >> /home/user/.bashrc
It works fine for me at 32 and 64 bits.
Regards from Brazil,
AlaNeves
|