Linux各发行版中SSH端口默认为22,如果正式做站或其它用途,为了提高安全性就需要修改掉默认的SSH端口号,防止被有心人穷举密码。 穷举法,或称为暴力破解法,是一种针对于密码的破译方法,即将密码进行逐个推算直到找出真正的密码为止。例如一个已知是四位并且全部由数字组成的密 码,其可能共有10000种组合,因此最多尝试10000次就能找到正确的密码。理论上利用这种方法可以破解任何一种...
简介 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它能使用正则表达式搜索文本,并把匹配的行打印出来。 Unix的grep家族包括grep、egrep和fgrep。egrep和fgrep的命令只跟grep有很小不同。egrep是grep的扩展,支持更多的...
yum.conf文件,是yum在执行所读取的全局配置文件,分两块内容,一是main,另外一是 repository,main定义了全局的配置属性,且<br /> 必须只有一个main的段落。repository定义了每一个repository/server,允许有一个和多个repository的定义,也可以使用include=path_to_repository<br />...
经常出现添加一个新用户之后,使用该新用户文件夹,文件等颜色全是白色不区分,需要复制 root 下配置好的 .bashrc 并且需要source ,退出再次登录后依然需要source; 为新创建用户创建默认.bashrc并自动加载 拷贝默认的.bashrc 进入新用户的根目录并更改用户所属 [root@world-alive:~]#groupadd webapps [root@world...
安装 libreoffice apt-get install libreoffice apt-get install libreoffice-l10n-zh-cn wget http://down.font5.com.cn/fontfile/200903/simsunttc.rar rar x simsunttc.rar cp simsun.ttc /usr/share/fonts cd /usr...
问题一:警告提示 [2016-11-06T16:27:21,712][WARN ][o.e.b.JNANatives ] unable to install syscall filter: java.lang.UnsupportedOperationException: seccomp unavailable: requires kernel 3.5+ with CONFIG_SECCOMP an...
在Debian 8上以root身份登录。 su - 然后使用以下两个命令更新现有软件。 apt update apt upgrade 接下来,我们需要编辑源列表文件换成 Debain9。 mv /etc/apt/sources.list /etc/apt/sources.list.bak touch /etc/apt/sources.list echo "deb http://mirr...
1、通过修改PPA源的方式来安装 sudo apt-get install python-software-properties sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get install -y php7.2 完成后 使用 php -v 查看版本即可 如遇如下报错 : # LC_ALL=C.UTF-...
PHP 7.2.0 已于 2017 年11月30日正式发布GA版,大家可以第一时间尝鲜了。这里我们介绍如何在 Debian 9 “Stretch” 上安装配置 PHP-7.2,以便大家及时升级。目前 Debian.cn 全站已稳定运行在 PHP-7.2 版本中。 本教程使用以下系统及组合: Debian 9 stretch 、Debian 8 Jessie、Ubuntu 16.04 LT...
Install Python 3.6 on Ubuntu 16.04 On Ubuntu 16.04, Python 2.7 and Python 3.5 are installed by default. To have the latest version of Python 3.6 installed on your Ubuntu 16.04 server follow these step...