Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1476266
  • 博文数量: 295
  • 博客积分: 10051
  • 博客等级: 上将
  • 技术积分: 3850
  • 用 户 组: 普通用户
  • 注册时间: 2008-04-11 08:50
文章分类

全部博文(295)

文章存档

2011年(1)

2009年(4)

2008年(290)

我的朋友

分类: BSD

2008-04-21 20:43:34

freeBSD安装及配置

1.分区设置:
  第一步使用全部分区alt+a,然后如下参考分区:
  /      512M
  swap   512M
  /home  512M
  /tmp   512M
  /usr  2048M
2.安装包选择:
  首先选择“Minimal”,再在Custom选项里选:base,compat4x,krb5,man,src,ports
3.SSH2配置:
  freebsd#ee /etc/ssh/sshd_config
  打开允许root登录和key验证
  FreeBSD下产生KEY命令
  freebsd#ssh-keygen -b 1024 -t dsa
  下面提示KEY的存放位置,KEY密码。
  最后将产生一对KEY,默认放在/root/.ssh/下。
  id_dsa是在PC上用的
  id_dsa.pub是在服务器上用的
  Key验证设置:
  freebsd#ee /etc/ssh/sshd_config
  去PermitRootLogin yes前的“#”
  去PubkeyAuthentication yes前的“#”
  AuthorizedKeysFile      /root/.ssh/id_dsa.pub
  去前面“#”并改KEY的位置。
  在SecureCRT里,设置用public key验证就可以了。
  freebsd#ps x      //记录下sshd的那个进程号,如果80
  freebsd#kill -HUP 80      //重起sshd
  匿名登陆设置:
  去PermitRootLogin yes前的“#”
  去PasswordAuthentication yes前的“#”
4.编辑.cshrc文件  
  set autolist #设置TAB键自动补全
  set prompt = "%B%n@%~%b: "  #设置提示符,命令(source ~/.cshrc)使设置生效
5.登陆显示设置:
  在~/.cshrc文件中添加/usr/games/fortune   #首先安装游戏
  退出登录显示时间,在~/.logout文件中添加/usr/games/grdc
  修改/etc/motd文件中的显示为自己的个性登录显示
  并在/etc/rc.conf文件中在fortune的前面添加clear和more /etc/motd两个命令
6.更新cusvp:
  freebsd#cd /usr/ports/net/cvsup-without-gui
  freebsd#make clean
  freebsd#make install
  安装过程中出现要不要安装样例,选不安装。
  更新完后就开始编译内核了。
7.锁定设置:
  系统默认15分钟自动解锁
  lock -n  #永久锁定屏幕
  lock -v  #锁定系统所有终端
  在~/.cshrc 中添加 set autologout = (30 15) #30分钟注销,15分钟锁定屏幕
零碎的命令:
1、删除ports安装软件方法:
以wu-ftpd为例:
freebsd#cd /usr/ports/ftp/wu-ftpd
freebsd#make clean
freebsd#make deinstall
freebsd#uname -a    //查看系统信息
2、常用的服务开机自动运行:
pureftpd_enable="YES"
apache21_enable="YES"   //apache 2.1
apache_enable="YES"     //apache 1.3
3、安装F-port工具:
freebsd#cd /usr/ports/security/f-port
freebsd#make clean
freebsd#make install
F-port是常用的端口查看工具
4、安装nmap工具:
freebsd#cd /usr/ports/security/nmap
freebsd#make clean
freebsd#make install
nmap是常用的扫描工具
阅读(2625) | 评论(0) | 转发(0) |
0

上一篇:Solaris系统

下一篇:取消freebsd的beep

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