Hello, when I run the first time sudo blink-server I got this errors in the server after using swipe area:
No protocol specified
Error: Can't open display: (null)
Failed creating new xdo instance
I found a solution that worked for me:
- Add these instructions to ~/.bashrc file:
export DISPLAY=:0
export XAUTHORITY=~/.Xauthority
- Apply changes:
- Remove old .Xauthority file
- Create a blank .Xauthority file
- Generate a new .Xauthority file:
xauth generate :0 . trusted
- Create a new magic-cookie key
randomkey=`/usr/bin/ksh -c 'echo $(( $RANDOM * $RANDOM * 2 ))'`
- Add a new entry for another server
xauth add ${HOST}:0 . $randomkey
- Run the server
xhost +local:
sudo blink-server
If someone has a better solution please let me know, I'm just a beginner in Linux environment.
Hello, when I run the first time
sudo blink-serverI got this errors in the server after using swipe area:I found a solution that worked for me:
If someone has a better solution please let me know, I'm just a beginner in Linux environment.