FreeBSD 系统的配置.

SSH 配置

 

vi /etc/ssh/sshd_config

修改下面的项目

RSAAuthentication yes

PermitRootLogin yes

PermitEmptypasswords no

PasswordAuthentication yes

 

 

启用FreeBSD的C Shell(CSH)使用tab键补全命令功能

 

 用vi编辑器打开文件:

vi /etc/csh.cshrc

在该文件最后加入以下代码:

set autolist

立刻生效 source /etc/csh.cshrc

 

 

 

更改VI成VIM模式......

首先安装 vim 软件 pkg_add -r vim

配置vim

cp /usr/local/share/vim/vim73/vimrc_example.vim /root/.vimrc

 

建立软连接

mv /usr/bin/vi /usr/bin/vi.bak

ln -s /usr/local/bin/vim /usr/bin/vi

 

更换CSH 为 bash 

安装 bash  

pkg_add -r bash

更改用户的Shell

chsh -s /usr/local/bin/bash 

 

注销用户,重新登陆...

echo $SHELL 

posted @ 2016-05-31 18:10  丶小炒肉  阅读(235)  评论(0编辑  收藏  举报