Skip to content

linux软件

在安装软件之前先要更新软件源

sh
sudo apt update

基础软件安装

sh
sudo apt install -y net-tools unzip tree vim

c++开发软件安装

sh
# 编译器
sudo apt install -y gcc g++
# 调试工具
sudo apt install -y gdb lldb 
# 构建工具
sudo apt install -y make cmake 
# man手册
sudo apt install -y manpages-posix-dev