11 2021 档案
摘要:下面介绍下Ubuntu 环境下具体的安装过程:1、配置安装gcc/g++/gdb/make 等基本编程工具(必须装好) 刚装好的Ubuntu系统中已经有GCC了,但是这个GCC几乎什么文件都不能编译,因为缺少一些必须的头文件,所以要安装build-essential这个软件包。 可以在新立得里面搜索
阅读全文
摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> #define FILE_InName "log.txt" //Read the data file name of the comparison #define FILE_OutN
阅读全文
摘要:#! /bin/sh #while 循环 i=0 count=100 while true do echo {$i} echo $RANDOM if [ $i == $count ] then break fi let "i=i+1" done #for 循环 for i in 1 2 3 4 5
阅读全文
摘要:Linux Synergy安装步骤 Alternatively, snapd can be installed from the command line: $ sudo apt update $ sudo apt install snapd Either log out and back in a
阅读全文
摘要:sudo apt-get install package 安装软件包sudo apt-get install package - - reinstall 重新安装软件包sudo apt-get -f install 修复安装软件包"-f = ——fix-missing"sudo apt-get re
阅读全文
摘要:有时候Linux的网络图标突然就不见了。。。系统:Ubuntu18.04内核:5.4.0-81-generic 看到一个常用的方法:前提是网络开启状态,ifconfig ens33 up sudo service network-manager stop sudo rm /var/lib/Netwo
阅读全文