Chinaunix首页 | 论坛 | 博客
  • 博客访问: 40695
  • 博文数量: 15
  • 博客积分: 403
  • 博客等级: 一等列兵
  • 技术积分: 155
  • 用 户 组: 普通用户
  • 注册时间: 2009-11-28 22:44
个人简介

This is the blog site of Shaka, who comes from China. Being passionate and creative, he loves peace, freedom and life. He has a variety of interests, and is also an open-source software amateur. He loves Unix/Linux, \LaTeX{}, MetaPost, Emacs, Vim, etc.

文章分类

全部博文(15)

文章存档

2015年(1)

2014年(1)

2012年(2)

2010年(11)

我的朋友

分类:

2010-07-17 20:14:57

  1. 安装openssh:pacman -S openssh
  2. 配置服务器端:在/etc/hosts.allow添加"sshd: ALL: ALLOW";在/etc/rc.conf中加入"sshd"(开机自动启动sshd)。
  3. 为了避免每次登录都需要输入密码,可以采用非对称加密传输:
    1. 在客户端产生密钥对:ssh-keygen -t rsa(或者ssh-keygen -t dsa)
    2. 将公钥拷贝到服务器端:scp ~/.ssh/id_rsa.pub USERNAME@SERVER:~/.ssh/authorized_keys(或ssh-copy-id -i ~/.ssh/id_rsa.pub USERNAME@SERVER)
  4. 为了通过SSH运行图形程序你必须使用X11 Forwarding:
    1. 在服务器上安装xorg-xauth:pacman -S xorg-xauth
    2. 配置服务器端:在/etc/ssh/sshd_config中添加"X11Forwarding yes"
    3. 配置客户端:在/etc/ssh/ssh_config中添加
      • ForwardAgent yes
      • ForwardX11 yes
      • ForwardX11Trusted yes
阅读(5660) | 评论(0) | 转发(0) |
0

上一篇:使用gdb

下一篇:修复grub

给主人留下些什么吧!~~