有時候需要在群暉後台執行一些後台任務,使用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.
|