On 26/04/17 16:26, linshan--- via shifter-users wrote: > > hello,i have a question about xpra installation; > i install like(ubuntu 14.04): > > > $ sudo su - > # apt-get install curl > # curl http://winswitch.org/gpg.asc | apt-key add - > > # echo "deb http://winswitch.org/ trusty main" > > /etc/apt/sources.list.d/winswitch.list; > # apt-get install software-properties-common >& /dev/null; > # add-apt-repository universe >& /dev/null; > # apt-get update; > > # apt-get install xpra > > $ xpra start --bind-tcp=0.0.0.0:10000 --html=on --start-child=xterm > > goto : http://localhost:10000 > get error : disconnect : invalisd packet header, http get request ? > > what i should do ? If you look in your server log file, you will find this message: Error: cannot import websockify connection handler: the html server will not be available
That's because the version of websockify in Ubuntu Trusty is way too old to work. Your options: * upgrade Ubuntu Trusty to a newer version: Xenial is known to work. * upgrade websockify, just remove the package already installed and install the latest version from source: apt-get remove websockify apt-get install setuptools easy_install websockify Cheers Antoine > thank you ! > > > [email protected] > _______________________________________________ > shifter-users mailing list > [email protected] > http://lists.devloop.org.uk/mailman/listinfo/shifter-users > _______________________________________________ shifter-users mailing list [email protected] http://lists.devloop.org.uk/mailman/listinfo/shifter-users
