我想,以取代#Banner none与Banner /etc/sshd_banner该距离/etc/sshd_config.如果我跑
sudo sed -i "s/#Banner none/Banner \/etc\/sshd_banner" /etc/sshd_config
我收到以下错误
sed:1:"/ etc/sshd_config":未终止的替代模式
有关如何解决此问题的任何想法?
我们在生产环境中使一些R代码工作时感到笨拙,作为其中的一部分,我们正在安装一些R包,如下所示:
# Default directories and mirrors
WORKING_DIR  <- "/srv/foo/bar/baz"
LIB_DIR      <- paste( WORKING_DIR, "libs", sep="/" )
setwd(WORKING_DIR)
stringi.loc <- paste( WORKING_DIR, "stringi_0.4-1.tar.gz", sep="/" )
这可能不是安装R软件包最优雅的方式,但它似乎对我们没用(任何其他关于R软件包管理的提示都会受到欢迎,但在这个阶段有点迟了:).
但是,stringi包似乎依赖于icu52l包,它通过网络安装:
checking for R... /usr/lib64/R/bin/R
checking for gcc... gcc -std=gnu99
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes …