- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我的目标是通过在 linux mint 上做一个家庭作业项目来跳转到 C++ 编程语言,同时学习一些 linux 和 c++。
我打算编写一个小型桌面应用程序来显示当前的网络流量(如 Windows 中的 DU 仪表)。我有以下问题:
我注意到 mint 中有一个名为“系统监视器”的应用程序,它还可以显示网络历史记录以及当前下载/上传数据和速度等信息和图表。从查看代码开始是个好主意吗?我怎样才能在 mint 中找到相同的代码并深入研究它?如果可能,请帮助完成一些步骤。
我需要什么工具来为/在 linux mint 中编写 C++ 应用程序?
在 linux mint 上使用哪个 GUI 库(如在 c# winforms 中,它提供用户控件作为 GDI 库的一部分)我们有什么可以提供用户控件,如窗口/按钮/面板/等?</p >
初级教程的链接会很有帮助。
希望不要在这里完全重新发明轮子。是否愿意重新使用一些负责网络流量部分的库,想法?
PS:我知道这篇文章写着“想要”——我真的很高兴能开始使用一些 C++。将用更精确的问题改写这篇文章。作为一个完全被 Windows 宠坏的 c# 开发人员,在黑暗中狩猎。
提前致谢!!!有关这方面的提示...
最佳答案
mint 发行版基于 Ubuntu/Debian,因此我假设我的 Ubuntu 方法也适用于 mint。
首先
您需要一些工具、库和 header :
# install the standard toolchain (g++, make, etc.)
sudo aptitude install build-essential
# install the build dependencies for a desktop based networking tool
sudo aptitude build-dep gnome-nettool
可选
因为您提到了系统监视器 - 从源代码构建 gnome-system-monitor 可能会有所帮助:
# install the build dependencies for gnome-system-monitor
sudo aptitude build-dep gnome-system-monitor
# get the sources for the gnome-system-monitor
mkdir example
cd example
apt-get source gnome-system-monitor
# build the gnome-system-monitor
# note: you might have a different version. But I'm sure you get the idea ;-)
cd gnome-system-monitor-2.28.0
sh configure
make
最后
你需要一些东西来开发和调试。许多 unix 开发人员推荐 emacs 或 vi(m)。但我个人的意见是,您应该从“现代”的基于 GUI 的 IDE 开始。
这里是一些常用的 IDE 的集合:
另见:关于 SOF 关于“最佳”的讨论 C++ IDE for Linux
关于c++ - 在 linux mint 上学习 c++(适用于 .net 开发人员),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1976719/
我是一名优秀的程序员,十分优秀!