码迷,mamicode.com
首页 > 系统相关 > 详细

从无到有构建一个Mini Linux(7)

时间:2016-12-13 16:54:02      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:从无到有构建linux系统



31.编译安装dropbear

32.创建远程登录时,用到的目录

33.为目标系统生成密钥文件

34.设置安全的shells

35.开启网络服务转换功能

36.复制相应的库文件,路径要对应,没有则创建之

37.测试



31.编译安装dropbear


Dropbear是一个相对较小的SSH服务器和客户端

[root@centos6 ~]# tar xf dropbear-2016.73.tar.bz2
[root@centos6 ~]# cd dropbear-2016.73
[root@centos6 dropbear-2016.73]# ./configure
[root@centos6 dropbear-2016.73]# make && make install

复制相应的目录到目标主机对应的目录上(目录不存在则创建之)

[root@centos6 dropbear-2016.73]# which dropbear
/usr/local/sbin/dropbear
[root@centos6 dropbear-2016.73]# mkdir /mnt/sysroot/usr/local/sbin/ -pv
mkdir: created directory ‘/mnt/sysroot/usr/local‘
mkdir: created directory ‘/mnt/sysroot/usr/local/sbin/‘
[root@centos6 dropbear-2016.73]# cp /usr/local/sbin/dropbear /mnt/sysroot/usr/local/sbin/
[root@centos6 dropbear-2016.73]# which dropbearkey
/usr/local/bin/dropbearkey
[root@centos6 dropbear-2016.73]# mkdir /mnt/sysroot/usr/local/bin/ -pv
mkdir: created directory ‘/mnt/sysroot/usr/local/bin/‘
[root@centos6 dropbear-2016.73]# cp /usr/local/bin/dropbearkey /mnt/sysroot/usr/local/bin/
[root@centos6 dropbear-2016.73]# which dbclient
/usr/local/bin/dbclient
[root@centos6 dropbear-2016.73]# cp /usr/local/bin/dbclient /mnt/sysroot/usr/local/bin/
[root@centos6 dropbear-2016.73]# tree /mnt/sysroot/usr/local/
/mnt/sysroot/usr/local/
├── bin
│   ├── dbclient
│   └── dropbearkey
└── sbin
    └── dropbear
2 directories, 3 files



32.创建远程登录时,用到的目录

[root@centos6 dropbear-2016.73]# cd /mnt/sysroot/
[root@centos6 sysroot]# mkdir dev/pts

[root@centos6 sysroot]# vim etc/fstab
sysfs /sys sysfs defaults 0 0
proc /proc proc defaults 0 0
/dev/sda1 /boot ext4 defaults 0 0
/dev/sda2 / ext4 defaults 0 0
devpts /dev/pts devpts mode=620 0 0 --> 添加此行,实现开机自动挂载;mode 表示权限



33.为目标系统生成密钥文件

[root@centos6 sysroot]# mkdir etc/dropbear
[root@centos6 sysroot]# cd etc/dropbear/
[root@centos6 dropbear]# dropbearkey -t rsa -s 2048 -f dropbear_rsa_host_key
[root@centos6 dropbear]# dropbearkey -t dss  -f dropbear_dss_host_key



34.设置安全的shells

[root@centos6 sysroot]# vim etc/shells

/bin/bash
/bin/ash
/bin/sh
/bin/hush
/sbin/nologin



35.开启网络服务转换功能

[root@centos6 sysroot]# vim etc/nsswitch.conf

passwd:files
group:files
shadow:files
hosts:files dns



36.复制相应的库文件,路径要对应,没有则创建之

[root@centos6 sysroot]# mkdir usr/lib64
[root@centos6 sysroot]# cp -d /lib64/libnss_files* lib64/
[root@centos6 sysroot]# cp -d /usr/lib64/libnss3.so usr/lib64/
[root@centos6 sysroot]# cp -d /usr/lib64/libnssutil3.so usr/lib64/
[root@centos6 sysroot]# cp -d /usr/lib64/libnss_files* usr/lib64/


37.测试

[root@centos6 sysroot]# sync
[root@centos6 sysroot]# sync

关闭宿主机

开启mini Linux
启动dropbear程序

利用另一台Linux 使用ssh登录到mini Linux


本文出自 “似水流年” 博客,请务必保留此出处http://sixijie123.blog.51cto.com/11880770/1882126

从无到有构建一个Mini Linux(7)

标签:从无到有构建linux系统

原文地址:http://sixijie123.blog.51cto.com/11880770/1882126

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!