有时候需要在群晖后台执行一些后台任务,使用screen会比较方便,但是群晖没有预置screen组件,需要自己安装,本文介绍安装的方法。
通过ipkg安装
需要的文件
screen_4.0.3-2_i686.ipk
http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/screen_4.0.3-2_i686.ipk
termcap_1.3.1-2_i686.ipk
http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/termcap_1.3.1-2_i686.ipk
安装命令
1
2
3
4
5
6
7
8
9
10
11
|
root@DiskStation:~# wget http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/screen_4.0.3-2_i686.ipk
root@DiskStation:~# wget http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/termcap_1.3.1-2_i686.ipk
root@DiskStation:~# ipkg install termcap_1.3.1-2_i686.ipk
Installing termcap (1.3.1-2) to root...
Configuring termcap
Successfully terminated.
root@DiskStation:~# ipkg install screen_4.0.3-2_i686.ipk
Installing screen (4.0.3-2) to root...
Configuring screen
Successfully terminated.
|