2014年9月28日 星期日

XenServer 安裝vim

yum repolist enabled


 yum --enablerepo=base --disablerepo=citrix install vim-enhanced

2014年9月4日 星期四

CentOS ssh 連不到

剛灌好ssh 連不到

有些版本要改sshd_config

reference here:

[root@host ~]$ vim /etc/ssh/sshd_config
Protocol 2
ServerKeyBits 1024
PermitRootLogin no  /* 禁止root登錄 */

/* 以下三行沒什麼要改的,把默認的#註釋去掉就行了 */
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

PasswordAuthentication no /* KEY與密碼一定要選一個 */
PermitEmptyPasswords no /* 禁止使用空密碼登入 */