如何在Ubuntu 16.04.3 LTS ISO上安装EVE NG(一)

如何使用Ubuntu原始的ISO发行版在裸盒上安装EVE。

获得最新的Ubuntu 16.04.3 LTS ISO: 点击下载

从iso、CD或USB创建可引导的安装媒体,然后启动服务器。Ubuntu安装步骤(简版操作步骤、详细安装过程请自行Google)。安装完Ubuntu服务器后,我们按照下面的步骤安装EVE-NG。为了方便操作,我们将主机名修改为eve – ng。

# 1、我们以root权限登录系统
sudo su

# 2、修改root账号的密码(此处可以根据自己的需求进行修改或者不修改)
sudo passwd root
root@eve-ng:~# sudo passwd root
Enter new UNIX password: eve
Retype new UNIX password: eve
passwd: password updated successfully

# 3、安装NANO编辑器应用程序
apt-get install nano

# 4、修改hosts文件,让本机名称解析到本地IP地址
nano /etc/hostname
eve-ng nano
/etc/hosts
127.0.0.1    localhost
127.0.1.1    eve-ng.example.com   eve-ng

# 5、允许以root用户登录SSH
nano /etc/ssh/sshd_config
PermitRootLogin prohibit-password
to
PermitRootLogin yes

# 6、保存设置(ctrl + o,ctrl + x)并重新启动ssh服务
sudo service ssh restart

# 7、重新生成GRUB的启动菜单配置文件

1: sed -i -e 's/GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 noquiet"/'etc/default/grub
2: update-grub

# 8、重要! ! !配置服务器的IP地址(建议使用静态IP)。! ! !警告! ! !在GRUB更新改变接口名称到ethX后,原来的名字在第一次启动后将不会工作! !!!!您必须编辑以下接口并重新启动! !!  将原始接口名称更改为eth0

# 9、安装万兆网卡驱动(如果有万兆网卡,请执行此操作)
apt-get install firmware-bnx2x

# 10、保存以上所有操作步骤并reboot服务器

# 11、从repo获取EVE Key 
wget -O – http://www.eve-ng.net/repo/eczema@ecze.com.gpg.key | sudo apt-key add –

# 12、获取服务器更新
apt-get update
sudo add-apt-repository “deb [arch=amd64] http://www.eve-ng.net/repo xenial main”
apt-get update

# 13、安装EVE
DEBIAN_FRONTEND=noninteractive apt-get -y install eve-ng

# 14、复制broadcom firmware。
broadcom firmware
cp -rp /lib/firmware/$(uname -r)/bnx2 /lib/firmware/

# 15、重启服务器、并登陆系统操作界面,按照步骤安装EVE([安装步骤](http://blog.z0ukun.com/index.php/2017/11/07/如何在ubuntu-16-04-3-lts-iso上安装eve-ng(二)/))。

# 16、升级更新EVE。
apt-get update
apt-get upgrade

推荐文章