Logiciel Screen sur Qnap Arm intel
Logiciel Screen sur Qnap Arm intel.
Optware plus d’info http://www.nslu2-linux.org/wiki/Optware/HomePage/
Au préalable il faut évidement avoir installé optware ipkg grâce à l’installateur de programme intégré dans l’interface du qnap plus d’info ici
L’autre jour j’ai été on ne peut plus embêté pour lancer un screen sur mon qnap ts-412, il est sur une plateforme arm, pas de souci pour l’installer un petit apt-get install screen dans le prompt mais impossible d’ouvrir un screen j’avais une erreur » Cannot find teminfo entry for ‘xterm-256color » alors je me suis mis à chercher une solution de contournement la voici:
Find out which TERM is supported :
1 2 |
ls /usr/share/terminfo/x |
this will give you a list of supported TERMs i.e.
1 2 3 |
xterm xterm-xfree86 |
set the environment variable:
1 2 |
export TERM=xterm-xfree86 |
and run screen:
1 2 3 |
TERMINFO='/usr/share/terminfo/' screen |