VMWareとputtyによるLinux開発環境の構築



2、OpenSSHサーバーのインストールと設定
     
 #sudo apt-get install openssh-server
開く/etc/ssh/sshd_config
GSSAPI optionsのセクションを見つけて、次の2行を注記します.
#GSSAPIAuthentication yes
#GSSAPIDelegateCredentials no

次にsshサービスを再起動します.
#sudo/etc/init.d/ssh restart
3、cscopeツール
1)取付
#sudo apt-get install cscope
 
4、vim設定
ユーザホームの下にある.vimrcは次のように構成されています.
「##############################################################################################################
"#################"search and match"#################set showmatch
set hlsearchset incsearch
"Show full tags when doing search completion
set showfulltag
"### cscope begin ###if $CSCOPE_DB != ""    cs add $CSCOPE_DBendif
"hit 'CTRL-/'nmap s :cs find s =expand("")nmap g :cs find g =expand("")nmap c :cs find c =expand("")nmap t :cs find t =expand("")nmap e :cs find e =expand("")nmap f :cs find f =expand("")nmap i :cs find i ^=expand("")$nmap d :cs find d =expand("")
"hit 'CTRL-j'nmap s :cs find s =expand("")nmap g :cs find g =expand("")nmap c :cs find c =expand("")nmap t :cs find t =expand("")nmap e :cs find e =expand("")nmap f :cs find f =expand("")nmap i :cs find i ^=expand("")$nmap d :cs find d =expand("")"### cscope end ####
 "### MISC### "Remove the Windows ^M noremap m :%s/r//g