Quagga要在linux下编译并配置运行,所有,学习一点linux的基础知识。
安装的Ubuntu,用户名linux,密码1
使能Ubuntu的IP转发功能,需要修改etc/sysctl.conf和etc/ufw/sysctl.conf中IP转发的设置,只需移去注视符号#即可
# Uncomment the next line to enable packet forwarding for IPv4 net.ipv4.ip_forward=1 # Uncomment this to allow this host to route packets between interfaces net/ipv4/ip_forward=1 #net/ipv6/conf/default/forwarding=1 #net/ipv6/conf/all/forwarding=1
Ubuntu16.04缺少gawk,下载gawk,然后,安装。
然后,安装quagga
./configure
make
sudo make install
sysctl.conf修改需要root权限,修改文件权限方法
sudo chmod 600 ××× (只有所有者有读和写的权限)
sudo chmod 644 ××× (所有者有读和写的权限,组用户只有读的权限)
sudo chmod 700 ××× (只有所有者有读和写以及执行的权限)
sudo chmod 666 ××× (每个人都有读和写的权限)
sudo chmod 777 ××× (每个人都有读和写以及执行的权限)
修改Terminal字体大小快捷键
放大:’Ctrl’+’shift ’+‘ + ’;
缩小:’Ctrl’+‘ - ’。
sudo,superuser do
apt-get,advanced package tool
时间: 2024-10-14 04:18:04