博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux相关知识笔记
阅读量:7114 次
发布时间:2019-06-28

本文共 878 字,大约阅读时间需要 2 分钟。

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 IPv4net.ipv4.ip_forward=1# Uncomment this to allow this host to route packets between interfacesnet/ipv4/ip_forward=1#net/ipv6/conf/default/forwarding=1#net/ipv6/conf/all/forwarding=1

 

Ubuntu16.04缺少gawk,下载,然后,安装。

 然后,安装quagga

./configure

make

sudo make install

正常的话,这样就已经将quagga安装到linux上了,

那么,后面如何运行quagga呢???

 

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

转载于:https://www.cnblogs.com/yanhc/p/7565268.html

你可能感兴趣的文章
Java设计模式五——单件模式
查看>>
奇怪的 Ruby
查看>>
79. Word Search
查看>>
【Android】RxJava的使用(四)线程控制 —— Scheduler
查看>>
极限编程 (Extreme Programming) - 迭代计划 (Iterative Planning)
查看>>
小程序外卖购物车 直接就能用~
查看>>
Python版设计模式之监听者模式
查看>>
[Spring Security 5.2.0 翻译] 8 Architecture and Implementation
查看>>
使用 Sphinx 撰写技术文档并生成 PDF 总结
查看>>
Fastjson的基本使用方法大全
查看>>
SSH 超时设置
查看>>
webpack 最简打包结果分析
查看>>
NLPIR:数据挖掘深度决定大数据应用价值
查看>>
Flex 布局教程
查看>>
GET和POST两种基本请求方法的区别
查看>>
Webpack4 学习笔记 - 01:webpack的安装和简单配置
查看>>
二)golang工厂模式
查看>>
React 教程:快速上手指南
查看>>
Python 的 heapq 模块源码分析
查看>>
Jitsi快捷安装
查看>>