CS144_notes

准备工作

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
To run the labs, you’ll need the following software:

g++ version 8.x
clang-tidy version 6 or 7
clang-format version 6 or 7
cmake version 3 or later
libpcap development headers (libpcap-dev on Debian-like distributions)
git
iptables
mininet 2.2.0 or later
tcpdump
telnet
wireshark
socat
netcat-openbsd
GNU coreutils
bash
doxygen
graphviz
Note: there are at least three versions of netcat. You won’t be using it much, but when you do, we will assume you’ve got the OpenBSD variant. Others might also work, though it is possible that they will require different commandline flags.

We’ve tested the labs with recent Debian-derived systems (Ubuntu 18.04 and similar) and Arch Linux. In all likelihood, other modern Linux distributions will also work.

问题1:

g++ -v or gcc -v的版本是小于8,就会导致cmake的时候失败


解决:

1
2
3
4
5
6
7
sudo apt-get update
sudo apt-get install gcc-8
sudo apt-get install g++-8
cd /usr/bin
sudo rm gcc g++
sudo ln -s gcc-8 gcc
sudo ln -s g++-8 g++

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!